BI ABAP  Dump Error

Hi Experts
  ABAP Error in BI
  calling PSA table to my program it contains more than 200000 records also applying grouping in select statement
But it showing dump  .
please correct me if any wrong in my code.
BREAK-POINT.
    DATA : BEGIN OF ITAB4 OCCURS 0,
      REPORT_TYPE LIKE /BIC/B0007048000-REPORT_TYPE,
      JV_NO LIKE  /BIC/B0007048000-JV_NO,
       AMOUNT LIKE /BIC/B0007048000-AMOUNT,
      RECORD_COUNT LIKE /BIC/B0007048000-RECORD,
      END OF ITAB4.
DATA:  WTAB4 LIKE ITAB4.
SELECT REPORT_TYPE JV_NO SUM(  AMOUNT ) COUNT(*)
       INTO TABLE ITAB4 PACKAGE SIZE 5000
       FROM /BIC/B0007048000
       GROUP BY REPORT_TYPE JV_NO.
     ENDSELECT.
BELOW is the dump error
solution please
Check the entries in the developer trace of the relevant work process
(transaction ST11).
Here you can find detailed information about the type and length of the
database field as well as the ABAP field into which the field was to be
imported.
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:
"DBIF_RSQL_INVALID_RSQL" "CX_SY_OPEN_SQL_DB"
"ZREVRECON" or "ZREVRECON"
"START-OF-SELECTION"
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

Hi,
I believe the short-dump is due to the excessively large amount of data that is being fetched. A direct SELECT on the database will not help, even though you are appending in a PACKAGE SIZE.
You could try out the statement OPEN CURSOR to fetch the data. I have used this procedure before.
Please try as per the example given below:
OPEN CURSOR: lv_cursor FOR SELECT  pstng_date ucrate_cat ucdeeinvdn
                            FROM  /bic/azsod00200 FOR ALL ENTRIES IN li_source_package
                           WHERE ucdeeinvdn = li_source_package-ucdeeinvdn.
      DO.
        IF lv_flag NE 'X'.
          FETCH NEXT CURSOR lv_cursor INTO TABLE li_zso002 PACKAGE
          SIZE 5000.
          IF sy-subrc <> 0.
            CLOSE CURSOR lv_cursor.
            lv_flag = 'X'.
          ENDIF.
        ENDIF.
      ENDDO.

