SWN_SELSEN dump result

srinivas ootasrinivasreddy at gmail.com
Tue Aug 17 14:45:21 EDT 2010


Hi Rick,

As I read the dump I understand this is a time out error.I am unable to
understand this behaviour. I am enclosing the dump file.The most importantly
this dump is happening at the below code.

 79|* dialog work
items
|
|>>>>>|  SELECT hist~wi_id hist~method hist~timestamp head~wi_chckwi
head~wi_rh_task head~wi_stat  |
|   81|               FROM swwloghist AS
hist                                                      |
|   82|               INNER JOIN swwwihead AS head ON hist~client =
head~client AND hist~wi_id = he|
|   83|               INTO CORRESPONDING FIELDS OF TABLE
lt_dialog_hist                            |
|   84|               FOR ALL ENTRIES IN
lt_methods                                                |
|   85|               WHERE hist~timestamp GE
i_timestamp                                          |
|   86|               AND   hist~method EQ
lt_methods-method                                       |
|   87|               AND   head~wi_type EQ
swfco_wi_normal                                        |
|   88|               AND   head~wi_rh_task IN lr_task.




On Tue, Aug 17, 2010 at 11:31 PM, Rick Bakker <rbakker at gmail.com> wrote:

> Hello,
>
> Doesn't the dump show any sort of error?
>
> Has it been working in the past?
> Check also SLG1.
>
> regards
> Rick Bakker
> Hanabi Technology
>
> On Tue, Aug 17, 2010 at 12:34 PM, srinivas <ootasrinivasreddy at gmail.com>
> wrote:
> >
> > Hi All,
> >
> > Below is the dump result when the report SWN_SELSEN is executed. Does
> this
> > issue related to memory??
> >
> >
> >  Memory consumption
> >  Roll.... 16192
> >  EM...... 12569520
> >  Heap.... 0
> >  Page.... 90112
> >  MM Used. 2145408
> >  MM Free. 2041808
> >
> > --
> > Thanks and Regards
> > Srini..
> >
> >
> > _______________________________________________
> > SAP-WUG mailing list
> > SAP-WUG at mit.edu
> > http://mailman.mit.edu/mailman/listinfo/sap-wug
> >
> >
>
> _______________________________________________
> SAP-WUG mailing list
> SAP-WUG at mit.edu
> http://mailman.mit.edu/mailman/listinfo/sap-wug
>



-- 
Thanks and Regards
  Srini..