Similar Messages

  • Abap dump error while release Production order

    Dear Gurus,
                          Abap dump error is creating while release production order , pour some light on this issue.
    Regards,
    Kamal

    Hello,
      use transaction ST22 to analyze the error type. There you have the detail of the error message, the program and the line of the ABAP code where the dump was triggered.
    Best regards,
    Andrea

  • ABAP dump Error while creating service order in PCUI.

    Hi Experts,
                     We are getting following ABAP dump error while creating service order in PCUI which is working fine in GUI.
    Runtime Errors         RAISE_EXCEPTION
    Date and Time          02.01.2008 14:55:38
    Short text
    Exception condition "TYPE_NOT_FOUND" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    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
    A RAISE statement in the program "CL_CRM_ELEMDESCR==============CP" raised the
    exception
    condition "TYPE_NOT_FOUND".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    |    function module from the display of active calls.     
    We have added custom fields in the service application. these custom fields with Z-structure & data elements  are included in BSP structure CRMT_BSP_SRV_OIC_SRCHRES in development system.But the same Z structure & custom fields are exist in the production system but not included in BSP Structue CRMT_BSP_SRV_OIC_SRCHRES.
    This may be the reason resulting this ABAP dump error in PCUI while creating Service order.
    How these Z structures can be included in the BSP Structure CRMT_BSP_SRV_OIC_SRCHRES in production system?
    Helpful answers would be rewrded max points as it is high priority issue.
    Regards,
    Basavaraj Patil

    Hi Thirumala,
    Thnaks for the reply.
                I have enhanced service application using transaction EEWB to add new custom fields. these fields are there in Z structure created by the system in production system. All the transports are moved to target system. Problem is that Z structure( contains custom fields)  created while doing  EEWB is not included in BSP structure.
    I f transports are missed to move to target system, Is there any other alternative to solve this problem?
    Regards,
    Basavaraj Patil

  • Abap dump errors

    hi ,
    i dont know how to analyze the abap dump errors. but,i knew the t-code  st22  for it..
    regards
    shunmugam

    Please read the following document. It will give you a good picture about Dump analysis.
    http://help.sap.com/saphelp_nw70/helpdata/EN/46/ff01540bb921bee10000000a114a6b/frameset.htm
    Regards,
    Jazz

  • While uploading the excel BOM to SAP in PRD getting the ABAP dump error not

    Hi Experts,
    While uploading the excel BOM to SAP in PRD getting the ABAP dump error not able to proceed further.
    and if I visit ST22 t code it is telling that :RAISE_EXCEPTION and DYNPRO_NOT_FOUND.
    PLease help.
    Regards,
    Mohan

    Hi,
    Better ask this question in ABAP forums.
    Regards,
    Harsh.

  • ABAP dump error while updating product master in APO

    Hi All,
    Greetings from Vijay!
    I need to your help to resolve below issue ;
    I am getting error '
    No simulation parameters could be set for the
    active version'
    While i am updating and trying to assign active version to my product master in APO which are created in APO for regression testing
    and also sometimes system throwing dump error'
    Error in the ABAP Application Program
    The current ABAP program "/SAPAPO/SAPLDM_LC_SQL" had to be terminated because
      it has
    come across a statement that unfortunately cannot be executed.;
    I appreciate your help
    Thanks
    Vijay Job

    Hi Vijay,
    Can you check note 1465462 ?
    The same problem is mentioned in the note with correction .
    Regards,
    Mukesh pandey

  • ABAP Dump Error - System error in program RSMDATASTATE

    Hi Experts,
    We have a Process Chain which loads data, fills aggregates and does a rollup.
    Suddenly last week , the rollup step failed giving a error: No filled aggregates for the Cube
    We ran the Program SAP_AGGREGATES_ACTIVATE_FILL.
    After running the Program, the rollup happened for one day but again today while performing rollup we are encountering a ABAP dump.
    The error analysis says: System error in program RSMDATASTATE and form RSM_DATASTATE_CHECK-10-
    We checked the SAP Note : 858671, but we are not sure about the support packs.
    Please Help.
    Vivek Das Gupta

    Hello.
    Did you check note 1094948 if it was applied? Please apply this note and retest the report.
    Thanks.
    Walter Oliveira.

  • Abap dump error

    Hello
    The problem we are facing is.. We have installed the recent patch in order to get TAN included in Form 16 and it is working fine in r/3 but in ESS it is throwing dump error.
    The error states :
    Error in Abap 4 statement when processing an internal table.
    Program: HINCF161
    When changing or deleting one or more lines of the internal table or when inserting in the table , 0 was used as the line index.
    An index less than or equal to zero is not allowed.
    Please suggest....

    implement the notes
    1546949
    1528165
    1541146
    ensure both backend and frontend are on compatible levels.

  • ABAP Dump: Error when attempting to IMPORT object "MC02M_0ITM_TAB".

    Hi All,
    We Enhanced the Data Source 2LIS_02_ITM by adding 2 Fields and then Migrated to Prod. Initially Transports are moved by mistake by Migration without clearing the outbound queue (LBWQ). So V3 Jobs started failing. For this we deleted all the LUW in LBWQ and then executed V3 and it went fine with out any error. And its been 4days that we dont have any failure with V3 Updates.
    Now we have one more issue with V1 Update.
    We are getting Dump when user is trying to update or create the records.
    This is the dump error message.
    " An exception occurred that is explained in detail below.
    This exception cannot be caught in the context of the current statement.
    The reason for the exception is:
    When importing the object "MC02M_0ITM_TAB", the component no. 100 in the
    dataset has a different type from the corresponding component
    of the target object in the program "SAPLMCEX".
    The data type is "P" in the dataset, but "C" in the program."
    Have anyone of you faced this issue. Please give me the solution what to do. I got SAP Note for this 328181
    Please help me with above issue.
    Regards
    RK

    Forgot to add this Info in my previous thread.
    Information on where terminated
        Termination occurred in the ABAP program "SAPLMCEX" - in "MCEX_UPDATE_02_V1".
        The main program was "RSM13000 ".
        In the source code you have the termination point in line 1
        of the (Include) program "LMCEXU55".
        The program "SAPLMCEX" was started in the update system.

  • ASSIGN_TYPE_CONFLICT - ABAP Dump Error!

    Hi Friends,
    I am trying to load data from PSA to InfoCube and getting this dump error:
    <b>ASSIGN_TYPE_CONFLICT</b>
    Is there anyone who has also faced the similar error and could tell me the possible solution for this?
    Your help will be appriciated in terms of points.
    Thanks

    Check OSS note : 971584

  • RFC-XI-WEBSERVICE = ABAP DUMP ERROR(V.URGENT)

    Hi Experts,
    I am trying to create a RFC-XI-Webservice scenarion in which i have made a function module giving the parameters which needs to be displayed in my webservice . I call this function module in a report zlv_distance.
    .I am getting a dump while executing my Function module . I am copying the dump as under:-
    Runtime Errors         CALL_FUNCTION_REMOTE_ERROR
    Date and Time          11.10.2007 10:23:56
    What happened?
         Error in ABAP application program.
         The current ABAP program "Z_WEBSERVICE_TEST_SARAS=======FT" had to be
          terminated because one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
         The error occurred in an RFC call to another system.
         The target system has also written a short dump.
         Consult this short dump for more precise information about
         the cause of the error.
    Error analysis
         An error occurred when executing a REMOTE FUNCTION CALL.
         It was logged under the name "RFC_EXTERNAL_ABORT"
         on the called page.
    Trigger Location of Runtime Error
         Program                                 Z_WEBSERVICE_TEST_SARAS=======FT
         Include                                 Z_WEBSERVICE_TEST_SARAS=======FT
         Row                                     68
         Module type                             (FORM)
         Module Name                             FUNCTION_CALL
    Source Code Extract
    Line  SourceCde
       38 DATA: %_VDISTANCE TYPE CHAR10.
       39 FORM EXISTENCE_CHECK CHANGING VARIA.
       40   VARIA = 1.
       41 ENDFORM.
       42 FORM FUNCTION_CALL.
       43   CLEAR %_ODISTANCE.
       44 *  TRANSAKTION = 'Repo', PROGRAM = REPORT
       45   IF ATRA = '1'.
       46     SET RUN TIME ANALYZER ON %_INTERNAL.
       47   ENDIF.
       48 IF DESTI IS INITIAL.
       49 IF DEBUG = '1'. BREAK-POINT AT NEXT APPLICATION STATEMENT.
       50 ENDIF.
       51 DEBUG = SPACE.
    52 GET RUN TIME FIELD TIME1.
    53 CALL FUNCTION 'Z_WEBSERVICE_TEST_SARAS'
    54 EXPORTING
    55 FROMZIP = %_IFROMZIP
    56 TOZIP = %_ITOZIP
    57 IMPORTING
    58 DISTANCE = %_ODISTANCE.
    59   IF ATRA = '1'.
    60     SET RUN TIME ANALYZER OFF %_INTERNAL.
    61   ENDIF.
    62 ELSE.
    63 GET RUN TIME FIELD TIME1.
    64 *  TRANSAKTION = 'Repo', PROGRAM = REPORT
    65   IF ATRA = '1'.
    66     SET RUN TIME ANALYZER ON %_INTERNAL.
    67   ENDIF.
    >> CALL FUNCTION 'Z_WEBSERVICE_TEST_SARAS' DESTINATION DESTI
    69 EXPORTING
    70 FROMZIP = %_IFROMZIP
    71 TOZIP = %_ITOZIP
    72 IMPORTING
    73 DISTANCE = %_ODISTANCE.
    74   IF ATRA = '1'.
    75     SET RUN TIME ANALYZER OFF %_INTERNAL.
    76   ENDIF.
    77   ENDIF.
    78   GET RUN TIME FIELD TIME2.
    79   RC = SY-SUBRC.
    80   CLEAR EXCEPTIONS.
    81   READ TABLE EXCEPTIONS INDEX RC.
    82   IF SY-SUBRC = 0.
    83   OEXCEPTION = EXCEPTIONS-NAME.
    84   ELSE.
    85   OEXCEPTION = RESULTAT.
    86   ENDIF.
    87   TIME1 = TIME2 - TIME1.
    I have made my function module Remote enabled.
    My RFC destination is working fine .
    I have already tested that.
    Please help me on this.
    Regards
    Saras Jain

    Hi,
    possible solution could be a ConversionException in you RFC Adapter because of mismatching data types in your source and receiver message.
    Just goto RWB an monitor the Processing Details for Cluster Node Server of your adapter in the Channel Monitoring.
    Afterwards you have to adjust your importing or exporting structure of the used RFC function module.
    Cheers,
    André

  • ABAP Dump error -  PR PO Transactions

    Hi,
    I am getting  Run-Time Error in IDES server in all transactions ME21N,ME22N,ME29N,ME51N,ME52N,ME53N.,while testing PR & PO.
    Please advise how to rectify this...
    Kinldy see the attachment for error details.
    Server Details : Windows server 2008 - SAP ECC6 Ehp6 with Oracle.
    Thanks & Regards
    Rajesh.

    Check whether the following note helps you:-
    Note 1884364 - Runtime Error SYNTAX_ERROR in CL_MMPUR_CONSTANTS
    G. Lakshmipathi

  • ABAP DUMP - DYNPRO_FIELD_CONVERSION !!!

    Hii SAP Expert,
    I having a problem when diplaying the material document using reservation number, below is the abap dump error from sap, could anyone tell me what is the problem ?
    Runtime Error          DYNPRO_FIELD_CONVERSION
    Date and Time          31.12.2007 17:49:41
    <removed by moderator as the content doesnt help to understand the problem>
    Error analysis
    The program flow was interrupted and could not be resumed.
    Program "SAPLMIGO" tried to display fields on screen 0370. However, an
    error occurred while this data was being converted.
    How to correct the error
    A conversion error occurred while the program was trying to
    display data on the screen.
    The ABAP output field and the screen field may not have the
    same format.
    Some field types require more characters on the screen than
    in the ABAP program. For example, a date field on a screen needs
    two characters more than it would in the program. When attempting to
    display the date on the screen, an error will occur that triggers the
    error message.
    Screen name.............. "SAPLMIGO"
    Screen number............ 0370
    Screen field............. "GOITEM-VMENG"
    Error text............... "FX015: Sign lost."
    Further data:
    <removed by moderator as the content doesnt help to understand the problem>            |
    "DYNPRO_FIELD_CONVERSION" " "
    "SAPLMIGO" bzw. "LMIGOPBO"
    "PBO_DETAIL_RESERVATION"
    System environment
    SAP Release.............. "640"
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system......... "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Character length......... 16 Bits
    Pointer length........... 64 Bits
    Work process number...... 2
    Short dump setting....... "full"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database owner........... "SAPECP"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Mar 21 2007 20:14:03"
    Created in............... "HP-UX B.11.23 U ia64"
    Database version......... "OCI_920 "
    Patch level.............. "175"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "HP-UX B.11"
    Memory usage.............
    Roll..................... 16192
    EM....................... 33518720
    Heap..................... 0
    Page..................... 425984
    MM Used.................. 7977808
    MM Free.................. 399024
    SAP Release.............. "640"
    User and Transaction
    Client.............. 900
    User................ "GHAZALM"
    Language key........ "E"
    Transaction......... "/DBM/ORDER03 "
    Program............. "SAPLMIGO"
    Screen.............. "SAPLMIGO 0370"
    Screen line......... 0
    Information on where terminated
    The termination occurred in the ABAP program "SAPLMIGO" in
    "PBO_DETAIL_RESERVATION".
    The main program was "MB_CALL_MIGO_DIALOG ".
    The termination occurred in line 296 of the source code of the (Include)
    program "LMIGOPBO"
    of the source code of program "LMIGOPBO" (when calling the editor 2960).
    Source Code Extract
    Line
    SourceCde
    266
    ENDMODULE.                 " PBO_DETAIL_ORDER  OUTPUT
    267
    268
    *&      Module  PBO_DETAIL_TRANSFER OUTPUT
    269
    270
    MODULE pbo_detail_transfer OUTPUT.
    271
    CALL METHOD oref_detail_transfer->pbo.
    272
    ENDMODULE.                 " PBO_DETAIL_TRANSFER  OUTPUT
    273
    274
    *&      Module  PBO_BOM_POPUP  OUTPUT
    275
    276
    MODULE pbo_bom_popup OUTPUT.
    277
    CALL METHOD oref_bom->pbo.
    278
    ENDMODULE.                 " PBO_BOM_POPUP  OUTPUT
    279
    280
    *&      Module  PBO_DEFAULTS_LOOP  OUTPUT
    281
    282
    MODULE pbo_defaults_loop OUTPUT.
    283
    CALL METHOD oref_defaults->pbo_loop.
    284
    ENDMODULE.                 " PBO_DEFAULTS_LOOP  OUTPUT
    285
    286
    *&      Module  PBO_SEARCH_RES  OUTPUT
    287
    288
    MODULE pbo_search_res OUTPUT.
    289
    CALL METHOD oref_search->pbo.
    290
    ENDMODULE.                 " PBO_SEARCH_RES  OUTPUT
    291
    292
    *&      Module  PBO_DETAIL_RESERVATION  OUTPUT
    293
    294
    MODULE pbo_detail_reservation OUTPUT.
    295
    CALL METHOD oref_detail_reservation->pbo.
    >>>>>
    ENDMODULE.                 " PBO_DETAIL_RESERVATION  OUTPUT
    297
    298
    299
    *&      Module  PBO_DETAIL_TAKEIT  OUTPUT
    300
    301
    MODULE pbo_detail_takeit OUTPUT.
    302
    CALL METHOD oref_detail_takeit->pbo.
    303
    ENDMODULE.                 " PBO_DETAIL_TAKEIT  OUTPUT
    304
    305
    *&      Module  PBO_DETAIL_PARTNERS  OUTPUT
    306
    307
          Detail Tabstrip Partners
    308
    309
    MODULE pbo_detail_partners OUTPUT.
    310
    CALL METHOD oref_detail_partners->pbo.
    311
    ENDMODULE.                 " PBO_DETAIL_PARTNERS  OUTPUT
    312
    313
    *&      Module  PBO_DETAIL_DEST_SUB_SELECT  OUTPUT
    314
    315
    MODULE pbo_detail_dest_sub_select OUTPUT.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    0
    SY-DBCNT
    1
    SY-FDPOS
    40
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    MIGO_STATUS
    SY-UCOMM
    SY-TITLE
    Display Material Document 4901380914 - Ghazali Musa
    SY-MSGTY
    E
    SY-MSGID
    DA
    SY-MSGNO
    300
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    3 MODULE (PBO) SAPLMIGO                            LMIGOPBO                              296
    PBO_DETAIL_RESERVATION
    2 FUNCTION     SAPLMIGO                            LMIGOU02                              225
    MIGO_DIALOG
    1 EVENT        MB_CALL_MIGO_DIALOG                 MB_CALL_MIGO_DIALOG                    37
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       3 Ty.          MODULE (PBO)
    Name  PBO_DETAIL_RESERVATION
    %_DUMMY$$
    0000
    0000
    2222
    0000
    OREF_DETAIL_RESERVATION
    A0000005
    70000008
    No.       2 Ty.          FUNCTION
    Name  MIGO_DIALOG
    I_ACTION
    A04
    000
    000
    433
    104
    I_DEADEND
    X
    0
    0
    5
    8
    I_EBELN
    0000000000
    0000000000
    2222222222
    0000000000
    I_EBELP
    00000
    00000
    00000
    33333
    00000
    I_INBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    I_LEAVE_AFTER_POST
    0
    0
    2
    0
    I_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    I_MJAHR
    0000
    0000
    0000
    3333
    0000
    I_NEW_ROLLAREA
    0
    0
    2
    0
    I_NOTREE
    X
    0
    0
    5
    8
    I_NO_AUTH_CHECK
    0
    0
    2
    0
    I_OKCODE
    OK_GO
    00000000000000000000
    00000000000000000000
    44544222222222222222
    FBF7F000000000000000
    I_ORDER_ITEM
    0000
    0000
    0000
    3333
    0000
    I_ORDER_NUMBER
    000000000000
    000000000000
    222222222222
    000000000000
    I_OUTBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    I_REFDOC
    R02
    000
    000
    533
    202
    I_RESERVATION_ITEM
    0000
    0000
    0000
    3333
    0000
    I_RESERVATION_NUMB
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    I_SKIP_FIRST_SCREEN
    X
    0
    0
    5
    8
    I_SYTCODE
    /DBM/ORDER03
    00000000000000000000
    00000000000000000000
    24442454453322222222
    F42DFF24520300000000
    I_TRANSPORT
    0000000000
    0000000000
    2222222222
    0000000000
    I_TRANSPORTIDENT
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    I_TRANSPORT_MEANS
    0000
    0000
    2222
    0000
    I_ZEILE
    0000
    0000
    0000
    3333
    0000
    SY
    #######################(###############j#########(#################################(#### C####
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100
    0000000000000000000000020000000000000006000000000200000000000000000000000000010900020008240000
    000000010000000000000108010001000000000A0000000008000000000000000000000000000A000008000003000C
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_EBELP
    00000
    00000
    00000
    33333
    00000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    SPACE
    0
    0
    2
    0
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_MJAHR
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ZEILE
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORT
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ORDER_NUMBER
    000000000000
    000000000000
    222222222222
    000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ORDER_ITEM
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORT_MEANS
    0000
    0000
    2222
    0000
    RL50E
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORTIDENT
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_INBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_OUTBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_RESERVATION_NUMB
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_RESERVATION_ITEM
    0000
    0000
    0000
    3333
    0000
    SY-REPID
    SAPLMIGO
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454444422222222222222222222222222222222
    310CD97F00000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ACTIVE
    X
    0
    0
    5
    8
    ABAP_TRUE
    X
    0
    0
    5
    8
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_LEAVE_AFTER_POST
    0
    0
    2
    0
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_FIRST_ROUND
    0
    0
    2
    0
    GOSEARCH_RES
    00000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222333333332222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    No.       1 Ty.          EVENT
    Name  START-OF-SELECTION
    I_NOTREE
    X
    0
    0
    5
    8
    I_IN_DEL
    0000000000
    0000000000
    2222222222
    0000000000
    I_LEAVE_
    0
    0
    2
    0
    VARI
    ###00000000000000      ############
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222200033333333333333222222000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    I_MJAHR
    0000
    0000
    0000
    3333
    0000
    I_NEW_RO
    0
    0
    2
    0
    I_NO_AUT
    0
    0
    2
    0
    I_OKCODE
    OK_GO
    00000000000000000000
    00000000000000000000
    44544222222222222222
    FBF7F000000000000000
    %_I_ACTION_%_APP_%
    I_ACTION
    000000000000000000000000000000
    000000000000000000000000000000
    454454442222222222222222222222
    9F1349FE0000000000000000000000
    I_ORDERI
    0000
    0000
    0000
    3333
    0000
    I_ACTION
    A04
    000
    000
    433
    104
    I_ORDERN
    000000000000
    000000000000
    222222222222
    000000000000
    %_I_NOTREE_%_APP_%
    I_NOTREE
    000000000000000000000000000000
    000000000000000000000000000000
    454455442222222222222222222222
    9FEF42550000000000000000000000
    I_OUT_DE
    0000000000
    0000000000
    2222222222
    0000000000
    SY-XFORM
    CONVERSION_EXIT
    000000000000000000000000000000
    000000000000000000000000000000
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    I_REFDOC
    R02
    000
    000
    533
    202
    %_I_NO_AUT_%_APP_%
    I_NO_AUT
    000000000000000000000000000000
    000000000000000000000000000000
    454454552222222222222222222222
    9FEFF1540000000000000000000000
    I_RES_IT
    0000
    0000
    0000
    3333
    0000
    I_RES_NU
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    I_SKIP_F
    X
    0
    0
    5
    8
    I_SYTCOD
    /DBM/ORDER03
    00000000000000000000
    00000000000000000000
    24442454453322222222
    F42DFF24520300000000
    SY-LDBPG
    SAPDB__S
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454455522222222222222222222222222222222
    31042FF300000000000000000000000000000000
    I_TRANSP
    0000000000
    0000000000
    2222222222
    0000000000
    %_I_REFDOC_%_APP_%
    I_REFDOC
    000000000000000000000000000000
    000000000000000000000000000000
    455444442222222222222222222222
    9F2564F30000000000000000000000
    I_TR_IDE
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    I_TR_MEA
    0000
    0000
    2222
    0000
    I_ZEILE
    0000
    0000
    0000
    3333
    0000
    %_DUMMY$$
    0000
    0000
    2222
    0000
    %_I_SKIP_F_%_APP_%
    I_SKIP_F
    000000000000000000000000000000
    000000000000000000000000000000
    455445542222222222222222222222
    9F3B90F60000000000000000000000
    SY-REPID
    MB_CALL_MIGO_DIALOG
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    4454444544445444444222222222222222222222
    D2F31CCFD97FF491CF7000000000000000000000
    SY-SUBRC
    0
    0000
    0000
    %_SSCR[]
    Table IT_0[24x492]
    \PROGRAM=MB_CALL_MIGO_DIALOG\DATA=%_SSCR[]
    Table reference: 0
    TABH+  0(20) = C000000251801770000000000000000000000000
    TABH+ 20(20) = 000000000000000000000018000001ECFFFFFFFF
    TABH+ 40(16) = 04000000000003B000202CC021000000
    store        = 0xC000000251801770
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 0     (0x00000000)
    label        = 0     (0x00000000)
    fill         = 24    (0x00000018)
    leng         = 492   (0x000001EC)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000006
    occu         = 32    (0x00000020)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xC0000002518A66C0
    pghook       = 0x0000000000000000
    idxPtr       = 0xC000000251801B50
    refCount     = 2     (0x00000002)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 32    (0x00000020)
    lineAlloc    = 32    (0x00000020)
    store_id     = 2     (0x00000002)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    Internal notes
    The termination occurred in the function "dynpconv.c" of the SAP
    Basis System, specifically in line 701 of the module
    "//bas/640_REL/src/krn/dynp/dybas.c#5".
    The internal operation just processed is "ENDM".
    The internal session was started at 20071231174940.
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system ........ "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database user ID......... "SAPECP"
    triggers this error message.
    Screen name.............. "SAPLMIGO"
    Screen number............ 0370
    Screen field............. "GOITEM-VMENG"
    Error text............... "FX015: Sign lost."
    Additional data:
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system......... "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database user ID........ "SAPECP"
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (0)  0x40000000017dab60  CTrcStack2 + 0x1b0  [dw.sapECP_DVEBMGS10]
    (1)  0x40000000017da970  CTrcStack + 0x30  [dw.sapECP_DVEBMGS10]
    (2)  0x4000000002373150  Z16rabaxCStackSavev + 0x1d0  [dw.sapECP_DVEBMGS10]
    (3)  0x400000000236f3b0  ab_rabax + 0x2d20  [dw.sapECP_DVEBMGS10]
    (4)  0x40000000017efdf0  dyHandleError + 0x300  [dw.sapECP_DVEBMGS10]
    (5)  0x40000000018ec770  dypcnvoXt + 0x3410  [dw.sapECP_DVEBMGS10]
    (6)  0x40000000018e9330  dypcnvo + 0x30  [dw.sapECP_DVEBMGS10]
    (7)  0x40000000018b29c0  dynpdco0 + 0x1e0  [dw.sapECP_DVEBMGS10]
    (8)  0x40000000018b91c0  dynprctl + 0x390  [dw.sapECP_DVEBMGS10]
    (9)  0x40000000018a5c30  dynpen00 + 0x910  [dw.sapECP_DVEBMGS10]
    (10) 0x4000000001513620  Thdynpen00 + 0x460  [dw.sapECP_DVEBMGS10]
    (11) 0x40000000014e3b60  TskhLoop + 0x46d0  [dw.sapECP_DVEBMGS10]
    (12) 0x40000000014da820  tskhstart + 0x3a0  [dw.sapECP_DVEBMGS10]
    (13) 0x40000000013b6e50  DpMain + 0x490  [dw.sapECP_DVEBMGS10]
    (14) 0x40000000013b1b40  main + 0x70  [dw.sapECP_DVEBMGS10]
    (15) 0xc00000000002fb20  main_opd_entry + 0x50  [/usr/lib/hpux64/dld.so]
    List of ABAP programs affected
    Index
    Ty.
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    MB_CALL_MIGO_DIALOG
    0
    18.09.2001
    10:17:04
    55296
    E
    1
    Prg
    SAPMSSY0
    1
    10.08.2006
    17:27:06
    83968
    E
    2
    Prg
    SAPMSSYD
    1
    10.08.2006
    17:30:43
    20480
    E
    3
    Prg
    SAPFSYSCALLS
    1
    06.11.2003
    20:52:59
    7168
    E
    4
    Prg
    RSDBRUNT
    0
    12.11.2004
    14:03:37
    254976
    E
    5
    Typ
    RSSCR
    0
    : m:15
    5120
    6
    Prg
    RSDBSPBL
    0
    06.11.2003
    20:56:48
    72704
    E
    7
    Prg
    SAPDB__S
    0
    06.11.2003
    20:52:58
    18432
    E
    8
    Typ
    VARID
    0
    12.05.1997
    16:51:30
    5120
    9
    Prg
    %_CSYDB0
    0
    06.11.2003
    20:52:42
    35840
    E
    10
    Prg
    RSDBSPVA
    0
    10.08.2006
    17:09:03
    129024
    E
    11
    Typ
    RSVAMEMKEY
    0
    07.05.1997
    13:07:49
    2048
    12
    Prg
    RSDBSPMC
    0
    10.08.2006
    16:45:25
    78848
    E
    13
    Typ
    DDSHDESCR
    0
    03.09.1997
    03:05:16
    4096
    14
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    15
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    16
    Prg
    SAPLICON
    16
    12.11.2004
    13:50:21
    27648
    E
    17
    Prg
    %_CICON
    16
    16.03.2004
    20:13:52
    100352
    E
    18
    Prg
    SAPLSABE
    18
    06.11.2003
    20:53:04
    13312
    E
    19
    Prg
    SAPLSECU
    19
    10.08.2006
    17:27:59
    76800
    E
    20
    Typ
    RSSUBINFO
    0
    14.10.1999
    22:01:03
    3072
    21
    Typ
    RSEXFCODE
    0
    13.08.1997
    12:52:57
    2048
    22
    Prg
    SAPLDSYA
    22
    06.11.2003
    20:53:01
    45056
    E
    23
    Prg
    SAPFSDS1
    22
    06.11.2003
    20:53:24
    52224
    E
    24
    Typ
    TDCLD
    0
    02.11.1998
    09:51:35
    5120
    25
    Prg
    SAPLSDOD
    25
    10.08.2006
    17:29:56
    45056
    E
    26
    Typ
    DOKIL
    0
    12.05.1997
    16:46:17
    3072
    27
    Prg
    SAPCNVE
    27
    06.11.2003
    20:52:58
    8192
    E
    28
    Prg
    SAPLLANG
    28
    06.11.2003
    20:53:03
    10240
    E
    29
    Typ
    T002
    0
    14.02.1998
    10:24:58
    2048
    30
    Prg
    SAPFSPOR
    0
    11.08.2006
    10:35:34
    14336
    E
    31
    Typ
    RSPARINT
    0
    10.04.1995
    09:58:38
    2048
    32
    Prg
    SAPLKGJH
    32
    06.11.2003
    20:53:03
    10240
    E
    33
    Prg
    SAPLSCNT
    33
    06.11.2003
    20:53:04
    30720
    E
    34
    Typ
    DYCBOX
    0
    20.08.1998
    11:16:53
    3072
    35
    Prg
    SAPLSVSM
    35
    10.08.2006
    17:26:59
    29696
    E
    36
    Prg
    SAPLSGUI
    36
    12.11.2004
    13:59:56
    76800
    E
    37
    Prg
    SAPLSTTM
    37
    10.08.2006
    16:44:18
    86016
    E
    38
    Prg
    SAPLSBDC
    38
    10.08.2006
    16:54:12
    45056
    E
    39

    Hi,
    In the screen 370 of your module pool, go to the properties of the field which is having a negative value displayed.. (Ex: Currency fields), we see a text with all underscores. ___________
    Change it to _________V
    Remove last underscore and put V
    Hope it solves your problem.
    Regards
    Sailaja.

  • Getting dump error in Sales order creation mode while going to item texts

    Hi,
    I'm getting an ABAP dump error while going to item text tab in the creation mode of a sales order. This issue is happening only when we make a manual entry in the item text field for a particular text type Y011 in the preceding document of the sales order. Otherwise everything is working fine.
    When I checked the settings in SPRO under SD - Text Control - Sales Doc - Item, the definition and assignment for the TEXT type Y011 is maintained correctly. Not sure why the issue is happening only with this text type.
    Please assist. Thank you
    Taiseer

    Thank you for the reply.
    We had tried this already. However, since the error is with standard program with many function modules. They are finding it difficult.
    There is strange side also for this error that I missed to update. When I replace the Text Id Y011 with a new one it is taking me to the line item text tab with out any error even though I'm using the same access sequence and other settings. However, after saving the order and displaying the order number, immediately it is going to dump again.

  • PNP_Report(Showing ABAP Dump)

    hi,
    i have created one ALV report(using PNP Log. database)and using standard selection screen ..
    the problem i am having is in runtime it showing ABAP DUMP Error called "<b>NO_FIELDCATALOG_AVAILABLE</b>"..
    and also i am not able to Apply check on the selection field of the standard selection screen...
    so need help on that..plz ...i am new to PNP Stuff...
    thanks in advance...

    thanks for response..one more problem i am having is i am applying checks on Standard selection screen...can this can be done if yes then plz suggest how...
    and regarding my ABAP Dump problem if i Specify GET PERNR statement in <b>INTIALIZATION Event</b> then it ALV Report work fine..but not picking up the data from Standard Selection screen which is must..and if specify same GET PERNR in <b>Start-of-selection event</b> then it gives this ABAP DUMP <b>"NO_FIELDCATALOG_AVAILABLE"..</b>AND not PICKING up the data from selection screen..
    Plz suggest any help i will be greatfull to you..
    Thanks in advance....

Maybe you are looking for