+919886760677
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.mit.edu/pipermail/sap-wug/attachments/20100818/91dc3308/attachment.htm
-------------- next part --------------
Runtime Errors         TIME_OUT
Date and Time          17.08.2010 18:38:15
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Short text                                                                                        |
|    Time limit exceeded.                                                                          |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|What happened?                                                                                    |
|    The program "CL_SWN_SCENARIO_WORKFLOW======CP" has exceeded the maximum                       |
|     permitted runtime without                                                                    |
|    interruption and has therefore been terminated.                                               |
|                                                                                                  |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|What can you do?                                                                                  |
|    Note down which actions and inputs caused the error.                                          |
|                                                                                                  |
|                                                                                                  |
|    To process the problem further, contact you SAP system                                        |
|    administrator.                                                                                |
|                                                                                                  |
|    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
|    at and manage termination messages, and you can also                                          |
|    keep them for a long time.                                                                    |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Error analysis                                                                                    |
|    After a specific time, the program is terminated to make the work area                        |
|    available to other users who may be waiting.                                                  |
|    This is to prevent a work area being blocked unnecessarily long by, for                       |
|    example:                                                                                      |
|    - Endless loops (DO, WHILE, ...),                                                             |
|    - Database accesses with a large result set                                                   |
|    - Database accesses without a suitable index (full table scan)                                |
|                                                                                                  |
|    The maximum runtime of a program is limited by the system profile                             |
|    parameter "rdisp/max_wprun_time". The current setting is 3600 seconds. If this                |
|     time limit is                                                                                |
|    exceeded, the system attempts to cancel any running SQL statement or                          |
|    signals the ABAP processor to stop the running program. Then the system                       |
|    waits another 60 seconds maximum. If the program is then still active,                        |
|    the work process is restarted.                                                                |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|How to correct the error                                                                          |
|    Programs with long runtime should generally be started as background                          |
|    jobs. If this is not possible, you can increase the system profile                            |
|    parameter "rdisp/max_wprun_time".                                                             |
|                                                                                                  |
|    Depending on the cause of the error, you may have to take one of the                          |
|    following measures:                                                                           |
|    - Endless loop: Correct program;                                                              |
|    - Dataset resulting from database access is too large:                                        |
|      Instead of "SELECT * ... ENDSELECT", use "SELECT * INTO internal table                      |
|      (for example);                                                                              |
|    - Database has unsuitable index: Check index generation.                                      |
|                                                                                                  |
|    If the error occures in a non-modified SAP program, you may be able to                        |
|    find an interim solution in an SAP Note.                                                      |
|    If you have access to SAP Notes, carry out a search with the following                        |
|    keywords:                                                                                     |
|                                                                                                  |
|    "TIME_OUT" " "                                                                                |
|    "CL_SWN_SCENARIO_WORKFLOW======CP" or "CL_SWN_SCENARIO_WORKFLOW======CM00D"                   |
|    "GET_WI_DELTA_NEW"                                                                            |
|                                                                                                  |
|    If you cannot solve the problem yourself and want to send an error                            |
|    notification to SAP, include the following information:                                       |
|                                                                                                  |
|    1. The description of the current problem (short dump)                                        |
|                                                                                                  |
|       To save the description, choose "System->List->Save->Local File                            |
|    (Unconverted)".                                                                               |
|                                                                                                  |
|    2. Corresponding system log                                                                   |
|                                                                                                  |
|       Display the system log by calling transaction SM21.                                        |
|       Restrict the time interval to 10 minutes before and five minutes                           |
|    after the short dump. Then choose "System->List->Save->Local File                             |
|    (Unconverted)".                                                                               |
|                                                                                                  |
|    3. If the problem occurs in a problem of your own or a modified SAP                           |
|    program: The source code of the program                                                       |
|       In the editor, choose "Utilities->More                                                     |
|    Utilities->Upload/Download->Download".                                                        |
|                                                                                                  |
|    4. Details about the conditions under which the error occurred or which                       |
|    actions and input led to the error.                                                           |
|                                                                                                  |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|System environment                                                                                |
|    SAP-Release 701                                                                               |
|                                                                                                  |
|    Application server... "pwdf4112"                                                              |
|    Network address...... "10.17.104.91"                                                          |
|    Operating system..... "Windows NT"                                                            |
|    Release.............. "5.2"                                                                   |
|    Hardware type........ "8x AMD64 Level"                                                        |
|    Character length.... 16 Bits                                                                  |
|    Pointer length....... 64 Bits                                                                 |
|    Work process number.. 1                                                                       |
|    Shortdump setting.... "full"                                                                  |
|                                                                                                  |
|    Database server... "isddb"                                                                    |
|    Database type..... "DB6"                                                                      |
|    Database name..... "ISD"                                                                      |
|    Database user ID.. "SAPR3"                                                                    |
|                                                                                                  |
|    Terminal.......... "BLRN50083234A"                                                            |
|                                                                                                  |
|    Char.set.... "C"                                                                              |
|                                                                                                  |
|    SAP kernel....... 701                                                                         |
|    created (date)... "Jul 4 2010 23:51:49"                                                       |
|    create on........ "NT 5.2 3790 Service Pack 2 x86 MS VC++ 14.00"                              |
|    Database version. "DB6_81 "                                                                   |
|                                                                                                  |
|    Patch level. 100                                                                              |
|    Patch text.. " "                                                                              |
|                                                                                                  |
|    Database............. "DB6 08.02.*, DB6 09.*"                                                 |
|    SAP database version. 701                                                                     |
|    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows                |
|     NT 6.0, Windows NT 6.1"                                                                      |
|                                                                                                  |
|    Memory consumption                                                                            |
|    Roll.... 16192                                                                                |
|    EM...... 12569520                                                                             |
|    Heap.... 0                                                                                    |
|    Page.... 90112                                                                                |
|    MM Used. 2145408                                                                              |
|    MM Free. 2041808                                                                              |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|User and Transaction                                                                              |
|                                                                                                  |
|    Client.............. 001                                                                      |
|    User................ "C5141241"                                                               |
|    Language key........ "E"                                                                      |
|    Transaction......... "SE38 "                                                                  |
|    Transactions ID..... "7015AADF9D48F1C1A9490017A44BCD14"                                       |
|                                                                                                  |
|    Program............. "CL_SWN_SCENARIO_WORKFLOW======CP"                                       |
|    Screen.............. "SAPMSSY0 1000"                                                          |
|    Screen line......... 6                                                                        |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Information on where terminated                                                                   |
|    Termination occurred in the ABAP program "CL_SWN_SCENARIO_WORKFLOW======CP" -                 |
|     in "GET_WI_DELTA_NEW".                                                                       |
|    The main program was "SWN_SELSEN ".                                                           |
|                                                                                                  |
|    In the source code you have the termination point in line 80                                  |
|    of the (Include) program "CL_SWN_SCENARIO_WORKFLOW======CM00D".                               |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Source Code Extract                                                                               |
----------------------------------------------------------------------------------------------------
|Line |SourceCde                                                                                   |
----------------------------------------------------------------------------------------------------
|   50|                                                                                            |
|   51|*---- get all new work items                                                                |
|   52|  CALL METHOD me->get_wi_all_new                                                            |
|   53|    EXPORTING                                                                               |
|   54|      i_language    = i_language                                                            |
|   55|      i_task_filter = i_task_filter                                                         |
|   56|      i_timestamp   = i_timestamp                                                           |
|   57|    IMPORTING                                                                               |
|   58|      e_worklist    = lt_worklist_new                                                       |
|   59|    EXCEPTIONS                                                                              |
|   60|      failed        = 1                                                                     |
|   61|      OTHERS        = 2.                                                                    |
|   62|  IF sy-subrc <> 0.                                                                         |
|   63|    RAISE failed.                                                                           |
|   64|  ENDIF.                                                                                    |
|   65|                                                                                            |
|   66|                                                                                            |
|   67|*---- get changed work items                                                                |
|   68|  ls_task-sign = 'I'.                                                                       |
|   69|  ls_task-option = 'EQ'.                                                                    |
|   70|  LOOP AT i_task_filter INTO l_task_filter.                                                 |
|   71|    ls_task-low = l_task_filter.                                                            |
|   72|    APPEND ls_task TO lr_task.                                                              |
|   73|  ENDLOOP.                                                                                  |
|   74|                                                                                            |
|   75|  CALL METHOD me->_get_methods                                                              |
|   76|    IMPORTING                                                                               |
|   77|      re_methods = lt_methods.                                                              |
|   78|                                                                                            |
|   79|* dialog work items                                                                         |
|>>>>>|  SELECT hist~wi_id hist~method hist~timestamp head~wi_chckwi head~wi_rh_task head~wi_stat  |
|   81|               FROM swwloghist AS hist                                                      |
|   82|               INNER JOIN swwwihead AS head ON hist~client = head~client AND hist~wi_id = he|
|   83|               INTO CORRESPONDING FIELDS OF TABLE lt_dialog_hist                            |
|   84|               FOR ALL ENTRIES IN lt_methods                                                |
|   85|               WHERE hist~timestamp GE i_timestamp                                          |
|   86|               AND   hist~method EQ lt_methods-method                                       |
|   87|               AND   head~wi_type EQ swfco_wi_normal                                        |
|   88|               AND   head~wi_rh_task IN lr_task.                                            |
|   89|                                                                                            |
|   90|* we only need the newest entry                                                             |
|   91|  DELETE ADJACENT DUPLICATES FROM lt_dialog_hist COMPARING wi_id.  "sorted table            |
|   92|                                                                                            |
|   93|* deadline items                                                                            |
|   94|  SELECT hist~wi_id hist~method hist~timestamp head~wi_chckwi head~wi_stat                  |
|   95|               FROM swwloghist AS hist                                                      |
|   96|               INNER JOIN swwwihead AS head ON hist~client = head~client AND hist~wi_id = he|
|   97|               INTO CORRESPONDING FIELDS OF TABLE lt_deadl_hist                             |
|   98|               FOR ALL ENTRIES IN lt_methods                                                |
|   99|               WHERE hist~timestamp GE i_timestamp                                          |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Contents of system fields                                                                         |
----------------------------------------------------------------------------------------------------
|Name    |Val.                                                                                     |
----------------------------------------------------------------------------------------------------
|SY-SUBRC|0                                                                                        |
|SY-INDEX|0                                                                                        |
|SY-TABIX|23                                                                                       |
|SY-DBCNT|0                                                                                        |
|SY-FDPOS|0                                                                                        |
|SY-LSIND|0                                                                                        |
|SY-PAGNO|0                                                                                        |
|SY-LINNO|1                                                                                        |
|SY-COLNO|1                                                                                        |
|SY-PFKEY|                                                                                         |
|SY-UCOMM|                                                                                         |
|SY-TITLE|ISD MULTIUSE/Selecting Work Items and Sending Notifications                              |
|SY-MSGTY|S                                                                                        |
|SY-MSGID|SWNT                                                                                     |
|SY-MSGNO|002                                                                                      |
|SY-MSGV1|cl_swn_scenario_workflow                                                                 |
|SY-MSGV2|get_wi_all_new                                                                           |
|SY-MSGV3|                                                                                         |
|SY-MSGV4|                                                                                         |
|SY-MODNO|0                                                                                        |
|SY-DATUM|20100817                                                                                 |
|SY-UZEIT|173815                                                                                   |
|SY-XPROG|SAPCNVE                                                                                  |
|SY-XFORM|CONVERSION_EXIT                                                                          |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Active Calls/Events                                                                               |
----------------------------------------------------------------------------------------------------
|No.   Ty.          Program                             Include                             Line   |
|      Name                                                                                        |
----------------------------------------------------------------------------------------------------
|    6 METHOD       CL_SWN_SCENARIO_WORKFLOW======CP    CL_SWN_SCENARIO_WORKFLOW======CM00D    80  |
|      CL_SWN_SCENARIO_WORKFLOW=>GET_WI_DELTA_NEW                                                  |
|    5 METHOD       CL_SWN_SCENARIO_WORKFLOW======CP    CL_SWN_SCENARIO_WORKFLOW======CM005   123  |
|      CL_SWN_SCENARIO_WORKFLOW=>GET_WI_DELTA                                                      |
|    4 METHOD       CL_SWN_SCENARIO_WORKFLOW======CP    CL_SWN_SCENARIO_WORKFLOW======CM008    91  |
|      CL_SWN_SCENARIO_WORKFLOW=>IF_SWN_SCENARIO~RETRIEVE_NOTIFICATIONS                            |
|    3 METHOD       CL_SWN_COLLECTOR==============CP    CL_SWN_COLLECTOR==============CM00B    32  |
|      CL_SWN_COLLECTOR=>PROCESS_FILTER                                                            |
|    2 METHOD       CL_SWN_COLLECTOR==============CP    CL_SWN_COLLECTOR==============CM002    98  |
|      CL_SWN_COLLECTOR=>IF_SWN_COLLECTOR~PROCESS                                                  |
|    1 EVENT        SWN_SELSEN                          SWN_SELSEN                             53  |
|      START-OF-SELECTION                                                                          |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Chosen variables                                                                                  |
----------------------------------------------------------------------------------------------------
|Name                                                                                              |
|    Val.                                                                                          |
----------------------------------------------------------------------------------------------------
|No.       6 Ty.          METHOD                                                                   |
|Name  CL_SWN_SCENARIO_WORKFLOW=>GET_WI_DELTA_NEW                                                  |
----------------------------------------------------------------------------------------------------
|I_LANGUAGE                                                                                        |
|                                                                                                  |
|    2                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|I_TIMESTAMP                                                                                       |
|    ###########                                                                                   |
|    00000000000                                                                                   |
|    0000000000C                                                                                   |
|I_TASK_FILTER                                                                                     |
|    Table IT_120[3x28]                                                                            |
|    {O:20*\CLASS=CL_SWN_SCENARIO_WORKFLOW}\DATA=M_TASK_FILTER                                     |
|    Table reference: 34                                                                           |
|    TABH+  0(20) = D0121E57FE070000000000000000000000000000                                       |
|    TABH+ 20(20) = 2200000078000000030000001C000000FFFFFFFF                                       |
|    TABH+ 40(16) = 046B00001010000010000000C9248001                                               |
|    store        = 0xD0121E57FE070000                                                             |
|    ext1         = 0x0000000000000000                                                             |
|    shmId        = 0     (0x00000000)                                                             |
|    id           = 34    (0x22000000)                                                             |
|    label        = 120   (0x78000000)                                                             |
|    fill         = 3     (0x03000000)                                                             |
|    leng         = 28    (0x1C000000)                                                             |
|    loop         = -1    (0xFFFFFFFF)                                                             |
|    xtyp         = TYPE#000071                                                                    |
|    occu         = 16    (0x10000000)                                                             |
|    access       = 1     (ItAccessStandard)                                                       |
|    idxKind      = 1     (ItIndexLinear)                                                          |
|    uniKind      = 2     (ItUniqueNon)                                                            |
|    keyKind      = 1     (default)                                                                |
|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |
|    occu0        = 1                                                                              |
|    groupCntl    = 0                                                                              |
|    rfc          = 0                                                                              |
|    unShareable  = 0                                                                              |
|    mightBeShared = 0                                                                             |
|    sharedWithShmTab = 0                                                                          |
|    isShmLockId  = 0                                                                              |
|    gcKind       = 0                                                                              |
|    isUsed       = 1                                                                              |
|    isCtfyAble   = 1                                                                              |
|    >>>>> Shareable Table Header Data <<<<<                                                       |
|    tabi         = 0xB01A1457FE070000                                                             |
|    pgHook       = 0x0000000000000000                                                             |
|    idxPtr       = 0x60F60E57FE070000                                                             |
|    shmTabhSet   = 0x0000000000000000                                                             |
|    id           = 99    (0x63000000)                                                             |
|    refCount     = 0     (0x00000000)                                                             |
|    tstRefCount  = 0     (0x00000000)                                                             |
|    lineAdmin    = 16    (0x10000000)                                                             |
|    lineAlloc    = 16    (0x10000000)                                                             |
|    shmVersId    = 0     (0x00000000)                                                             |
|    shmRefCount  = 1     (0x01000000)                                                             |
|    >>>>> 1st level extension part <<<<<                                                          |
|    regHook      = Not allocated                                                                  |
|    collHook     = Not allocated                                                                  |
|    ext2         = Not allocated                                                                  |
|    >>>>> 2nd level extension part <<<<<                                                          |
|    tabhBack     = Not allocated                                                                  |
|    delta_head   = Not allocated                                                                  |
|    pb_func      = Not allocated                                                                  |
|    pb_handle    = Not allocated                                                                  |
|E_TIMESTAMP                                                                                       |
|     ####8##0##                                                                                   |
|    21011318300                                                                                   |
|    0087585100C                                                                                   |
|E_COUNT                                                                                           |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
|E_WORKLIST                                                                                        |
|    Table[initial]                                                                                |
|%_DUMMY$$                                                                                         |
|                                                                                                  |
|    2222                                                                                          |
|    0000                                                                                          |
|    0000                                                                                          |
|    0000                                                                                          |
|%_VIASELSCR                                                                                       |
|    #                                                                                             |
|    0                                                                                             |
|    4                                                                                             |
|SY-XFORM                                                                                          |
|    CONVERSION_EXIT                                                                               |
|    444545544454545222222222222222                                                                |
|    3FE65239FEF5894000000000000000                                                                |
|    000000000000000000000000000000                                                                |
|    000000000000000000000000000000                                                                |
|LT_METHODS                                                                                        |
|    Table IT_132[23x66]                                                                           |
|    \CLASS=CL_SWN_SCENARIO_WORKFLOW\METHOD=GET_WI_DELTA_NEW\DATA=LT_METHODS                       |
|    Table reference: 30                                                                           |
|    TABH+  0(20) = 10722057FE070000000000000000000000000000                                       |
|    TABH+ 20(20) = 1E000000840000001700000042000000FFFFFFFF                                       |
|    TABH+ 40(16) = 046B0000001D000010000000C1248401                                               |
|    store        = 0x10722057FE070000                                                             |
|    ext1         = 0x0000000000000000                                                             |
|    shmId        = 0     (0x00000000)                                                             |
|    id           = 30    (0x1E000000)                                                             |
|    label        = 132   (0x84000000)                                                             |
|    fill         = 23    (0x17000000)                                                             |
|    leng         = 66    (0x42000000)                                                             |
|    loop         = -1    (0xFFFFFFFF)                                                             |
|    xtyp         = TYPE#000140                                                                    |
|    occu         = 16    (0x10000000)                                                             |
|    access       = 1     (ItAccessStandard)                                                       |
|    idxKind      = 0     (ItIndexNone)                                                            |
|    uniKind      = 2     (ItUniqueNon)                                                            |
|    keyKind      = 1     (default)                                                                |
|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |
|    occu0        = 1                                                                              |
|    groupCntl    = 0                                                                              |
|    rfc          = 0                                                                              |
|    unShareable  = 0                                                                              |
|    mightBeShared = 1                                                                             |
|    sharedWithShmTab = 0                                                                          |
|    isShmLockId  = 0                                                                              |
|    gcKind       = 0                                                                              |
|    isUsed       = 1                                                                              |
|    isCtfyAble   = 1                                                                              |
|    >>>>> Shareable Table Header Data <<<<<                                                       |
|    tabi         = 0x20CB2057FE070000                                                             |
|    pgHook       = 0x40FA0E57FE070000                                                             |
|    idxPtr       = 0x0000000000000000                                                             |
|    shmTabhSet   = 0x0000000000000000                                                             |
|    id           = 106   (0x6A000000)                                                             |
|    refCount     = 1     (0x01000000)                                                             |
|    tstRefCount  = 0     (0x00000000)                                                             |
|    lineAdmin    = 48    (0x30000000)                                                             |
|    lineAlloc    = 48    (0x30000000)                                                             |
|    shmVersId    = 0     (0x00000000)                                                             |
|    shmRefCount  = 2     (0x02000000)                                                             |
|    >>>>> 1st level extension part <<<<<                                                          |
|    regHook      = Not allocated                                                                  |
|    collHook     = Not allocated                                                                  |
|    ext2         = Not allocated                                                                  |
|    >>>>> 2nd level extension part <<<<<                                                          |
|    tabhBack     = Not allocated                                                                  |
|    delta_head   = Not allocated                                                                  |
|    pb_func      = Not allocated                                                                  |
|    pb_handle    = Not allocated                                                                  |
|%_PRINT                                                                                           |
|        000                                                                                   0###|
|    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000|
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|RSJOBINFO                                                                                         |
|                                    00000000000000                                  ##            |
|    2222222222222222222222222222222233333333333333222222222222222222222222222222222200            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|C_ACTION_COMPLETED                                                                                |
|    002                                                                                           |
|    333                                                                                           |
|    002                                                                                           |
|    000                                                                                           |
|    000                                                                                           |
|SWFCO_WI_NORMAL                                                                                   |
|    W                                                                                             |
|    5                                                                                             |
|    7                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|%_SPACE                                                                                           |
|                                                                                                  |
|    2                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|SY-REPID                                                                                          |
|    CL_SWN_SCENARIO_WORKFLOW======CP                                                              |
|    4455545544445445545444453333334522222222                                                      |
|    3CF37EF335E129FF7F2B6CF7DDDDDD3000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|LR_TASK                                                                                           |
|    Table IT_130[3x62]                                                                            |
|    \CLASS=CL_SWN_SCENARIO_WORKFLOW\METHOD=GET_WI_DELTA_NEW\DATA=LR_TASK                          |
|    Table reference: 38                                                                           |
|    TABH+  0(20) = A0BE1357FE070000000000000000000000000000                                       |
|    TABH+ 20(20) = 2600000082000000030000003E000000FFFFFFFF                                       |
|    TABH+ 40(16) = 046B0000501B000010000000C1248001                                               |
|    store        = 0xA0BE1357FE070000                                                             |
|    ext1         = 0x0000000000000000                                                             |
|    shmId        = 0     (0x00000000)                                                             |
|    id           = 38    (0x26000000)                                                             |
|    label        = 130   (0x82000000)                                                             |
|    fill         = 3     (0x03000000)                                                             |
|    leng         = 62    (0x3E000000)                                                             |
|    loop         = -1    (0xFFFFFFFF)                                                             |
|    xtyp         = TYPE#000131                                                                    |
|    occu         = 16    (0x10000000)                                                             |
|    access       = 1     (ItAccessStandard)                                                       |
|    idxKind      = 0     (ItIndexNone)                                                            |
|    uniKind      = 2     (ItUniqueNon)                                                            |
|    keyKind      = 1     (default)                                                                |
|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |
|    occu0        = 1                                                                              |
|    groupCntl    = 0                                                                              |
|    rfc          = 0                                                                              |
|    unShareable  = 0                                                                              |
|    mightBeShared = 0                                                                             |
|    sharedWithShmTab = 0                                                                          |
|    isShmLockId  = 0                                                                              |
|    gcKind       = 0                                                                              |
|    isUsed       = 1                                                                              |
|    isCtfyAble   = 1                                                                              |
|    >>>>> Shareable Table Header Data <<<<<                                                       |
|    tabi         = 0xA00C1E57FE070000                                                             |
|    pgHook       = 0x0000000000000000                                                             |
|    idxPtr       = 0x0000000000000000                                                             |
|    shmTabhSet   = 0x0000000000000000                                                             |
|    id           = 105   (0x69000000)                                                             |
|    refCount     = 0     (0x00000000)                                                             |
|    tstRefCount  = 0     (0x00000000)                                                             |
|    lineAdmin    = 16    (0x10000000)                                                             |
|    lineAlloc    = 16    (0x10000000)                                                             |
|    shmVersId    = 0     (0x00000000)                                                             |
|    shmRefCount  = 1     (0x01000000)                                                             |
|    >>>>> 1st level extension part <<<<<                                                          |
|    regHook      = Not allocated                                                                  |
|    collHook     = Not allocated                                                                  |
|    ext2         = Not allocated                                                                  |
|    >>>>> 2nd level extension part <<<<<                                                          |
|    tabhBack     = Not allocated                                                                  |
|    delta_head   = Not allocated                                                                  |
|    pb_func      = Not allocated                                                                  |
|    pb_handle    = Not allocated                                                                  |
|LT_DIALOG_HIST                                                                                    |
|    Table IT_134[1456x172]                                                                        |
|    \CLASS=CL_SWN_SCENARIO_WORKFLOW\METHOD=GET_WI_DELTA_NEW\DATA=LT_DIALOG_HIST                   |
|    Table reference: 36                                                                           |
|    TABH+  0(20) = 901C1457FE070000000000000000000000000000                                       |
|    TABH+ 20(20) = 2400000086000000B0050000AC000000FFFFFFFF                                       |
|    TABH+ 40(16) = 046B0000301D000010000000C2278001                                               |
|    store        = 0x901C1457FE070000                                                             |
|    ext1         = 0x0000000000000000                                                             |
|    shmId        = 0     (0x00000000)                                                             |
|    id           = 36    (0x24000000)                                                             |
|    label        = 134   (0x86000000)                                                             |
|    fill         = 1456  (0xB0050000)                                                             |
|    leng         = 172   (0xAC000000)                                                             |
|    loop         = -1    (0xFFFFFFFF)                                                             |
|    xtyp         = TYPE#000141                                                                    |
|    occu         = 16    (0x10000000)                                                             |
|    access       = 2     (ItAccessSorted)                                                         |
|    idxKind      = 0     (ItIndexNone)                                                            |
|    uniKind      = 2     (ItUniqueNon)                                                            |
|    keyKind      = 3     (user defined)                                                           |
|    cmpMode      = 3     (cmpSingleMcmpU)                                                         |
|    occu0        = 1                                                                              |
|    groupCntl    = 0                                                                              |
|    rfc          = 0                                                                              |
|    unShareable  = 0                                                                              |
|    mightBeShared = 0                                                                             |
|    sharedWithShmTab = 0                                                                          |
|    isShmLockId  = 0                                                                              |
|    gcKind       = 0                                                                              |
|    isUsed       = 1                                                                              |
|    isCtfyAble   = 1                                                                              |
|    >>>>> Shareable Table Header Data <<<<<                                                       |
|    tabi         = 0x10351E57FE070000                                                             |
|    pgHook       = 0xE0D12057FE070000                                                             |
|    idxPtr       = 0x0000000000000000                                                             |
|    shmTabhSet   = 0x0000000000000000                                                             |
|    id           = 107   (0x6B000000)                                                             |
|    refCount     = 0     (0x00000000)                                                             |
|    tstRefCount  = 0     (0x00000000)                                                             |
|    lineAdmin    = 2032  (0xF0070000)                                                             |
|    lineAlloc    = 1456  (0xB0050000)                                                             |
|    shmVersId    = 0     (0x00000000)                                                             |
|    shmRefCount  = 1     (0x01000000)                                                             |
|    >>>>> 1st level extension part <<<<<                                                          |
|    regHook      = Not allocated                                                                  |
|    collHook     = Not allocated                                                                  |
|    ext2         = Not allocated                                                                  |
|    >>>>> 2nd level extension part <<<<<                                                          |
|    tabhBack     = Not allocated                                                                  |
|    delta_head   = Not allocated                                                                  |
|    pb_func      = Not allocated                                                                  |
|    pb_handle    = Not allocated                                                                  |
|SYST-REPID                                                                                        |
|    CL_SWN_SCENARIO_WORKFLOW======CP                                                              |
|    4455545544445445545444453333334522222222                                                      |
|    3CF37EF335E129FF7F2B6CF7DDDDDD3000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
----------------------------------------------------------------------------------------------------
|No.       5 Ty.          METHOD                                                                   |
|Name  CL_SWN_SCENARIO_WORKFLOW=>GET_WI_DELTA                                                      |
----------------------------------------------------------------------------------------------------
|I_LANGUAGE                                                                                        |
|                                                                                                  |
|    2                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|I_TIMESTAMP                                                                                       |
|    ###########                                                                                   |
|    00000000000                                                                                   |
|    0000000000C                                                                                   |
|I_TASK_FILTER                                                                                     |
|    Table IT_120[3x28]                                                                            |
|E_TIMESTAMP                                                                                       |
|     ####8##0##                                                                                   |
|    21011318300                                                                                   |
|    0087585100C                                                                                   |
|E_COUNT                                                                                           |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
|E_WORKLIST                                                                                        |
|    Table[initial]                                                                                |
|E_ACTIONS                                                                                         |
|    Table[initial]                                                                                |
|E_WORKLIST_NEW                                                                                    |
|    Table[initial]                                                                                |
|<WORKLIST>                                                                                        |
|    ???                                                                                           |
|    ??????                                                                                        |
|    ??????                                                                                        |
|SY-XPROG                                                                                          |
|    SAPCNVE                                                                                       |
|    5454454222222222222222222222222222222222                                                      |
|    3103E65000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|LS_WORKLIST_NEW                                                                                   |
|    000000000000                                        0000000000000                             |
|    33333333333322222222222222222222222222222222222222223333333333333                             |
|    00000000000000000000000000000000000000000000000000000000000000000                             |
|    00000000000000000000000000000000000000000000000000000000000000000                             |
|    00000000000000000000000000000000000000000000000000000000000000000                             |
|ME                                                                                                |
|    {O:20*\CLASS=CL_SWN_SCENARIO_WORKFLOW}                                                        |
|    E0001000                                                                                      |
|    B0004000                                                                                      |
|SY-MSGV4                                                                                          |
|                                                                                                  |
|    22222222222222222222222222222222222222222222222222                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|SY-MSGNO                                                                                          |
|    002                                                                                           |
|    333                                                                                           |
|    002                                                                                           |
|    000                                                                                           |
|    000                                                                                           |
|SY-SUBRC                                                                                          |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
----------------------------------------------------------------------------------------------------
|No.       4 Ty.          METHOD                                                                   |
|Name  CL_SWN_SCENARIO_WORKFLOW=>IF_SWN_SCENARIO~RETRIEVE_NOTIFICATIONS                            |
----------------------------------------------------------------------------------------------------
|I_FILTER                                                                                          |
|    {O:19*\CLASS=CL_SWN_FILTER}                                                                   |
|    E0001000                                                                                      |
|    C0003000                                                                                      |
|E_NOTIFICATIONS                                                                                   |
|    Table[initial]                                                                                |
|E_MERGE_MODE                                                                                      |
|    DELTA                                                                                         |
|    4445422222                                                                                    |
|    45C4100000                                                                                    |
|    0000000000                                                                                    |
|    0000000000                                                                                    |
|SY-MSGV2                                                                                          |
|    get_wi_all_new                                                                                |
|    66757656665667222222222222222222222222222222222222                                            |
|    754F79F1CCFE57000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|SY-MSGV3                                                                                          |
|                                                                                                  |
|    22222222222222222222222222222222222222222222222222                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|L_DUMMY                                                                                           |
|    F                                                                                             |
|    4                                                                                             |
|    6                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|ME->M_LOG                                                                                         |
|    {O:14*\CLASS=CL_SWN_LOG}                                                                      |
|    F0000000                                                                                      |
|    1000E000                                                                                      |
|SPACE                                                                                             |
|                                                                                                  |
|    2                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|ME                                                                                                |
|    {O:20*\CLASS=CL_SWN_SCENARIO_WORKFLOW}                                                        |
|    E0001000                                                                                      |
|    B0004000                                                                                      |
|L_PREV_TIMESTAMP                                                                                  |
|    ###########                                                                                   |
|    00000000000                                                                                   |
|    0000000000C                                                                                   |
|ME->M_TASK_FILTER                                                                                 |
|    Table IT_120[3x28]                                                                            |
|L_NEW_TIMESTAMP                                                                                   |
|     ####8##0##                                                                                   |
|    21011318300                                                                                   |
|    0087585100C                                                                                   |
|L_COUNT                                                                                           |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
|LT_ACTIONS                                                                                        |
|    Table[initial]                                                                                |
|LT_WORKLIST                                                                                       |
|    Table[initial]                                                                                |
|ME->M_TIMESTAMP                                                                                   |
|    ###########                                                                                   |
|    00000000000                                                                                   |
|    0000000000C                                                                                   |
|<WORKITEM>                                                                                        |
|    ???                                                                                           |
|    ??????                                                                                        |
|    ??????                                                                                        |
----------------------------------------------------------------------------------------------------
|No.       3 Ty.          METHOD                                                                   |
|Name  CL_SWN_COLLECTOR=>PROCESS_FILTER                                                            |
----------------------------------------------------------------------------------------------------
|I_SCENARIO                                                                                        |
|    WORKFLOW                                                                                      |
|    54544445222222222222222222222222                                                              |
|    7F2B6CF7000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|I_FILTER                                                                                          |
|    ZWF_TASK_DELTA                                                                                |
|    55455454544454222222222222222222                                                              |
|    A76F413BF45C41000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|%_DUMMY$$                                                                                         |
|                                                                                                  |
|    2222                                                                                          |
|    0000                                                                                          |
|    0000                                                                                          |
|    0000                                                                                          |
|ME                                                                                                |
|    {O:16*\CLASS=CL_SWN_COLLECTOR}                                                                |
|    E0001000                                                                                      |
|    F0000000                                                                                      |
|%_FSREG_001                                                                                       |
|    ???                                                                                           |
|    ??????                                                                                        |
|    ??????                                                                                        |
|SY-REPID                                                                                          |
|    CL_SWN_COLLECTOR==============CP                                                              |
|    4455545444444545333333333333334522222222                                                      |
|    3CF37EF3FCC534F2DDDDDDDDDDDDDD3000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|LI_SCEN                                                                                           |
|    {O:20*\CLASS=CL_SWN_SCENARIO_WORKFLOW}                                                        |
|    E0001000                                                                                      |
|    B0004000                                                                                      |
|LI_FILTER                                                                                         |
|    {O:19*\CLASS=CL_SWN_FILTER}                                                                   |
|    E0001000                                                                                      |
|    C0003000                                                                                      |
|SYST-REPID                                                                                        |
|    CL_SWN_COLLECTOR==============CP                                                              |
|    4455545444444545333333333333334522222222                                                      |
|    3CF37EF3FCC534F2DDDDDDDDDDDDDD3000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|    0000000000000000000000000000000000000000                                                      |
|SY-MSGID                                                                                          |
|    SWNT                                                                                          |
|    55452222222222222222                                                                          |
|    37E40000000000000000                                                                          |
|    00000000000000000000                                                                          |
|    00000000000000000000                                                                          |
|LT_NOTIF                                                                                          |
|    Table[initial]                                                                                |
|L_MERGE_MODE                                                                                      |
|    DELTA                                                                                         |
|    4445422222                                                                                    |
|    45C4100000                                                                                    |
|    0000000000                                                                                    |
|    0000000000                                                                                    |
|SY-MSGNO                                                                                          |
|    002                                                                                           |
|    333                                                                                           |
|    002                                                                                           |
|    000                                                                                           |
|    000                                                                                           |
|SY-SUBRC                                                                                          |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
|ME->IF_SWN_COLLECTOR~STATISTICS-SELECTED                                                          |
|    00000012                                                                                      |
|    33333333                                                                                      |
|    00000012                                                                                      |
|    00000000                                                                                      |
|    00000000                                                                                      |
|SY-TFILL                                                                                          |
|    3                                                                                             |
|    0000                                                                                          |
|    3000                                                                                          |
----------------------------------------------------------------------------------------------------
|No.       2 Ty.          METHOD                                                                   |
|Name  CL_SWN_COLLECTOR=>IF_SWN_COLLECTOR~PROCESS                                                  |
----------------------------------------------------------------------------------------------------
|I_SCHEDULE                                                                                        |
|    Table[initial]                                                                                |
|I_FILTER                                                                                          |
|    Table[initial]                                                                                |
|SPACE                                                                                             |
|                                                                                                  |
|    2                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|SY-MSGV1                                                                                          |
|    cl_swn_scenario_workflow                                                                      |
|    66577657666676657676666722222222222222222222222222                                            |
|    3CF37EF335E129FF7F2B6CF700000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|<SCHEDULE>-ID                                                                                     |
|    ZWF_UWL_TASK_DELTA                                                                            |
|    55455545545454445422222222222222                                                              |
|    A76F57CF413BF45C4100000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|SY-MSGV2                                                                                          |
|    get_wi_all_new                                                                                |
|    66757656665667222222222222222222222222222222222222                                            |
|    754F79F1CCFE57000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|<SCHEDULE>-SCENARIO                                                                               |
|    WORKFLOW                                                                                      |
|    54544445222222222222222222222222                                                              |
|    7F2B6CF7000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|SY-MSGV3                                                                                          |
|                                                                                                  |
|    22222222222222222222222222222222222222222222222222                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|SY-MSGV4                                                                                          |
|                                                                                                  |
|    22222222222222222222222222222222222222222222222222                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|    00000000000000000000000000000000000000000000000000                                            |
|L_DUMMY                                                                                           |
|    T                                                                                             |
|    5                                                                                             |
|    4                                                                                             |
|    0                                                                                             |
|    0                                                                                             |
|ME->M_LOG                                                                                         |
|    {O:14*\CLASS=CL_SWN_LOG}                                                                      |
|    F0000000                                                                                      |
|    1000E000                                                                                      |
|ME                                                                                                |
|    {O:16*\CLASS=CL_SWN_COLLECTOR}                                                                |
|    E0001000                                                                                      |
|    F0000000                                                                                      |
|<SCHEDULE>-FILTER                                                                                 |
|    ZWF_TASK_DELTA                                                                                |
|    55455454544454222222222222222222                                                              |
|    A76F413BF45C41000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|    00000000000000000000000000000000                                                              |
|L_SUBRC                                                                                           |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
----------------------------------------------------------------------------------------------------
|No.       1 Ty.          EVENT                                                                    |
|Name  START-OF-SELECTION                                                                          |
----------------------------------------------------------------------------------------------------
|LO_LOG                                                                                            |
|    {O:14*\CLASS=CL_SWN_LOG}                                                                      |
|    F0000000                                                                                      |
|    1000E000                                                                                      |
|RSJOBINFO                                                                                         |
|                                    00000000000000                                  ##            |
|    2222222222222222222222222222222233333333333333222222222222222222222222222222222200            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |
|LI_FACT                                                                                           |
|    {O:15*\CLASS=CL_SWN_OBJECT_FACTORY}                                                           |
|    F0000000                                                                                      |
|    0000F000                                                                                      |
|LO_SELECT                                                                                         |
|    {O:16*\CLASS=CL_SWN_COLLECTOR}                                                                |
|    E0001000                                                                                      |
|    F0000000                                                                                      |
|LT_SCHED2                                                                                         |
|    Table[initial]                                                                                |
|SY-SUBRC                                                                                          |
|    0                                                                                             |
|    0000                                                                                          |
|    0000                                                                                          |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Internal notes                                                                                    |
|    The termination was triggered in function "ThTimeout"                                         |
|    of the SAP kernel, in line 1741 of the module                                                 |
|     "//bas/701_REL/src/krn/th/thhiserv.c#5".                                                     |
|    The internal operation just processed is "SQLS".                                              |
|    Internal mode was started at 20100817173810.                                                  |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Active Calls in SAP Kernel                                                                        |
----------------------------------------------------------------------------------------------------
|Lines of C Stack in Kernel (Structure Differs on Each Platform)                                   |
----------------------------------------------------------------------------------------------------
|SAP (R) - R/3(TM) Callstack, Version 1.0                                                          |
|Copyright (C) SAP AG. All rights reserved.                                                        |
|Callstack without Exception:                                                                      |
|App       : disp+work.EXE (pid=2240)                                                              |
|When      : 8/17/2010 18:38:15.133                                                                |
|Threads   : 2                                                                                     |
|Computer Name       : PWDF4112                                                                    |
|User Name           : isdadm                                                                      |
|Number of Processors: 8                                                                           |
|Processor Type: AMD64 Family 15 Model 33 Stepping 2                                               |
|Windows Version     : 5.2 Current Build: 3790                                                     |
|State Dump for Thread Id 392c                                                                     |
|FramePtr         ReturnAd         Param#1          Function Name                                  |
|0000000002027560 0000000077d704ff 00000001400002d2 ntdll!ZwWaitForSingleObject                    |
|0000000002027600 000000014136ee31 00000000000006d0 kernel32!WaitForSingleObjectEx                 |
|0000000002027840 000000014021c6a1 0000000000000001 disp+work!NTDebugProcess [ntstcdbg.c (509)]    |
|0000000002027870 000000014070d40e 00000000781ea000 disp+work!CTrcStack [dptstack.c (182)]         |
|00000000020278c0 0000000140712701 0000000000000017 disp+work!rabax_CStackSave [abrabax.c (7256)]  |
|0000000002028280 00000001401beca2 00000001423bd820 disp+work!ab_rabax [abrabax.c (1271)]          |
|00000000020282c0 000000014016bad3 0000000000000000 disp+work!ThrShortDump [thxxab.c (6540)]       |
|0000000002028310 00000001400d5cee 0000000000000000 disp+work!ThTimeout [thhiserv.c (1746)]        |
|0000000002028400 00000001400d68d0 0000000000000004 disp+work!ThCleanPrevUser [thxxhead.c (17991)] |
|0000000002028440 00000001868c857c 0000000005622020 disp+work!ThHdlSqlBreak [thxxhead.c (21481)]   |
|0000000002028480 00000001868d7c40 0000000000010018 dbdb6slib!handleSqlBreak [dbdb6.c (19663)]     |
|0000000002028570 00000001868ea27b 0000000000000000 dbdb6slib!DB6Fetch [dbdb6.c (3731)]            |
|00000000020285c0 0000000140daad30 0000000000000000 dbdb6slib!DbSlExeReadDB6 [dbsldb6.c (1993)]    |
|0000000002028610 0000000140db84b2 000007fe57117df0 disp+work!dbsl_exec_fetch [dbtran.c (7275)]    |
|0000000002028680 0000000140d25a00 000007fe57117df0 disp+work!db_tran94 [dbtran.c (2475)]          |
|00000000020286c0 0000000140d28adf 000007fe57117df0 disp+work!call_tran [dbrsql.c (12440)]         |
|0000000002028700 0000000140d2996a 0000000000000000 disp+work!fetch_cursor [dbrsql.c (4774)]       |
|0000000002028750 0000000140d2c9a7 0000000000000000 disp+work!fetch_otab [dbrsql.c (6895)]         |
|0000000002028820 0000000140d2df9c 0000000000000000 disp+work!iotab_access [dbrsql.c (4066)]       |
|00000000020288f0 00000001405f1ecf 0000000000000000 disp+work!db_rsql1994 [dbrsql.c (2672)]        |
|0000000002028980 00000001405f8151 00001d3000270902 disp+work!CallRsql94 [absapsql.c (7215)]       |
|00000000020289d0 00000001405fb0bb 0000000143385060 disp+work!SqlsFetchAll [absapsql.c (7936)]     |
|0000000002028bc0 000000014060bf6c 000000000000003b disp+work!SqlsExecuteCall [absapsql.c (7541)]  |
|0000000002028c60 0000000140449d78 0000000000000000 disp+work!ab_jsqls [absapsql.c (1439)]         |
|0000000002028de0 0000000140625312 0000000000000000 disp+work!ab_extri [abextri.c (554)]           |
|0000000002028e30 0000000140625c26 0000000000000000 disp+work!ab_xevent [abrunt1.c (281)]          |
|0000000002028ec0 000000014078dc67 0000000140000000 disp+work!ab_trigg [abrunt1.c (61)]            |
|0000000002028f50 000000014027ed53 0000000142475018 disp+work!ab_run [absubmit.c (408)]            |
|00000000020290e0 00000001402838b1 0073004900790064 disp+work!dynpmcal [dymainstp.c (2381)]        |
|0000000002029180 0000000140282e9a 000000000000000c disp+work!dynppai0 [dymainstp.c (1001)]        |
|0000000002029230 000000014023ceb6 0000000000000000 disp+work!dynprctl [dymainstp.c (360)]         |
|000000000202fc60 00000001400f28aa 000000000000000c disp+work!dynpen00 [dymain.c (1925)]           |
|000000000202fee0 0000000140030027 00000000024597b0 disp+work!TskhLoop [thxxhead.c (4662)]         |
|000000000202ff10 00000001400010a9 ffffffff00000003 disp+work!DpMain [dpxxdisp.c (1166)]           |
|000000000202ff40 0000000141635c50 0000000002030000 disp+work!nlsui_main [thxxanf.c (64)]          |
|000000000202ff70 0000000077d596ac 0000000000000000 disp+work!__tmainCRTStartup [crtexe.c (594)]   |
|000000000202ffa0 0000000000000000 00000001400010e0 kernel32!BaseProcessStart                      |
|State Dump for Thread Id 3420                                                                     |
|FramePtr         ReturnAd         Param#1          Function Name                                  |
|000000000ae7fe10 0000000077d5f6f1 0000000000000510 ntdll!NtFsControlFile                          |
|000000000ae7fe80 0000000141520ccf fffffffffffffffe kernel32!ConnectNamedPipe                      |
|000000000ae7ff10 00000000781337d7 00000000023b35e0 disp+work!SigIMsgFunc [signt.c (679)]          |
|000000000ae7ff40 0000000078133894 00000000781e95c0 MSVCR80!endthreadex                            |
|000000000ae7ff70 0000000077d6b71a 0000000077d6b6e0 MSVCR80!endthreadex                            |
|000000000ae7ffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart                       |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|List of ABAP programs affected                                                                    |
----------------------------------------------------------------------------------------------------
|Index |Typ|Program                                 |Group |Date      |Time    |Size     |Lang.    |
----------------------------------------------------------------------------------------------------
|     0|Prg|SWN_SELSEN                              |     0|21.01.2008|11:03:57|    27648|E        |
|     1|Prg|SAPMSSY0                                |     1|15.07.2010|13:30:24|    93184|E        |
|     2|Prg|SAPMSSYD                                |     1|19.08.2007|17:26:53|    24576|E        |
|     3|Typ|RZLLITAB                                |     0|07.05.1997|13:45:13|     3072|         |
|     4|Prg|SAPFSYSCALLS                            |     1|09.09.2004|14:18:32|     7168|E        |
|     5|Prg|RSDBRUNT                                |     0|15.07.2010|13:29:15|   254976|E        |
|     6|Typ|RSSCR                                   |     0|30.03.2005|10:21:45|     5120|         |
|     7|Prg|RSDBSPBL                                |     0|30.03.2005|10:21:58|    72704|E        |
|     8|Prg|SAPDB__S                                |     0|30.03.2005|10:22:01|    19456|E        |
|     9|Typ|VARID                                   |     0|12.05.1997|16:51:30|     4096|         |
|    10|Typ|SSCRFIELDS                              |     0|13.05.1997|12:54:26|     5120|         |
|    11|Prg|%_CSYDB0                                |     0|30.03.2005|10:21:45|    35840|E        |
|    12|Prg|RSDBSPVA                                |     0|22.07.2009|13:06:49|   133120|E        |
|    13|Typ|RSVAMEMKEY                              |     0|07.05.1997|13:07:49|     4096|         |
|    14|Prg|RSDBSPMC                                |     0|24.08.2006|15:47:53|    79872|E        |
|    15|Typ|DDSHDESCR                               |     0|03.09.1997|03:05:16|     4096|         |
|    16|Typ|SPPARAMS                                |     0|07.05.1997|13:10:38|     2048|         |
|    17|Prg|SAPLICON                                |    17|17.01.2009|22:56:02|    27648|E        |
|    18|Prg|%_CICON                                 |    17|17.01.2009|22:56:02|   107520|E        |
|    19|Typ|ICONT                                   |     0|24.08.2006|15:47:50|     2048|         |
|    20|Prg|SAPLSABE                                |    20|22.07.2009|11:05:44|    12288|E        |
|    21|Prg|SAPLSECU                                |    21|15.07.2010|12:19:33|    87040|E        |
|    22|Typ|RSSUBINFO                               |     0|14.10.1999|22:01:03|     3072|         |
|    23|Prg|%_CRSDS                                 |     0|18.02.2005|14:15:39|    10240|E        |
|    24|Typ|RSDSEXPR                                |     0|20.08.1998|10:57:18|     3072|         |
|    25|Typ|RSEXFCODE                               |     0|13.08.1997|12:52:57|     2048|         |
|    26|Prg|SAPLDSYA                                |    26|22.07.2009|10:57:28|    45056|E        |
|    27|Prg|SAPFSDS1                                |    26|30.03.2005|10:22:01|    52224|E        |
|    28|Typ|TDCLD                                   |     0|02.11.1998|09:51:35|     5120|         |
|    29|Prg|SAPLSDOD                                |    29|25.01.2006|10:59:45|    45056|E        |
|    30|Typ|DOKIL                                   |     0|12.05.1997|16:46:17|     4096|         |
|    31|Prg|SAPCNVE                                 |    31|09.09.2004|14:36:10|     8192|E        |
|    32|Prg|SAPLLANG                                |    32|23.07.2007|10:47:54|    10240|E        |
|    33|Typ|T002                                    |     0|23.07.2007|10:47:17|     2048|         |
|    34|Prg|SAPFSPOR                                |     0|22.07.2009|12:34:35|    14336|E        |
|    35|Typ|RSPARINT                                |     0|10.04.1995|09:58:38|     2048|         |
|    36|Prg|SAPLSCNT                                |    36|18.02.2005|14:16:06|    30720|E        |
|    37|Typ|DYCBOX                                  |     0|20.08.1998|11:16:53|     3072|         |
|    38|Prg|SAPLSVSM                                |    38|22.07.2009|13:06:42|    28672|E        |
|    39|Prg|SAPLSGUI                                |    39|15.07.2010|13:30:24|    84992|E        |
|    40|Prg|SAPLSTTM                                |    40|05.07.2005|13:10:18|    69632|E        |
|    41|Prg|SAPLSBDC                                |    41|17.08.2006|05:06:18|    44032|E        |
|    42|Prg|CL_DATAPROVIDER===============CP        |    42|22.07.2009|11:05:31|    49152|E        |
|    43|Prg|%_CCNTL                                 |    42|18.02.2005|14:15:08|    15360|E        |
|    44|Typ|OBJ_RECORD                              |     0|14.02.1998|08:30:43|     2048|         |
|    45|Prg|SAPLSTUP                                |    45|22.07.2009|10:51:45|    74752|E        |
|    46|Prg|SAPLCNDP                                |    46|15.07.2010|13:38:45|   197632|E        |
|    47|Prg|SAPSHDTV                                |    36|05.01.2005|16:26:16|    33792|E        |
|    48|Prg|SAPFGUICNTL                             |     1|18.02.2005|14:15:08|    24576|E        |
|    49|Prg|SAPLOLEA                                |    49|18.01.2010|08:48:53|    96256|E        |
|    50|Prg|SAPLSFES                                |    50|15.07.2010|13:30:24|   265216|E        |
|    51|Prg|SAPLSPLUGIN                             |    51|09.09.2004|14:18:36|     8192|E        |
|    52|Typ|ARFCRDATA                               |     0|13.02.2005|18:20:24|     6144|         |
|    53|Prg|SAPLGRFC                                |    53|13.02.2005|18:20:25|    16384|E        |
|    54|Typ|SWCBCONT                                |     0|15.11.2000|17:55:11|     3072|         |
|    55|Typ|OLE_VERBS                               |     0|04.04.1995|16:02:20|     2048|         |
|    56|Typ|OLE_PA                                  |     0|04.04.1995|16:02:19|     2048|         |
|    57|Typ|SSCRTEXTS                               |     0|03.09.1997|03:12:33|     3072|         |
|    58|Prg|CL_GUI_PROPS_CONSUMER=========CP        |    58|18.01.2010|08:52:24|    29696|E        |
|    59|Prg|SAPLTHFB                                |    59|15.07.2010|13:30:24|   394240|E        |
|    60|Typ|EUDB                                    |     0|22.07.2009|10:28:38|     8192|         |
|    61|Prg|CL_DYNAMIC_GUI_EXTENSIONS=====CP        |    61|18.02.2005|14:15:28|    37888|E        |
|    62|Prg|CL_GUI_DATAMANAGER============CP        |    62|22.07.2009|11:05:31|    75776|E        |
|    63|Prg|CL_ABAP_CHAR_UTILITIES========CP        |    63|05.07.2005|13:10:15|    13312|E        |
|    64|Prg|RSDBSPVD                                |     0|23.07.2007|11:38:54|    88064|E        |
|    65|Typ|RVARI                                   |     0|30.03.1998|09:40:50|     4096|         |
|    66|Typ|RSVARIVDAT                              |     0|04.04.1995|16:12:54|     2048|         |
|    67|Prg|CL_SWN_SETTINGS===============CP        |    67|21.01.2008|10:37:57|    23552|E        |
|    68|Prg|CL_SWN_PARAMETER==============CP        |    68|21.01.2008|11:03:57|    15360|E        |
|    69|Prg|CL_SWN_LOG====================CP        |    69|18.05.2004|10:53:58|    26624|E        |
|    70|Typ|BAL_S_COL                               |     0|25.01.1999|12:55:55|     2048|         |
|    71|Typ|BAL_S_MSG                               |     0|04.12.2000|13:04:01|     7168|         |
|    72|Typ|SWN_SETTINGS                            |     0|06.11.2003|20:37:51|     3072|         |
|    73|Prg|CL_SWF_UTL_REPORT_SINGLETON===CP        |    73|21.01.2008|09:38:40|    13312|E        |
|    74|Typ|BAL_S_LOG                               |     0|04.12.2000|13:04:00|     7168|         |
|    75|Prg|SAPLSBAL                                |    75|15.07.2010|13:29:51|   325632|E        |
|    76|Typ|BAL_S_CONT                              |     0|02.11.1998|09:43:07|     2048|         |
|    77|Typ|BAL_S_PARM                              |     0|04.12.2000|12:45:14|     3072|         |
|    78|Typ|BAL_S_CLBK                              |     0|02.11.1998|09:43:07|     2048|         |
|    79|Typ|BAL_S_SCNT                              |     0|30.11.1998|15:52:33|     3072|         |
|    80|Typ|BAL_S_SDEF                              |     0|04.12.2000|12:45:15|     2048|         |
|    81|Prg|SAPLSBAL_SERVICE                        |    81|15.07.2010|13:29:51|   173056|E        |
|    82|Typ|BALOBJ                                  |     0|13.08.1997|13:16:25|     2048|         |
|    83|Typ|BALSUB                                  |     0|13.08.1997|13:16:26|     2048|         |
|    84|Prg|SAPLSYGU                                |    84|09.09.2004|14:18:36|    29696|E        |
|    85|Prg|/1BCDWBEN/SAPLSEN0009                   |    85|23.07.2009|03:09:51|   249856|E        |
|    86|Prg|SAPLSENA                                |    86|23.07.2007|12:03:56|    33792|E        |
|    87|Prg|CL_SWN_OBJECT_FACTORY=========CP        |    87|21.01.2008|11:03:57|    19456|E        |
|    88|Prg|CL_SWN_COLLECTOR==============CP        |    88|22.07.2009|11:20:41|    73728|E        |
|    89|Typ|SWN_STATISTICS                          |     0|22.07.2009|10:37:17|     2048|         |
|    90|Prg|SAPLRHFE                                |    90|23.07.2007|12:03:16|    15360|E        |
|    91|Typ|TFDIR                                   |     0|13.02.2005|17:31:57|     3072|         |
|    92|Prg|SAPLSETRM                               |    92|15.07.2010|13:56:13|   151552|E        |
|    93|Prg|CL_ABAP_TSTMP=================CP        |    93|23.07.2007|11:36:10|    35840|E        |
|    94|Typ|TTZCU                                   |     0|30.01.1996|13:46:43|     2048|         |
|    95|Typ|SWN_COLSCHED                            |     0|06.11.2003|20:37:49|     4096|         |
|    96|Typ|SWNSCOLSCHED                            |     0|06.11.2003|20:31:50|     4096|         |
|    97|Typ|SWNKCOLSCHED                            |     0|06.11.2003|20:31:50|     2048|         |
|    98|Prg|CL_SWN_UTL_SCHEDULE===========CP        |    98|18.05.2004|10:54:00|    13312|E        |
|    99|Prg|CL_SWN_UTL_CONFIG=============CP        |    99|21.01.2008|10:37:57|    69632|E        |
|   100|Typ|SWN_TIMESTAMPS                          |     0|06.11.2003|20:37:52|     3072|         |
|   101|Prg|SAPLSPIAGENTCW                          |   101|21.01.2008|10:31:33|    13312|E        |
|   102|Prg|SAPLSPILS                               |   102|15.07.2010|13:30:24|    64512|E        |
|   103|Prg|CL_OS_TRANSACTION_END_NOTIFIERCP        |   103|05.07.2005|13:05:25|    10240|E        |
|   104|Prg|CL_SYSTEM_TRANSACTION_STATE===CP        |   104|15.07.2010|13:30:24|   106496|E        |
|   105|Prg|CL_SWN_SCENARIO===============CP        |   105|21.01.2008|11:03:57|    19456|E        |
|   106|Typ|SWN_SCENARIO                            |     0|06.11.2003|20:37:51|     3072|         |
|   107|Prg|CL_SWN_SCENARIO_WORKFLOW======CP        |   107|22.07.2009|11:20:44|    94208|E        |
|   108|Prg|IF_SWN_OBJECT_FACTORY=========IP        |    87|21.01.2008|11:03:57|     8192|E        |
|   109|Prg|CL_SWN_FILTER=================CP        |   109|21.01.2008|11:03:57|    28672|E        |
|   110|Typ|SWNSFILTER                              |     0|09.12.2003|11:37:28|     3072|         |
|   111|Typ|SWN_FILTER                              |     0|09.12.2003|11:38:17|     3072|         |
|   112|Prg|CL_SWN_TESTCASE===============CP        |   112|18.05.2004|10:53:59|    10240|E        |
|   113|Typ|SWNKFILTVAL                             |     0|06.11.2003|20:31:50|     2048|         |
|   114|Typ|SWN_FILTVAL                             |     0|06.11.2003|20:37:50|     3072|         |
|   115|Typ|SWN_FILTPAR                             |     0|06.11.2003|20:37:50|     3072|         |
|   116|Prg|CL_SWF_UTL_STATUS=============CP        |   116|21.01.2008|11:25:02|    13312|E        |
|   117|Typ|SWWWIHEAD                               |     0|16.08.2006|15:12:55|    12288|         |
|   118|Typ|SWFARRHTSK                              |     0|11.08.2006|21:29:36|     2048|         |
|   119|Typ|SWR_MSTRUC                              |     0|20.08.1998|11:25:16|     3072|         |
|   120|Typ|SWR_WIAGENT                             |     0|18.02.2005|13:54:04|     2048|         |
|   121|Prg|IF_SWN_NOTIF==================IP        |   107|21.01.2008|11:03:57|    17408|E        |
|   122|Typ|SWN_NOTIF                               |     0|11.08.2006|21:00:37|     8192|         |
|   123|Typ|SWNSNOTIF1                              |     0|11.08.2006|21:29:36|    10240|         |
|   124|Typ|SWNKREMAP                               |     0|11.08.2006|21:29:36|     1024|         |
|   125|Typ|SWN_REMAP                               |     0|11.08.2006|21:00:29|     5120|         |
|   126|Typ|SWN_CATEGORY                            |     0|06.11.2003|20:37:49|     4096|         |
|   127|Prg|CL_ABAP_MEMORY_UTILITIES======CP        |   127|05.01.2005|16:21:40|    11264|E        |
|   128|Typ|SWR_TASK                                |     0|11.08.2006|21:29:37|     2048|         |
|   129|Typ|SWWLOGHIST                              |     0|28.12.2004|15:57:22|     7168|         |
|   130|Prg|%_CSYLDB                                |     0|18.02.2005|14:15:48|     8192|E        |
|   131|Prg|%_CSLIS                                 |    21|25.01.2006|11:07:06|    89088|E        |
|   132|Typ|DTC_S_LAYO                              |     0|04.12.2000|12:46:23|     6144|         |
|   133|Typ|CAT_SVARS                               |     0|18.05.2004|10:32:36|     3072|         |
|   134|Typ|BAL_S_MDEF                              |     0|04.12.2000|13:04:00|     5120|         |
|   135|Typ|BAL_S_CONF                              |     0|06.11.2003|20:26:08|    19456|         |
|   136|Typ|BAL_S_COLL                              |     0|06.11.2003|20:26:08|    10240|         |
|   137|Typ|BAL_S_MFIL                              |     0|06.11.2003|20:26:08|     9216|         |
|   138|Typ|BAL_S_DISP                              |     0|06.11.2003|20:26:08|    11264|         |
|   139|Typ|BALMSGHNDL                              |     0|02.11.1998|09:43:06|     2048|         |
|   140|Typ|BAL_S_NTAB                              |     0|18.05.2004|14:07:04|     4096|         |
|   141|Prg|%_CNF2TY                                |    92|18.02.2005|14:15:27|     8192|E        |
|   142|Prg|IF_SWN_SCENARIO===============IP        |   107|18.05.2004|11:09:14|     9216|E        |
|   143|Typ|SYST                                    |     0|09.09.2004|14:18:12|    31744|         |
|   144|Typ|RSJOBINFO                               |     0|29.04.1992|14:52:25|     3072|         |
|   145|Prg|IF_SWN_FILTER=================IP        |   107|18.05.2004|11:09:13|     9216|E        |
|   146|Prg|IF_SWN_COLLECTOR==============IP        |    88|25.01.2006|11:05:53|     7168|E        |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|Directory of Application Tables                                                                   |
----------------------------------------------------------------------------------------------------
|Name                                     Date       Time       Lngth                              |
|    Val.                                                                                          |
----------------------------------------------------------------------------------------------------
|Program  SWN_SELSEN                                                                               |
----------------------------------------------------------------------------------------------------
|SYST                                     09.09.2004 14:18:12   00004612                           |
|    \0\0\0\0\x0001\0\x0003\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0                                      |
|RSJOBINFO                                  .  .       :  :     00000164                           |
|                                    00000000000000                                                |
|SSCRFIELDS                               09.09.2004 14:18:02   00001708                           |
|                                                                                                  |
|SSCRTEXTS                                  .  .       :  :     00000742                           |
|                                                                                                  |
----------------------------------------------------------------------------------------------------
|Program  RSDBRUNT                                                                                 |
----------------------------------------------------------------------------------------------------
|VARID                                      .  .       :  :     00000252                           |
|                                                                                                  |
----------------------------------------------------------------------------------------------------
|Program  SAPLICON                                                                                 |
----------------------------------------------------------------------------------------------------
|ICONT                                      .  .       :  :     00000130                           |
|                                                                                                  |
----------------------------------------------------------------------------------------------------
|Program  SAPFSDS1                                                                                 |
----------------------------------------------------------------------------------------------------
|TDCLD                                      .  .       :  :     00000098                           |
|    RE  DOKU   8R XX XXLIMUDOKUX \x001EXR3TRPROGX         |                                       |
----------------------------------------------------------------------------------------------------
|Program  SAPLSDOD                                                                                 |
----------------------------------------------------------------------------------------------------
|DOKIL                                      .  .       :  :     00000152                           |
|                                                                                                  |
----------------------------------------------------------------------------------------------------
|Program  SAPLLANG                                                                                 |
----------------------------------------------------------------------------------------------------
|T002                                       .  .       :  :     00000010                           |
|    ES1EN|                                                                                        |
----------------------------------------------------------------------------------------------------
|Program  CL_GUI_PROPS_CONSUMER=========CP                                                         |
----------------------------------------------------------------------------------------------------
|EUDB                                       .  .       :  :     00004068                           |
|    %CE512AADF2BE8F1A4A9490017A44BCD14         \0\0\0                                             |
----------------------------------------------------------------------------------------------------
|Program  SAPLRHFE                                                                                 |
----------------------------------------------------------------------------------------------------
|TFDIR                                      .  .       :  :     00000268                           |
|    ECATT_MODIFY_BALMSG           SAPLSETRM                                                       |
----------------------------------------------------------------------------------------------------
|Program  CL_SWN_SCENARIO_WORKFLOW======CP                                                         |
----------------------------------------------------------------------------------------------------
|RSJOBINFO                                  .  .       :  :     00000164                           |
|                                    00000000000000                                                |
----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------
|ABAP Control Blocks (CONT)                                                                        |
----------------------------------------------------------------------------------------------------
|Index|Name|Fl|PAR0|PAR1|PAR2|PAR3|PAR4|PAR5|PAR6|Source Code                             |Line    |
----------------------------------------------------------------------------------------------------
| 2358|WHER|00|0000|0000|0054|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2360|WHER|2A|0004|0000|0000|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2362|WHER|22|0000|0014|0038|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2364|PAR1|80|C001|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2365|WHER|01|0000|0002|006F|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2367|PAR1|85|0006|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2368|WHER|20|0001|0002|0067|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2370|PAR1|80|0054|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2371|WHER|13|0001|0011|0059|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2373|PAR1|84|C007|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2374|SQLS|39|008B|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2375|SQLS|3B|0000|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
|>>>>>|SQLS|20|C011|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      80|
| 2377|TDEL|0A|0243|C011|0001|0000|0000|0000|0000|CL_SWN_SCENARIO_WORKFLOW======CM00D     |      91|
| 2381|PAR1|80|008C|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      91|
| 2382|SQLS|0A|0000|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      94|
| 2383|SQLS|30|0002|    |    |    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      94|
| 2384|WHER|28|0003|0000|0000|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      94|
| 2386|WHER|00|0001|0000|0054|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      94|
| 2388|WHER|2A|0002|0000|0000|    |    |    |    |CL_SWN_SCENARIO_WORKFLOW======CM00D     |      94|
----------------------------------------------------------------------------------------------------


More information about the SAP-WUG mailing list