Dump run time error "dbif_rsql_sql_error"

Hi guru's,
I have a genric data source with function module which feeds data to a genric ods in bw.
But at time of data upload i see quality status in manage of ods green saying (0 of 0 records extracted) but it asks me to check dump in st22 which is as follows
Runtime Errors     DBIF_RSQL_SQL_ERROR
Exception     CX_SY_OPEN_SQL_DB
       Occurred on     21.11.2006 at 23:57:48     
An SQL error occurred when accessing a table.
What happened?
What can you do?
Make a note of the actions and input which caused the error.
To resolve the problem, contact your SAP system administrator.
You can use transaction ST22 (ABAP Dump Analysis) to view and administer
termination messages, especially those beyond their normal deletion
date.
Error analysis
An exception occurred. This exception is dealt with in more detail below
. The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
neither
caught nor passed along using a RAISING clause, in the procedure
"ZL3_BW_SALES_ORDER_ITEM" "(FUNCTION)"
Since the caller of the procedure could not have expected this exception
to occur, the running program was terminated.
The reason for the exception is:
How to correct the error
The exception must either be prevented, caught within the procedure
"ZL3_BW_SALES_ORDER_ITEM"
"(FUNCTION)", or declared in the procedure's RAISING clause.
To prevent the exception, note the following:
Database error text........: "ORA-01555: snapshot too old: rollback segment
number 222 with name "_SYSSMU222$" too small"
Internal call code.........: "[RSQL/FTCH/VBAP ]"
Please check the entries in the system log (Transaction SM21).
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
use the following search criteria:
"DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC     
"SAPLZL3_BW_VARIANT" or "LZL3_BW_VARIANTU03"
"ZL3_BW_SALES_ORDER_ITEM"     
If you cannot solve the problem yourself, please send the     
following documents to SAP:
1. A hard copy print describing the problem.
   To obtain this, select the "Print" function on the current screen.
2. A suitable hardcopy prinout of the system log.
   To obtain this, call the system log with Transaction SM21
   and select the "Print" function to print out the relevant
   part.
3. If the programs are your own programs or modified SAP programs,
   supply the source code.
   To do this, you can either use the "PRINT" command in the editor or
   print the programs using the report RSINCL00.
4. Details regarding the conditions under which the error occurred
   or which actions and input led to the error.
System environment
SAP Release.............. "620"
Application server....... "wieap053"
Network address.......... "10.50.197.53"
Operating system......... "HP-UX"
Release.................. "B.11.23"
Hardware type............ "ia64"
Character length......... 8 Bits
Pointer length........... 64 Bits
Work process number...... 1
Short dump setting....... "full"
Database server.......... "wieap007"
Database type............ "ORACLE"
Database name............ "P00"
Database owner........... "SAPR3"
Character set............ "en_US.iso88591"
SAP kernel............... "640"
Created on............... "May 21 2006 20:37:10"
Created in............... "HP-UX B.11.23 U ia64"
Database version......... "OCI_920 "
Patch level.............. "129"
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"
User, transaction...
Client.............. 001
User................ "RFC_P92"
Language key........ "E"
Transaction......... " "
Program............. "SAPLZL3_BW_VARIANT"
Screen.............. "SAPMSSY0 1000"
Screen line......... 6
Information on where termination occurred
The termination occurred in the ABAP program "SAPLZL3_BW_VARIANT" in
"ZL3_BW_SALES_ORDER_ITEM".
The main program was "SBIE0001 ".
The termination occurred in line 240 of the source code of the (Include)
program "LZL3_BW_VARIANTU03"
of the source code of program "LZL3_BW_VARIANTU03" (when calling the editor
2400).
The program "SAPLZL3_BW_VARIANT" was started as a background job.
Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
the
procedure "ZL3_BW_SALES_ORDER_ITEM" "(FUNCTION)" but was not handled locally,
not declared in the
RAISING clause of the procedure.
The procedure is in the program "SAPLZL3_BW_VARIANT ". Its source code starts
in line 5
of the (Include) program "LZL3_BW_VARIANT$03 ".
Source code extract
002100                  a~werks
002110                  c~edatu
002120                  a~aedat
002130                  a~erdat
002140           FROM  ( vbap AS a
002150                   INNER JOIN vbak AS b
002160                     ON  a~vbeln = b~vbeln
002170                     AND b~vbtyp = 'W'                      "C0006-R2
002180                   INNER JOIN vbep AS c
002190                     ON  a~vbeln = c~vbeln
002200                     AND a~posnr = c~posnr
002210                     AND c~etenr = '1' )
002220           WHERE  a~vbeln IN
002230                ( SELECT objectid
002240                  FROM   cdhdr
002250                  WHERE  objectclas = 'VERKBELEG'
002260     *               AND    tcode      = 'VA02'
002270                  AND    udate     IN l_r_aedat )
002280           OR     a~erdat IN l_r_aedat.
002290
002300         ENDIF.                          "Full or Delta ?
002310       ENDIF.                             "First data package ?
002320
002330     * Fetch records into e_t_data
002340
002350         FETCH NEXT CURSOR s_cursor
002360                    INTO CORRESPONDING FIELDS
002370                    OF TABLE l_t_data
002380                    PACKAGE SIZE s_s_if-maxsize.
002390
     >       IF sy-subrc <> 0.
00241     0
002420         CLOSE CURSOR s_cursor.
002430
002440     ** Do not insert the upload date in the timestamp table when testing on
002450     ** the R/3 system
002460     *      IF  SY-TCODE <> 'RSA3'
002470     *      AND SY-TCODE <> 'RSO2'
002480     *      AND SY-TCODE <> 'SE37'
002490     *      AND I_READ_ONLY IS INITIAL.
002500     *
002510     *        ls_zl3_bw_timest-upload_date = sy-datum.
002520     *        ls_zl3_bw_timest-oltpsource  = s_s_if-dsource.
002530     *
002540     *        INSERT INTO zl3_bw_timest VALUES ls_zl3_bw_timest.
002550     *
002560     *      ENDIF.
002570
002580         RAISE no_more_data.
002590       ENDIF.
Contents of system fields
SY field          contents.....................          SY field          contents.....................
SY-SUBRC          0          SY-INDEX          1     
SY-TABIX      1     SY-DBCNT      1
SY-FDPOS      0     SY-LSIND      0
SY-PAGNO      0     SY-LINNO      1
SY-COLNO      1     SY-PFKEY     
SY-UCOMM     
SY-TITLE      Data extraction using SUBMIT_JOB as batch process
SY-MSGTY      E     SY-MSGID      BM
SY-MSGNO      026     SY-MSGV1     
SY-MSGV2          SY-MSGV3     
SY-MSGV4     
Active calls / events
No.... Type........ Name..........................
       Program
       Include                                  Line
       Class
     9 FUNCTION     ZL3_BW_SALES_ORDER_ITEM     
       SAPLZL3_BW_VARIANT
       LZL3_BW_VARIANTU03                         240
     8 FUNCTION     RSA3_GET_DATA_SIMPLE
       SAPLRSA3
       LRSA3U06                                    74
     7 FORM         EXTRACTOR_FETCH
       %_T002T1
       ???                                          0
     6 FORM         EXTRACT_EAPI_INTO_QUEUE
       %_T002T1
       ???                                          0
     5 FUNCTION     RSC1_DELTA_BIW_GET
       SAPLRSC1
       LRSC1U03                                   390
     4 FORM         DATA_TRANSFER
       GP3Z7WZZ1QZLIWHNBB8PBL5TTS7
       GP3Z7WZZ1QZLIWHNBB8PBL5TTS7                128
     3 FUNCTION     RSAP_DATA_TRANSFER
       SAPLRSAP
       LRSAPU06                                   137
     2 FUNCTION     RSAP_PERFORM_EXTRACTION
       SAPLRSAP
       LRSAPU19                                   135
     1 EVENT        START-OF-SELECTION
       SBIE0001
       SBIE0001                                    60
Chosen variables
     9 FUNCTION     ZL3_BW_SALES_ORDER_ITEM
       SAPLZL3_BW_VARIANT
       LZL3_BW_VARIANTU03                         240
I_DSOURCE          ZL3_BW_SALES_ORDER_ITEM     
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
I_INITFLAG          
                               2
                               0
I_MAXSIZE          050000
                               333333
                               050000
I_READ_ONLY          
                               2
                               0
I_REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
E_T_DATA[]          Table IT_1937[0x103]
I_T_FIELDS[]          Table IT_1917[13x30]
I_T_SELECT[]          Table IT_1916[1x123]
<%_TABLE_CDHDR>          ???
%_DUMMY$$          
                               2222
                               0000
SY-REPID          SAPLZL3_BW_VARIANT
                               5454543545554544452222222222222222222222
                               310CAC3F27F61291E40000000000000000000000
SYST-REPID          SAPLZL3_BW_VARIANT
                               5454543545554544452222222222222222222222
                               310CAC3F27F61291E40000000000000000000000
<%_TABLE_ZL3_VARIANT_CONF>          ???
L_R_AEDAT[]          Table IT_1938[1x19]
%_SPACE          
                               2
                               0
S_S_IF-MAXSIZE          050000
                               333333
                               050000
S_CURSOR          20
                               0001
                               0004
L_T_DATA[]          Table IT_1939[0x111]
SY-SUBRC          0
                               0000
                               0000
SY-UZEIT          220930
                               333333
                               220930
L_T_DATA                    00000000000000              ##
                               2222222222333333333333332222222222222200
                               0000000000000000000000000000000000000000
... +           40          ######
                               0000002222222222222222222222222222222222
                               00000C0000000000000000000000000000000000
... +           80                 000000000000000000000000
                               2222222333333333333333333333333
                               0000000000000000000000000000000
%_PRINT              001SBIE0001_RFC
                               2222333544433335544222222222222222222222
                               000000132950001F263000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80                   X8 ###A###PX_PAPER          DRF
                               2222222225320004000555545452222222222454
                               000000000880000100008F010520000000000426
... +          120          C_P92                             LIST1S
                               4553322222222222222222222222222222445535
                               3F09200000000000000000000000000000C93413
... +          160          TEXT        1 5D              2 ###Y
                               545522222222323422222222222222320015
                               4584000000001054000000000000002000E9
L_T_DATA-AEDAT          00000000
                               33333333
                               00000000
     8 FUNCTION     RSA3_GET_DATA_SIMPLE
       SAPLRSA3
       LRSA3U06                                    74
I_CHABASNM               
                               222222222222222222222222222222
                               000000000000000000000000000000
I_DATAPAKID          000000
                               333333
                               000000
I_INITFLAG          
                               2
                               0
I_ISOURCE          
                               222222222222222222222222222222
                               000000000000000000000000000000
I_MAXSIZE          000000
                               333333
                               000000
I_REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
I_RLOGSYS          
                               2222222222
                               0000000000
I_UPDMODE          
                               22
                               00
E_T_DATA[]          Table IT_1937[0x103]
I_T_FIELDS[]          Table[initial]
I_T_SELECT[]          Table[initial]
SY          ########################################
                               0000000000000000000000000000000000000000
                               000100000001000100000000000A000000000000
... +           40          ###############A#######P################
                               0000000000000004000000050000000000000001
                               0001000000010001000100000000000000000003
... +           80          ###################g####################
                               0000000000000000000600000000000000000000
                               0000000000000000000700000000000000000000
... +          120          #######################################T
                               0000000000000000000000000000000000010005
                               0000000000000000000000000000000000060004
... +          160          ################ u#############   E0X X1
                               0000000000000001270000000000000222435253
                               00000000000000E0050020000C0000C000508081
... +          200          000         ####__S                 001
                               3332222222220000555222222222222222223332
                               0000000000000000FF3000000000000000000010
... +          240               80
                               222223322222222
                               000008000000000
S_S_IF_SIMPLE-T_FIELDS          Table IT_1917[13x30]
S_S_IF_SIMPLE-T_SELECT          Table IT_1916[1x123]
G_T_FIELDS          Table[initial]
%_DUMMY$$          
                               2222
                               0000
G_S_RODCHABAS          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          160          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          200          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          240          
                               22222222222222
                               00000000000000
SY-REPID          SAPLRSA3
                               5454554322222222222222222222222222222222
                               310C231300000000000000000000000000000000
RSAL_S_LOGPARMS-MSGV2          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222
                               0000000000
G_T_LANGU          Table[initial]
E_T_DATA                    00000000000000              ##
                               2222222222333333333333332222222222222200
                               0000000000000000000000000000000000000000
... +           40          ######
                               0000002222222222222222222222222222222222
                               00000C0000000000000000000000000000000000
... +           80                 0000000000000000
                               22222223333333333333333
                               00000000000000000000000
S_S_IF_SIMPLE-INITFLAG          
                               2
                               0
S_FNAME          ZL3_BW_SALES_ORDER_ITEM
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
S_S_IF_SIMPLE-DSOURCE          ZL3_BW_SALES_ORDER_ITEM
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
SY-XFORM          CONVERSION_EXIT
                               444545544454545222222222222222
                               3FE65239FEF5894000000000000000
SY-XPROG          SAPCNVE
                               5454454222222222222222222222222222222222
                               3103E65000000000000000000000000000000000
S_S_IF_SIMPLE-MAXSIZE          050000
                               333333
                               050000
%_ARCHIVE          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          160          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          200          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          240          
                               222222222222222
                               000000000000000
S_S_IF_SIMPLE-REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
%_PRINT              001SBIE0001_RFC
                               2222333544433335544222222222222222222222
                               000000132950001F263000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80                   X8 ###A###PX_PAPER          DRF
                               2222222225320004000555545452222222222454
                               000000000880000100008F010520000000000426
... +          120          C_P92                             LIST1S
                               4553322222222222222222222222222222445535
                               3F09200000000000000000000000000000C93413
... +          160          TEXT        1 5D              2 ###Y
                               545522222222323422222222222222320015
                               4584000000001054000000000000002000E9
G_S_INTERFACE          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80                    000000   000000
                               2222222222333333222333333
                               0000000000000000000000000
SYST-REPID          SAPLRSA3
                               5454554322222222222222222222222222222222
                               310C231300000000000000000000000000000000
     7 FORM         EXTRACTOR_FETCH
       %_T002T1
       ???                                          0
SYST-REPID          %_T002T1     
                               2553335322222222222222222222222222222222
                               5F40024100000000000000000000000000000000
E_T_DATA          Table IT_1937[0x103]
SY-SUBRC          0
                               0000
                               0000
I_REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
SY-MSGV2          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222
                               0000000000
SY-MSGNO          026
                               333
                               026
%_DUMMY$$          
                               2222
                               0000
SY-REPID          %_T002T1
                               2553335322222222222222222222222222222222
                               5F40024100000000000000000000000000000000
     6 FORM         EXTRACT_EAPI_INTO_QUEUE
       %_T002T1
       ???                                          0
G_TABIX          1     
                               0000
                               0001
SY          ########################################
                               0000000000000000000000000000000000000000
                               000100000001000100000000000A000000000000
... +           40          ###############A#######P################
                               0000000000000004000000050000000000000001
                               0001000000010001000100000000000000000003
... +           80          ###################g####################
                               0000000000000000000600000000000000000000
                               0000000000000000000700000000000000000000
... +          120          #######################################T
                               0000000000000000000000000000000000010005
                               0000000000000000000000000000000000060004
... +          160          ################ u#############   E0X X1
                               0000000000000001270000000000000222435253
                               00000000000000E0050020000C0000C000508081
... +          200          000         ####__S                 001
                               3332222222220000555222222222222222223332
                               0000000000000000FF3000000000000000000010
... +          240               80
                               222223322222222
                               000008000000000
I_REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
L_T_DATA          Table IT_1937[0x103]
C_SUBRC          0
                               0000
                               0000
I_OSOURCE          ZL3_BW_SALES_ORDER_ITEM
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
%_ARCHIVE          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          160          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          200          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          240          
                               222222222222222
                               000000000000000
     5 FUNCTION     RSC1_DELTA_BIW_GET
       SAPLRSC1
       LRSC1U03                                   390
I_CHABASNM               
                               222222222222222222222222222222
                               000000000000000000000000000000
I_DATAPAKID          000000
                               333333
                               000000
I_INITFLAG          
                               2
                               0
I_ISOURCE          
                               222222222222222222222222222222
                               000000000000000000000000000000
I_MAXSIZE          000000
                               333333
                               000000
I_PRIVATE_MODE          
                               2222
                               0000
I_READ_ONLY          
                               2
                               0
I_REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
I_RLOGSYS          
                               2222222222
                               0000000000
I_UPDMODE          
                               22
                               00
E_T_DATA[]          Table IT_1926[0x103]
I_T_FIELDS[]          Table[initial]
I_T_SELECT[]          Table[initial]
SBIWA_C_FLAG_OFF          
                               2
                               0
L_PROGNAME          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
L_FUNCTION          /BIC/QIZL3_BW_SALES_ORD__10001
                               244425454354555444554545533333
                               F293F19AC3F27F31C53FF24FF10001
L_T_QRFCRCV          Table IT_1936[1x56]
L_SUBRC          0
                               0000
                               0000
S_READ_ONLY          
                               2
                               0
L_DELTA_TYPE          E
                               4222
                               5000
RSAOT_C_DELTA-OWN          E
                               4222
                               5000
SYST-REPID          SAPLRSC1
                               5454554322222222222222222222222222222222
                               310C233100000000000000000000000000000000
RSAOT_C_DELTA-ALE          A
                               4222
                               1000
L_NO_MORE_DATA          
                               2
                               0
L_UPDMODE          D
                               42
                               40
SBIWA_C_UPDMODE_DELTA          D
                               42
                               40
RSAL_SAVE_SUBRC          0
                               0000
                               0000
L_POOLNAME          %_T002T1
                               2553335322222222222222222222222222222222
                               5F40024100000000000000000000000000000000
S_S_ROIS-ISOURCE          ZL3_BW_SALES_ORDER_ITEM
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
G_FLAG_INTERFACE_INITIALIZED          X
                               5
                               8
<%_TABLE_ROOSPRMSC>          ???
%_SPACE          
                               2
                               0
SYST          ########################################
                               0000000000000000000000000000000000000000
                               000100000001000100000000000A000000000000
... +           40          ###############A#######P################
                               0000000000000004000000050000000000000001
                               0001000000010001000100000000000000000003
... +           80          ###################g####################
                               0000000000000000000600000000000000000000
                               0000000000000000000700000000000000000000
... +          120          #######################################T
                               0000000000000000000000000000000000010005
                               0000000000000000000000000000000000060004
... +          160          ################ u#############   E0X X1
                               0000000000000001270000000000000222435253
                               00000000000000E0050020000C0000C000508081
... +          200          000         ####__S                 001
                               3332222222220000555222222222222222223332
                               0000000000000000FF3000000000000000000010
... +          240               80
                               222223322222222
                               000008000000000
SBIW_C_TRUE          X
                               5
                               8
SY-REPID          SAPLRSC1
                               5454554322222222222222222222222222222222
                               310C233100000000000000000000000000000000
QS_NOSENDS          NOSENDS
                               44544452
                               EF35E430
     4 FORM         DATA_TRANSFER
       GP3Z7WZZ1QZLIWHNBB8PBL5TTS7
       GP3Z7WZZ1QZLIWHNBB8PBL5TTS7                128
SY-SUBRC          0     
                               0000
                               0000
SY-REPID          GP3Z7WZZ1QZLIWHNBB8PBL5TTS7
                               4535355535544544443544355532222222222222
                               703A77AA11AC978E22802C544370000000000000
SPACE          
                               2
                               0
SYST-REPID          GP3Z7WZZ1QZLIWHNBB8PBL5TTS7
                               4535355535544544443544355532222222222222
                               703A77AA11AC978E22802C544370000000000000
%_DUMMY$$          
                               2222
                               0000
P_S_REQUEST-UPDMODE          D
                               42
                               40
SBIWA_C_UPDMODE_DELTA          D
                               42
                               40
SBIWA_C_UPDMODE_REPEAT          R
                               52
                               20
SRSC_C_UPDMODE_INITSIMU          S
                               52
                               30
SBIWA_C_UPDMODE_DELTAINIT          C
                               42
                               30
%_ARCHIVE          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          160          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          200          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          240          
                               222222222222222
                               000000000000000
L_FNAME          RSC1_DELTA_BIW_GET
                               554354445454455445222222222222
                               2331F45C41F297F754000000000000
P_S_REQUEST-REQUNR          REQU_43VWUSBH207E5H8W64KGNKSPN
                               545553355554433343435334444554
                               2515F436753282075588764B7EB30E
RODKYF          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          160          
                               22222222
                               00000000
L_T_ZL3_SALES          Table IT_1926[0x103]
ROISGEN          ZL3_BW_SALES_ORDER_ITEM       PHD00
                               5435455544455454455454422222225443322222
                               AC3F27F31C53FF2452F945D00000000840000000
... +           40          PBW82     T                           /B
                               5453322222522222222222222222222222222224
                               02782000004000000000000000000000000000F2
... +           80          IC/CCPB0000000766           3Z7WZZ1QZLIW
                               4424454333333333322222222222353555355445
                               93F33020000000766000000000003A77AA11AC97
... +          120          HNBB8PBL5TTS7
                               4444354435553222222222222222222222222222
                               8E22802C54437000000000000000000000000000
... +          160                                           RFC_P92
                               2222222222222222222222222222222225445533
                               000000000000000000000000000000000263F092
... +          200               20060322161543            000000000
                               2222233333333333333222222222222333333333
                               0000020060322161543000000000000000000000
... +          240          00000
                               33333
                               00000
ROIST          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +          120          
                               2222222222222222222222222222222
                               0000000000000000000000000000000
%_PRINT              001SBIE0001_RFC
                               2222333544433335544222222222222222222222
                               000000132950001F263000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80                   X8 ###A###PX_PAPER          DRF
                               2222222225320004000555545452222222222454
                               000000000880000100008F010520000000000426
... +          120          C_P92                             LIST1S
                               4553322222222222222222222222222222445535
                               3F09200000000000000000000000000000C93413
... +          160          TEXT        1 5D              2 ###Y
                               545522222222323422222222222222320015
                               4584000000001054000000000000002000E9
     3 FUNCTION     RSAP_DATA_TRANSFER
       SAPLRSAP
       LRSAPU06                                   137
I_ISOURCE          ZL3_BW_SALES_ORDER_ITEM     
                               543545554445545445545442222222
                               AC3F27F31C53FF2452F945D0000000
I_S_REQUEST          REQU_43VWUSBH207E5H8W64KGNKSPNDZL3_BW_SA
                               5455533555544333434353344445544543545554
                               2515F436753282075588764B7EB30E4AC3F27F31
... +           40          LES_ORDER_ITEM       20061121210928RFC_B
                               4455454455454422222223333333333333354454
                               C53FF2452F945D000000020061121210928263F2
... +           80          W      PHD00     PBW82     000000D T  X
                               5222222544332222254533222223333334252252
                               7000000084000000002782000000000004040080
... +          120          X
                               5
                               8
I_T_SELECT          Table IT_57[0x123]
RODIOBJCMP                                        0000
                               2222222222222222222222222222223333222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           80          
                               22222222222222
                               00000000000000
L_S_LOGPARMS-MSGV3          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222
                               0000000000
RODCHA          
                               2222222222222222222222222222222222222222
                               0000000000000000000000000000000000000000
... +           40          
                               2222222222222222222222222

Tell your basis guys
"ORA-01555: snapshot too old: rollback segment"
ie the job took too long for the current settings you have for rollbacks
They will adjust the settings

Similar Messages

  • Run time Error DBIF_RSQL_SQL_ERROR while logging and executing some tcodes

    Hi all,
    Hi all,
    When i try to login into my system (ECC 6.0 with Oracle DB), i have been directed to dump -->
    Runtime Errors DBIF_RSQL_SQL_ERROR
    Except. CX_SY_OPEN_SQL_DB
    Short text
    SQL error in the database when accessing a table.
    Missing RAISING Clause in Interface
    Program SAPFSDS1
    Include FSDS1E01
    Row 365
    Module type (FORM)
    Module Name TRANSFORM_NEW_OLD
    Trigger Location of Exception
    Program SAPFSDS1
    Include FSDS1E01
    Row 380
    Module type (FORM)
    Module Name TRANSFORM_NEW_OLD
    In the source code the the cause for the error is shown in the below line"
    SELECT SINGLE * FROM TDCLD
    WHERE DOKCLASS EQ DOKCLASS.
    "How to correct the error"
    Database error text........: "ORA-32255: Message 32255 not found;
    product=RDBMS; facility=ORA#"
    Internal call code.........: "RSQL/READ/TDCLD "
    Please check the entries in the system log (Transaction SM21).
    If the error occures in a non-modified SAP program, you may be abl
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the follo
    keywords:
    "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
    "SAPFSDS1" or "FSDS1E01"
    "TRANSFORM_NEW_OLD"
    When i tried to look for the error ORA-32255, i am unable to get any information regarding this?
    Could you please suggest me..
    I have made the following changes trying to solve the error:
    shared_pool_size = 401832601 and
    i have executed sql command --> alter system set "_object_statistics"=false scope=spfile;
    Message from Alert Log file:
    Incremental checkpoint up to RBA [0x1076.10c61.0], current log tail at RBA [0x1076.10e4d.0]
    Message from dev_w0 file:
    OCI-call failed with -1=OCI_ERROR
    C SQL error 32255: 'ORA-32255: Message 32255 not found; product=RDBMS; facility=ORA
    C '
    C *** ERROR => Error 32255 in stmt_fetch() from oci_execute_stmt(), orpc=0
    [dbsloci.c 12720]
    C *** ERROR => ORA-32255 occurred when executing SQL stmt (parse error offset=0)
    [dbsloci.c 12739]
    C sc_p&H05B11F10,no&H110,idc_p&H00000000,con=0,act=1,sle n&H103,smax&H256,#vars=2,stmt
    8718D8,table=ATAB
    C SELECT "TABNAME" , "VARKEY" , "DATALN" , "VARDATA" FROM "ATAB" WHERE "TABNAME" = :A0 AND "VARKEY" = \
    C :A1;
    C sc_p&H05B11F10,no&H110,idc_p&H00000000,con=0,act=1,sle n&H103,smax&H256,#vars=2,stmt
    8718D8,table=ATAB
    C prep=0,lit=0,nsql=0,lobret=0,#exec=1,dbcnt=0,upsh_p &H00000000,ocistmth_p
    872784
    C IN : cols=2,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=-1,rs ize&H28,vmax&H32,bound=1,iobuf_p&H05BF4F28,vda_p
    873CA8
    C lobs=0,lmax=0,lpcnt=0,larr&H00000000,lcurr_p&H0000000 0,rret=0
    C OUT: cols=4,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=0,upto=-1,rs ize&H124,vmax&H32,bound=1,iobuf_p&H05BEBAF8,vda_p
    874118
    C lobs=0,lmax=0,lpcnt=0,larr&H00000000,lcurr_p&H0000000 0,rret=0
    C SELECT "TABNAME" , "VARKEY" , "DATALN" , "VARDATA" FROM "ATAB" WHERE "TABNAME" = :A0 AND "VARKEY" = \
    C :A1;
    B ***LOG BY4=> sql error 32255 performing SEL on table ATAB [dbtran#11 @ 7512] [dbtran 7512 ]
    B ***LOG BY0=> ORA-32255: Message 32255 not found; product=RDBMS; facility=ORA
    [dbtran#11 @ 7512] [dbtran 7512 ]
    B dbtran ERROR LOG (hdl_dbsl_error): DbSl 'SEL'
    B RSLT: {dbsl=99, tran=1}
    B FHDR: {tab='ATAB', fcode&H17, mode=2, bpb=0, dbcnt=0, crsr=0,
    B hold=0, keep=0, xfer=0, pkg=0, upto=0, init:b=0,
    B init:p&H00000000, init:#=0, wa:p=0X031902F0, wa:#&H15000}
    B dbtran ERROR LOG (hdl_dbsl_error): DbSl 'SEL'
    B STMT:
    B CRSR: {tab='', id=0, hold=0, prop=0x80000, max.in@0=1, fae:blk=0,
    B con:id=0, con:vndr=5, val=2,
    B key:#=2, xfer=0, xin:#=1, row:#=0, upto=1, wa:p=0X031902F0}
    A TH VERBOSE LEVEL FULL
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A ** RABAX: level LEV_RX_ROLLBACK entered.
    A ** RABAX: level LEV_RX_ROLLBACK completed.
    A ** RABAX: level LEV_RX_DB_ALIVE entered.
    A ** RABAX: level LEV_RX_DB_ALIVE completed.
    A ** RABAX: level LEV_RX_HOOKS entered.
    A ** RABAX: level LEV_RX_HOOKS completed.
    A ** RABAX: level LEV_RX_STANDARD entered.
    A ** RABAX: level LEV_RX_STANDARD completed.
    A ** RABAX: level LEV_RX_STOR_VALUES entered.
    A ** RABAX: level LEV_RX_STOR_VALUES completed.
    A ** RABAX: level LEV_RX_C_STACK entered.
    A ** RABAX: level LEV_RX_C_STACK completed.
    A ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_INTERFACES entered.
    A ** RABAX: level LEV_RX_INTERFACES completed.
    A ** RABAX: level LEV_RX_GET_MESS entered.
    A ** RABAX: level LEV_RX_GET_MESS completed.
    A ** RABAX: level LEV_RX_INIT_SNAP entered.
    A ** RABAX: level LEV_RX_INIT_SNAP completed.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A ** RABAX: level LEV_SN_END completed.
    A ** RABAX: level LEV_RX_SET_ALERT entered.
    A ** RABAX: level LEV_RX_SET_ALERT completed.
    A ** RABAX: level LEV_RX_COMMIT entered.
    A ** RABAX: level LEV_RX_COMMIT completed.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A ** RABAX: level LEV_RX_RESET_PROGS entered.
    A ** RABAX: level LEV_RX_RESET_PROGS completed.
    A ** RABAX: level LEV_RX_STDERR entered.
    A Sun Apr 05 22:38:04 2009
    A
    A ABAP Program SAPFSDS1 .
    A Source FSDS1E01 Line 380.
    A Error Code DBIF_RSQL_SQL_ERROR.
    A Module $Id: //bas/700_REL/src/krn/runt/absapsql.c#9 $ SAP.
    A Function HandleRsqlErrors Line 778.
    A ** RABAX: level LEV_RX_STDERR completed.
    A ** RABAX: level LEV_RX_RFC_ERROR entered.
    A ** RABAX: level LEV_RX_RFC_ERROR completed.
    A ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A ** RABAX: level LEV_RX_IMC_ERROR entered.
    A ** RABAX: level LEV_RX_IMC_ERROR completed.
    A ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A ** RABAX: level LEV_RX_END entered.
    A ** RABAX: level LEV_RX_END completed.
    A ** RABAX: end no http/smtp
    A ** RABAX: end RX_BTCHLOG|RX_VBLOG
    A SQL error in the database when accessing a table..
    A
    I have started the local client copy and have stopped it in the middle. i have logged off and tried to login again, this is the start of the dump.
    I am unable to resolve it. PLEASE give a solution
    Thanks & Regards,
    Subbu.

    Hi Subbu,
    We were in touch when you previously posted this, but somehow I got an error when I tried to access the thread. I remember that your DB was still 10.2.0.1 and that this may have caused a corruption. The only explanation for ORA-32255 that looks remotely interesting is that it may occur with the OCI (Oracle Call Interface) accessing a NULL LOB (and ATAB does contain a LOB field). Do you have any chance of upgrading the database where you have the problem to 10.2.0.4?
    I don't know whether we'll learn anything useful from this (you might just get an ORA-32255 again) but could you execute the following statement in SQLPLUS:
    select count(*) from <sapuser>.ATAB where VARDATA IS NULL;
    (replace <sapuser> with the name of the SAP schema owner)
    Regards,
    Mark

  • While doing SO, im getting run time error - reg;

    Hi,
    While doing sales order and whenever im doing save its  getting runtime error.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          14.12.2011 10:55:26
    Short dump has not been completely stored (too big)
    Short text
        The current application triggered a termination with a short dump.
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    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
        Short text of error message:
        Maintain the current CRM release (table CRMPAROLTP)
        Long text of error message:
         Diagnosis
             Various transfer errors occur when transferring SAP sales orders to
             CRM or there is no status update or the status update has errors
             when transferring from CRM to the SAP system. This is caused by an
             incorrect entry for the CRM release in the SAP table CRMPAROLTP, or
             no entry is maintained at all.
         System Response
             To avoid data inconsistencies, this message causes a short dump.
         Procedure
             Maintain table CRMPAROLTP in your SAP system as is described in SAP
             Note 691710 and then repeat the process again.
         Procedure for System Administration
        Technical information about the message:
        Message class....... "V3"
        Number.............. 302
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          14.12.2011 10:55:26
    hort dump has not been completely stored (too big)
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "MESSAGE_TYPE_X" " "
        "SAPMV45A" or "MV45AF0B_BAPIDATEN_ERMITTELN"
        "BAPIDATEN_ERMITTELN"
        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 700
        Application server... "personal"
        Network address...... "192.168.2.11"
        Operating system..... "Windows NT"
        Release.............. "5.2"
        Hardware type........ "4x Intel 80686"
        Character length.... 16 Bits
        Pointer length....... 32 Bits
        Work process number.. 1
        Shortdump setting.... "full"
        Database server... "PERSONAL"
        Database type..... "ORACLE"
        Database name..... "GCU"
        Database user ID.. "SAPSR3"
        Char.set.... "C"
        SAP kernel....... 700
        created (date)... "Aug 29 2006 00:18:21"
        create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
        Database version. "OCI_10201_SHARE (10.2.0.1.0) "
        Patch level. 75
        Patch text.. " "
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          14.12.2011 10:55:26
    hort dump has not been completely stored (too big)
        Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
        SAP database version. 700
        Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
        Memory consumption
        Roll.... 8176
        EM...... 30311496
        Heap.... 0
        Page.... 139264
        MM Used. 14538320
        MM Free. 91952
    User and Transaction
        Client.............. 100
        User................ "INFO_SD"
        Language key........ "E"
        Transaction......... "VA01 "
        Program............. "SAPMV45A"
        Screen.............. "SAPMV45A 4001"
        Screen line......... 65
    Information on where terminated
        Termination occurred in the ABAP program "SAPMV45A" - in "BAPIDATEN_ERMITTELN".
        The main program was "SAPMV45A ".
        In the source code you have the termination point in line 338
        of the (Include) program "MV45AF0B_BAPIDATEN_ERMITTELN".
    Edited by: kiran35086 on Dec 14, 2011 6:30 AM

    Dear  kiran,
    This might be many reasons.If you have not done  configuration properly system will take you to dump(Run time error).
    Try read the diagnosis possibly you may understand the problem.
    If not You coordinate with your technical team.
    Thanks&Regards
    Raghu.k

  • Run-time error "CONVERSION_CODEPAGE_UNKNOWN" occurred in BW SapNetweaver.

    Today I have problem with this error dump: Run-time error "CONVERSION_CODEPAGE_UNKNOWN"
    I got this problem from rspc chain manager but also from another place as place a filter on table VARI.
    I suspect that this include "IMPORT_VARIANT_STATIC" got problem of the (Include)
    program "RSDBSPVD".
    This is first time that I got this error.
    I think problem was linked to VARI tables and include IMPORT_VARIANT_STATIC in this program RSDBSPVD
    Runtime Errors         CONVERSION_CODEPAGE_UNKNOWN
    Date and Time          03.06.2008 14:27:46
    |Short text                                                                               
    |    Unable to convert from code page ' ' to code page '4103'.      |What happened?                                                               
    Error in the ABAP Application Program                                                  
    The current ABAP program "RSDBSPVD" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    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
    One of your chosen conversion tables (CODE PAGE) ' ' or '4103'
    is unknown to the system.
    For a list of conversion tables known to the system, see table
    |    TCP00. To display this, use Transaction SPAD.         
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    4 FORM         RSDBSPVD                            RSDBSPVD                              119
    IMPORT_VARIANT_STATIC
    3 FORM         SAPLSVAR                            LSVARF07                              522
    IMPORT_VAR_SELC
    2 FUNCTION     SAPLSVAR                            LSVARU07                               80
    RS_VARIANT_CONTENTS
    1 EVENT        RS_VARIANT_VALUES                   RS_VARIANT_VALUES                      22
    |      START-OF-SELECTION

    Sorry, but my Sap Netweaver 2004s is a build 700.
    I'm manually imported this table, before I exported table VARI from an old database of this istance. (db2 dart /ddel 'table space number' 'table id number')
    log about vari import table:
    SQL3501W  The table space(s) in which the table resides will not be placed in
    backup pending state since forward recovery is disabled for the database.
    SQL3109N  The utility is beginning to load data from file
    "D:db2BW2db2dumpDART000025".
    SQL3500W  The utility is beginning the "LOAD" phase at time "05/29/2008
    18:56:04.266758".
    SQL3519W  Begin Load Consistency Point. Input record count = "0".
    SQL3520W  Load Consistency Point was successful.
    SQL3114W  Some data following """" in row "F0-1242" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-1243" and column "10" was not
    loaded.
    SQL3227W  Record token "F0-1242" refers to user record number "6536".
    SQL3227W  Record token "F0-1243" refers to user record number "6537".
    SQL3114W  Some data following """" in row "F0-1958" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-1959" and column "10" was not
    loaded.
    SQL3114W  Some data following "u0178õ o½@: s]ªÂÅúõB'r" in row "F0-1959" and
    column "11" was not loaded.
    SQL3114W  Some data following """" in row "F0-1969" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-1974" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1634" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1981" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1982" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1983" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1995" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1996" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-1998" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2009" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2010" and column "10" was not
    loaded.
    SQL3114W  Some data following "u0178õ o½@: s]ªÂÅúõB'r" in row "F1-2010" and
    column "11" was not loaded.
    SQL3114W  Some data following """" in row "F1-2012" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2023" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2026" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2037" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2040" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2051" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2052" and column "10" was not
    loaded.
    SQL3114W  Some data following "u0178õ o½@: s]ªÂÅúõB'r" in row "F1-2052" and
    column "11" was not loaded.
    SQL3114W  Some data following """" in row "F1-2054" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2065" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2066" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2068" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2079" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-2082" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2240" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2243" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2253" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2254" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2255" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2266" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2267" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2269" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2280" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2281" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F0-2282" and column "10" was not
    loaded.
    SQL3227W  Record token "F0-1958" refers to user record number "11636".
    SQL3227W  Record token "F0-1959" refers to user record number "11637".
    SQL3227W  Record token "F0-1969" refers to user record number "11647".
    SQL3227W  Record token "F0-1974" refers to user record number "11652".
    SQL3227W  Record token "F1-1634" refers to user record number "11661".
    SQL3227W  Record token "F0-2240" refers to user record number "14014".
    SQL3227W  Record token "F0-2243" refers to user record number "14017".
    SQL3227W  Record token "F0-2253" refers to user record number "14027".
    SQL3227W  Record token "F0-2254" refers to user record number "14028".
    SQL3227W  Record token "F0-2255" refers to user record number "14029".
    SQL3227W  Record token "F0-2266" refers to user record number "14040".
    SQL3227W  Record token "F0-2267" refers to user record number "14041".
    SQL3227W  Record token "F0-2269" refers to user record number "14043".
    SQL3227W  Record token "F0-2280" refers to user record number "14054".
    SQL3227W  Record token "F0-2281" refers to user record number "14055".
    SQL3227W  Record token "F0-2282" refers to user record number "14056".
    SQL3227W  Record token "F1-1981" refers to user record number "14068".
    SQL3227W  Record token "F1-1982" refers to user record number "14069".
    SQL3227W  Record token "F1-1983" refers to user record number "14070".
    SQL3227W  Record token "F1-1995" refers to user record number "14082".
    SQL3227W  Record token "F1-1996" refers to user record number "14083".
    SQL3227W  Record token "F1-1998" refers to user record number "14085".
    SQL3227W  Record token "F1-2009" refers to user record number "14096".
    SQL3227W  Record token "F1-2010" refers to user record number "14097".
    SQL3227W  Record token "F1-2012" refers to user record number "14099".
    SQL3227W  Record token "F1-2023" refers to user record number "14110".
    SQL3227W  Record token "F1-2026" refers to user record number "14113".
    SQL3227W  Record token "F1-2037" refers to user record number "14124".
    SQL3227W  Record token "F1-2040" refers to user record number "14127".
    SQL3227W  Record token "F1-2051" refers to user record number "14138".
    SQL3227W  Record token "F1-2052" refers to user record number "14139".
    SQL3227W  Record token "F1-2054" refers to user record number "14141".
    SQL3227W  Record token "F1-2065" refers to user record number "14152".
    SQL3227W  Record token "F1-2066" refers to user record number "14153".
    SQL3227W  Record token "F1-2068" refers to user record number "14155".
    SQL3227W  Record token "F1-2079" refers to user record number "14166".
    SQL3227W  Record token "F1-2082" refers to user record number "14169".
    SQL3114W  Some data following """" in row "F1-9602" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F1-9603" and column "10" was not
    loaded.
    SQL3114W  Some data following "u0178õ o½@: s]ªÂÅúõB'r" in row "F1-9603" and
    column "11" was not loaded.
    SQL3114W  Some data following """" in row "F1-9612" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-9374" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-9375" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-9383" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-9397" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-9410" and column "10" was not
    loaded.
    SQL3227W  Record token "F1-9602" refers to user record number "66049".
    SQL3227W  Record token "F1-9603" refers to user record number "66050".
    SQL3227W  Record token "F1-9612" refers to user record number "66059".
    SQL3227W  Record token "F2-9374" refers to user record number "66063".
    SQL3227W  Record token "F2-9375" refers to user record number "66064".
    SQL3227W  Record token "F2-9383" refers to user record number "66072".
    SQL3227W  Record token "F2-9397" refers to user record number "66086".
    SQL3227W  Record token "F2-9410" refers to user record number "66099".
    SQL3114W  Some data following """" in row "F2-11966" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-11969" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-12580" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F2-12581" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12270" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12273" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12274" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12283" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12286" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12287" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12295" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12299" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12300" and column "10" was not
    loaded.
    SQL3114W  Some data following """" in row "F3-12308" and column "10" was not
    loaded.
    SQL3227W  Record token "F2-11966" refers to user record number "83492".
    SQL3227W  Record token "F2-11969" refers to user record number "83495".
    SQL3227W  Record token "F2-12580" refers to user record number "86221".
    SQL3227W  Record token "F2-12581" refers to user record number "86222".
    SQL3227W  Record token "F3-12270" refers to user record number "86232".
    SQL3227W  Record token "F3-12273" refers to user record number "86235".
    SQL3227W  Record token "F3-12274" refers to user record number "86236".
    SQL3227W  Record token "F3-12283" refers to user record number "86245".
    SQL3227W  Record token "F3-12286" refers to user record number "86248".
    SQL3227W  Record token "F3-12287" refers to user record number "86249".
    SQL3227W  Record token "F3-12295" refers to user record number "86257".
    SQL3227W  Record token "F3-12299" refers to user record number "86261".
    SQL3227W  Record token "F3-12300" refers to user record number "86262".
    SQL3227W  Record token "F3-12308" refers to user record number "86270".
    SQL3110N  The utility has completed processing.  "1053698" rows were read from
    the input file.
    SQL3519W  Begin Load Consistency Point. Input record count = "1053698".
    SQL3520W  Load Consistency Point was successful.
    SQL3515W  The utility has finished the "LOAD" phase at time "05/29/2008
    18:56:18.932604".
    SQL3500W  The utility is beginning the "BUILD" phase at time "05/29/2008
    18:56:18.936928".
    SQL3213I  The indexing mode is "REBUILD".
    SQL3515W  The utility has finished the "BUILD" phase at time "05/29/2008
    18:56:24.684630".
    SQL3107W  There is at least one warning message in the message file.
    Number of rows read         = 1053698
    Number of rows skipped      = 0
    Number of rows loaded       = 1053698
    Number of rows rejected     = 0
    Number of rows deleted      = 0
    Number of rows committed    = 1053698
    Do you think that convert codepage errore is due to this warning message?

  • Run time error (short dump) executing program SCAN_BW_REFERENCES in SE80

    Hi experts,
    I am not an ABAPer, or Basis person, rather a hybrid functional/technical Key User for our Business Warehouse system (BW 3.5, Netweaver 2004).  We have a user who cannot save BW reports to his favorites and he is getting a number of error messages.  OSS note 887002 seems to address this and indicates that I should run program SCAN_BW_REFERENCES from transaction SE80.  The program is supposed to perform the checks for BW objects assigned to the Favorites and identify situations causing terminations in BW frontend applications.  I have attempted to execute this program on several occassions and always get run-time errors (short dumps).  Here is the error:
    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED
    Date and Time          2008.09.17 19:00:49
    ShrtText
         No storage space available for extending an internal table.
    What happened?
         You attempted to extend an internal table, but the required space was
         not available.
    I have been informed by our Basis group that I have reached a memory limit, but they will not extend the memory paramters.  Any ideas on a work-a-round or a way to minimize the number of records this program is pulling in, in an attempt to get it to run?
    Thanks,
    HC

    Hi,
    The only response I got from Basis was that they would not extend the memory parameters because they are for all users in the system.  Not sure what that means. 
    The full dump is too large to paste here.  I think what I will do is to see if our ABAPers can create a modified version of this program to include selection by user.  Typically it is for only one user that I need to run the program, and that surely would fall within the space requirements.
    Thanks for your answer.
    //HC

  • Run time error

    Dear All,
    During the transaction /n/sapapo/ccr (Reconsilation of transaction data) in client SCP 950, system displays the run time error which are attached herewith.
    This is the activity a used to execute regularly (Daily) and first time i recieved this message - -
    Runtime Errors         ASSERTION_FAILED                                                            
    Date and Time          13.07.2007 10:13:37                                                         
    ShrtText                                                                               
    The ASSERT condition has been violated.                                                       
    What happened?                                                                               
    In the current application program, the system recognized a situation                         
        involving the ASSERT statement that should not occur. A runtime error                         
        occurred, either because there was no activation ID entered or because                        
        the ID of the activation mode used was set to "Cancel.                                        
    What can you do?                                                                               
    Print out the error message (using the "Print" function)                                      
        and make a note of the actions and input that caused the                                      
        error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                
        You can use transaction ST22 (ABAP Dump Analysis) to view and administer                      
         termination messages, especially those beyond their normal deletion                          
        date.                                                                               
    is especially useful if you want to keep a particular message.                                                                               
    Error analysis                                                                               
    The following activation ID was used: "No checkpoint group specified"                                                                               
    If the FIELDS addition was used with this ASSERT statement, the content                       
        of the first 8 fields is as follows:                                                          
        " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    " (not used) "                                                                               
    How to correct the error                                                                               
    Probably the only way to eliminate the error is to correct the program.                                                                               
    You may able to find an interim solution to the problem                                       
        in the SAP note system. If you have access to the note system yourself,                       
        use the following search criteria:                                                                               
    "ASSERTION_FAILED" C                                                                               
    "/SAPAPO/SAPLTIMESTAMP" or "/SAPAPO/LTIMESTAMPU08"                                            
        "/SAPAPO/TIMESTAMP_DIFFERENCE"                                                                
        If you cannot solve the problem yourself and you wish to send                                 
        an error message to SAP, include the following documents:                                                                               
    1. A printout of the problem description (short dump)                                         
           To obtain this, select in the current display "System->List->                              
           Save->Local File (unconverted)".                                                                               
    2. A suitable printout of the system log                                                      
           To obtain this, call the system log through transaction SM21.                              
           Limit the time interval to 10 minutes before and 5 minutes                                 
           after the short dump. In the display, then select the function                             
           "System->List->Save->Local File (unconverted)".                                                                               
    3. If the programs are your own programs or modified SAP programs,                            
           supply the source code.                                                                    
           To do this, select the Editor function "Further Utilities->                                
           Upload/Download->Download".                                                                               
    4. Details regarding the conditions under which the error occurred                            
           or which actions and input led to the error.                                               
    System environment                                                                               
    SAP Release.............. "640"                                                                               
    Application server....... "scmprd"                                                            
        Network address.......... "172.16.10.47"                                                      
        Operating system......... "AIX"                                                               
        Release.................. "5.3"                                                               
        Hardware type............ "0002BFAAD700"                                                      
        Character length......... 16 Bits                                                             
        Pointer length........... 64 Bits                                                             
        Work process number...... 0                                                                   
        Short dump setting....... "full"                                                                               
    Database server.......... "scmprd"                                                            
        Database type............ "ORACLE"                                                            
        Database name............ "SCP"                                                               
        Database owner........... "SAPSCP"                                                                               
    Character set............ "C"                                                                               
    SAP kernel............... "640"                                                               
        Created on............... "Jan 18 2006 20:47:39"                                              
        Created in............... "AIX 1 5 00538A4A4C00"                                              
        Database version......... "OCI_920 "                                                                               
    Patch level.............. "109"                                                               
        Patch text............... " "                                                                               
    Supported environment....                                                                     
        Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE                        
         10.2.0.."                                                                               
    SAP database version..... "640"                                                               
        Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"                                                                               
    Memory usage.............                                                                     
        Roll..................... 16192                                                               
        EM....................... 196923232                                                           
        Heap..................... 0                                                                   
        Page..................... 98304                                                               
        MM Used.................. 186636840                                                           
        MM Free.................. 1895288                                                             
        SAP Release.............. "640"                                                                               
    User and Transaction                                                                               
    Client.............. 950                                                                      
        User................ "SCMATP"                                                                 
        Language key........ "E"                                                                      
        Transaction......... "/SAPAPO/CCR "                                                           
        Program............. "/SAPAPO/SAPLTIMESTAMP"                                                  
        Screen.............. "SAPMSSY0 1000"                                                          
        Screen line......... 6                                                                        
    Information on where terminated                                                                   
        The termination occurred in the ABAP program "/SAPAPO/SAPLTIMESTAMP" in                       
         "/SAPAPO/TIMESTAMP_DIFFERENCE".                                                              
        The main program was "/SAPAPO/CIF_DELTAREPORT3 ".                                                                               
    The termination occurred in line 61 of the source code of the (Include)                       
         program "/SAPAPO/LTIMESTAMPU08"                                                              
        of the source code of program "/SAPAPO/LTIMESTAMPU08" (when calling the editor                
         610).                                                                               
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    31     lv_time_int_low      TYPE i,                                                            
       32     lv_timediff_int      TYPE i,                                                            
       33     lv_datediff_int      TYPE i,                                                            
       34     lv_time              TYPE t,                                                            
       35     ls_time              TYPE tstr_timestr.                                                 
       36                                                                               
    37 * check timestamp parameter                                                                 
       38 * ASSERT NOT iv_timestamp_high IS INITIAL.                                                  
       39 * ASSERT NOT iv_timestamp_low  IS INITIAL.                                                  
       40 * ASSERT iv_timestamp_low <= iv_timestamp_high.                                             
       41   IF iv_timestamp_high IS INITIAL                                                           
       42   OR iv_timestamp_low  IS INITIAL.                                                          
       43     RAISE invalid_parameter.                                                                
       44   ENDIF.                                                                               
    45   IF iv_timestamp_high < iv_timestamp_low.                                                  
       46     RAISE invalid_parameter.                                                                
       47   ENDIF.                                                                               
    48                                                                               
    49 * prepare timestamps                                                                        
       50 * .. split into date and time integers                                                      
       51   ls_timestamp_high = iv_timestamp_high.                                                    
       52   lv_date_int_high  = ls_timestamp_high-date.                                               
       53   lv_time_int_high  = ls_timestamp_high-time.                                               
       54   ls_timestamp_low  = iv_timestamp_low.                                                     
       55   lv_date_int_low   = ls_timestamp_low-date.                                                
       56   lv_time_int_low   = ls_timestamp_low-time.                                                
       57                                                                               
    58 * .. calc date diff                                                                         
       59 * .. check against max. allowed integer difference                                          
       60   lv_datediff_int = lv_date_int_high - lv_date_int_low.                                     
    >>>>>   ASSERT lv_datediff_int <= lc_datediff_intmax.                                             
       62                                                                               
    63 * calc time diff                                                                               
    64   lv_timediff_int = lv_time_int_high - lv_time_int_low.                                     
       65   IF lv_timediff_int < 0.                                                                   
       66     ADD 86400 TO lv_timediff_int.                                                           
       67     SUBTRACT 1 FROM lv_datediff_int.                                                        
       68   ENDIF.                                                                               
    69                                                                               
    70 * calc total duration                                                                       
       71   lv_duration_int = lv_datediff_int * 86400 + lv_timediff_int.                              
       72   lv_time = lv_timediff_int.                                                                
       73   ls_time = lv_time.                                                                        
       74   ls_duration-hours   = lv_duration_int DIV 3600.                                           
       75   ls_duration-minutes = ls_time-minute.                                                     
       76   ls_duration-seconds = ls_time-second.                                                     
       77                                                                               
    78   ev_duration_packed  = ls_duration.                                                        
       79   ev_duration_integer = lv_duration_int.                                                    
       80 ENDFUNCTION.                                                                               
    Contents of system fields                                                                         
    Name     Val.                                                                               
    SY-SUBRC 0                                                                               
    SY-INDEX 0                                                                               
    SY-TABIX 1                                                                               
    SY-DBCNT 1                                                                               
    SY-FDPOS 6                                                                               
    SY-LSIND 0                                                                               
    SY-PAGNO 0                                                                               
    SY-LINNO 1                                                                               
    SY-COLNO 1                                                                               
    SY-PFKEY                                                                               
    SY-UCOMM                                                                               
    SY-TITLE CIF - Comparison/Reconciliation of Transaction Data                                      
    SY-MSGTY                                                                               
    SY-MSGID                                                                               
    SY-MSGNO 000                                                                               
    SY-MSGV1                                                                               
    SY-MSGV2                                                                               
    SY-MSGV3                                                                               
    SY-MSGV4                                                                               
    Active Calls/Events                                                                               
    No.   Ty.          Program                             Include                             Line   
          Name                                                                               
    5 FUNCTION     /SAPAPO/SAPLTIMESTAMP               /SAPAPO/LTIMESTAMPU08                  61  
          /SAPAPO/TIMESTAMP_DIFFERENCE                                                                
        4 FORM         /SAPAPO/SAPLCIF_DELTA3              /SAPAPO/LCIF_DELTA3F17                349  
          COMPARE_ORDER_HEADER                                                                        
        3 FUNCTION     /SAPAPO/SAPLCIF_DELTA3              /SAPAPO/LCIF_DELTA3U03                125  
          /SAPAPO/CIF_DELTA3_COMP_ORDER                                                               
        2 FUNCTION     /SAPAPO/SAPLCIF_DELTA3              /SAPAPO/LCIF_DELTA3U01                871  
          /SAPAPO/CIF_DELTA3_COMP                                                                     
        1 EVENT        /SAPAPO/CIF_DELTAREPORT3            /SAPAPO/CIF_DELTAREPORT3              189  
          START-OF-SELECTION                                                                          
    Chosen variables                                                                               
    Name                                                                               
    Val.                                                                               
    No.       5 Ty.          FUNCTION                                                                 
    Name  /SAPAPO/TIMESTAMP_DIFFERENCE                                                                
    IV_TIMESTAMP_HIGH                                                                               
    #q1###                                                                               
    02073899                                                                               
    2001125C                                                                               
    IV_TIMESTAMP_LOW                                                                               
    ##q!####                                                                               
    00720899                                                                               
    2011125C                                                                               
    EV_DURATION_INTEGER                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    EV_DURATION_PACKED                                                                               
    000000                                                                               
    00000C                                                                               
    SYST-REPID                                                                               
    /SAPAPO/SAPLTIMESTAMP                                                                         
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        2545454254545444554452222222222222222222                                                      
        F31010FF310C49D5341D00000000000000000000                                                      
    %_SPACE                                                                               
    0                                                                               
    0                                                                               
    2                                                                               
    0                                                                               
    LS_TIMESTAMP_HIGH                                                                               
    22000713182959                                                                               
    00000000000000                                                                               
    00000000000000                                                                               
    33333333333333                                                                               
    22000713182959                                                                               
    LV_DATE_INT_HIGH                                                                               
    803363                                                                               
    0042                                                                               
    0C23                                                                               
    LS_TIMESTAMP_HIGH-DATE                                                                               
    22000713                                                                               
    00000000                                                                               
    00000000                                                                               
    33333333                                                                               
    22000713                                                                               
    LV_TIME_INT_HIGH                                                                               
    66599                                                                               
    0002                                                                               
    0147                                                                               
    LS_TIMESTAMP_HIGH-TIME                                                                               
    182959                                                                               
    000000                                                                               
    000000                                                                               
    333333                                                                               
    182959                                                                               
    LS_TIMESTAMP_LOW                                                                               
    20071210182959                                                                               
    00000000000000                                                                               
    00000000000000                                                                               
    33333333333333                                                                               
    20071210182959                                                                               
    LV_DATE_INT_LOW                                                                               
    733021                                                                               
    0025                                                                               
    0BFD                                                                               
    LS_TIMESTAMP_LOW-DATE                                                                               
    20071210                                                                               
    00000000                                                                               
    00000000                                                                               
    33333333                                                                               
    20071210                                                                               
    LV_TIME_INT_LOW                                                                               
    66599                                                                               
    0002                                                                               
    0147                                                                               
    LS_TIMESTAMP_LOW-TIME                                                                               
    182959                                                                               
    000000                                                                               
    000000                                                                               
    333333                                                                               
    182959                                                                               
    SY-UNAME                                                                               
    SCMATP                                                                               
    000000000000                                                                               
    000000000000                                                                               
    544455222222                                                                               
    33D140000000                                                                               
    SCREEN-INPUT                                                                               
    1                                                                               
    0                                                                               
    0                                                                               
    3                                                                               
    1                                                                               
    LV_DATEDIFF_INT                                                                               
    70342                                                                               
    001C                                                                               
    0126                                                                               
    LV_TIMEDIFF_INT                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    SYST                                                                               
    #######################################&#332;###############################################&#19800; C#&#1280;##
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000
        000000000000000000000000000000000000000100000000000000000000000000000000000000000000000D000500
        0000000000000000000000000000000800000004000000000000000000000000000000000000010900000005240000
        0000010200000000000001060100010C0000000C0000000002000000000000000000000000000B000001000803000C
    SY-REPID                                                                               
    /SAPAPO/SAPLTIMESTAMP                                                                         
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        2545454254545444554452222222222222222222                                                      
        F31010FF310C49D5341D00000000000000000000                                                      
    %_DUMMY$$                                                                               
    0000                                                                               
    0000                                                                               
    2222                                                                               
    0000                                                                               
    No.       4 Ty.          FORM                                                                     
    Name  COMPARE_ORDER_HEADER                                                                        
    SYST-REPID                                                                               
    /SAPAPO/SAPLCIF_DELTA3                                                                        
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        2545454254544445444543222222222222222222                                                      
        F31010FF310C396F45C413000000000000000000                                                      
    GC_APPEND_MODE                                                                               
    3                                                                               
    0                                                                               
    0                                                                               
    3                                                                               
    3                                                                               
    LS_FIELDS_TO_COMPARE-DUEDATE                                                                      
        X                                                                               
    0                                                                               
    0                                                                               
    5                                                                               
    8                                                                               
    SYST                                                                               
    #######################################&#332;###############################################&#19800; C#&#1280;##
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000
        000000000000000000000000000000000000000100000000000000000000000000000000000000000000000D000500
        0000000000000000000000000000000800000004000000000000000000000000000000000000010900000005240000
        0000010200000000000001060100010C0000000C0000000002000000000000000000000000000B000001000803000C
    LS_APO_ORDER-ORDTYPE                                                                               
    5                                                                               
    0                                                                               
    0                                                                               
    3                                                                               
    5                                                                               
    GC_PLANNED_ORDER                                                                               
    5                                                                               
    0                                                                               
    0                                                                               
    3                                                                               
    5                                                                               
    LS_R3_ORDER-STATUSCNF                                                                               
    0                                                                               
    0                                                                               
    2                                                                               
    0                                                                               
    GC_ORDER_STATUS_NO_CONF                                                                               
    1                                                                               
    0                                                                               
    0                                                                               
    3                                                                               
    1                                                                               
    LS_APO_ORDER-STATUSCNF                                                                               
    0                                                                               
    0                                                                               
    2                                                                               
    0                                                                               
    GC_PRED_OUT_DEL                                                                               
    A                                                                               
    0                                                                               
    0                                                                               
    4                                                                               
    1                                                                               
    GC_TND_DELETE                                                                               
    CN                                                                               
    00                                                                               
    00                                                                               
    44                                                                               
    3E                                                

    Dear Sajit,
    Go through the following OSS Notes:
    <a href="https://websmp110.sap-ag.de/form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=901957&_NLANG=E">901957</a>, <a href="https://websmp110.sap-ag.de/form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1036880&_NLANG=E">1036880</a>, <a href="https://websmp110.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1067414&_NLANG=E">1067414</a>
    Regards,
    Naveen.

  • Run-time error "PXA_NO_SHARED_MEMORY" occurred

    Hi All,
    My production system is running fine. And when i check SM21 I saw a lot of error message Run-time error "PXA_NO_SHARED_MEMORY" occurred and Run-time error "SYSTEM_NO_ROLL" occurred. However I can't see any error in ST22. I had read sap note 307976. And dont know when I restart the SAP services is it will be fine?
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Mon Feb 22 08:13:29 2010
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' is "640.00", patchlevel (0.58)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    58
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        2440
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2440) [dpxxdisp.c   1160]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          11592     (828)
    M  DpShMCreate: sizeof(tm_adm)          2219848     (11044)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (320)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 047D0040, size: 2510384)
    M  DpShMCreate: allocated sys_adm at 047D0040
    M  DpShMCreate: allocated wp_adm at 047D17A8
    M  DpShMCreate: allocated tm_adm_list at 047D44F0
    M  DpShMCreate: allocated tm_adm at 047D4518
    M  DpShMCreate: allocated wp_ca_adm at 049F2460
    M  DpShMCreate: allocated appc_ca_adm at 049F6AB0
    M  DpShMCreate: allocated comm_adm_list at 049F8220
    M  DpShMCreate: allocated comm_adm at 049F8238
    M  DpShMCreate: allocated vmc_adm_list at 04A27038
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 04A27060
    M  DpShMCreate: allocated wall_adm at 04A27068
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Mon Feb 22 08:13:30 2010
    M  calling db_connect ...
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      58
    C    patchcomment MSSQL: Workaround for SQL2005 change in RpcNexecInsert (814383)
    C  np:(local) connection used on PKG-PRD
    C  CopyLocalParameters: dbuser is 'prd'

    C Mon Feb 22 08:13:31 2010
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.
    C  Provider Release:08.50.1022
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.

    C Mon Feb 22 08:13:42 2010
    C  Cache sizes: header 52 bytes, 20000 names (26720000 bytes), 1000 dynamic statements (5432000 bytes), total 32152052 bytes
    C  Using shared procedure name cache PKG-PRD_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [PKG-PRD] server_used : [np:(local)], dbname: PRD, dbuser: prd
    C  pn_id:PKG-PRD_PRDPRD_PRD
    C  Not using MARS (on sql 8.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100222 081330 PKG-PRD        
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.

    I Mon Feb 22 08:14:02 2010
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 09E50040, size: 4400128)
    M  SHM_ROLL_AREA          (addr: 12510040, size: 262144000)
    M  SHM_PAGING_AREA          (addr: 617B0040, size: 113246208)
    M  SHM_ROLL_ADM               (addr: 0A290040, size: 2616690)
    M  SHM_PAGING_ADM          (addr: 0A510040, size: 525344)
    M  ThCreateNoBuffer          allocated 320144 bytes for 1000 entries at 0A5A0040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 7424 bytes (50 server) at 0A5F0040
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 14
    B  dbtbxbuf: Buffer TABL  (addr: 103500C8, size: 30000128, end: 11FEC4C8)
    B  dbtbxbuf: Buffer TABLP (addr: 0E5200C8, size: 10240000, end: 0EEE40C8)
    B  dbexpbuf: Buffer EIBUF (addr: 0EF000D0, size: 4194304, end: 0F3000D0)
    B  dbexpbuf: Buffer ESM   (addr: 0F3100D0, size: 4194304, end: 0F7100D0)
    B  dbexpbuf: Buffer CUA   (addr: 0F7200D0, size: 3072000, end: 0FA0E0D0)
    B  dbexpbuf: Buffer OTR   (addr: 0FA100D0, size: 4194304, end: 0FE100D0)
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 120D8040
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 121F0098
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 121F03E0
    S    using messages for server info
    S  size of spec char cache entry: 165020 bytes (timeout 100 sec)
    S  size of open spool request entry: 1152 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 107 MB, reducing # of fragments
    A  System page size: 4kb, admin_size: 13396kb.
    A  Attached to PXA (address 21F30040, size 440000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    C  The IRow interface is supported by this OLEDB provider
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:640.00]):
    B   max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B   min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B   prefer_union_all    =   1,  prefer_union_for_select_all =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG         =   1,  alias table FUPD            =   0,
    B   escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x00,  character encoding          =SBCS / []:X,
    B   use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0

    A Mon Feb 22 08:14:03 2010
    A  ABAP ShmAdm attached (addr=53EC5000 leng=20955136 end=552C1000)
    A  >> Shm MMADM area (addr=5422D180 leng=134720 end=5424DFC0)
    A  >> Shm MMDAT area (addr=5424F000 leng=17244160 end=552C1000)
    A  RFC Destination> destination pkg-prd_PRD_00 host pkg-prd system PRD systnr 0 (pkg-prd_PRD_00)
    A  RFC Options> H=pkg-prd,S=00
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC abap/SIGCHILD_default not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    A  Hotpackage version: 49
    M  ThrCreateShObjects          allocated 14604 bytes at 0FFD0040

    N Mon Feb 22 08:14:05 2010
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\PRD\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\PRD\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    W    ITSP Running against db release 620!
    W    ITSP Disable Kernel Web GUI functionality
    W  === ipl_Init() returns 2, ITSPE_DISABLED: Service is disabled (sapparam)
    W  =================================================

    E Mon Feb 22 08:14:39 2010
    E  Replication is disabled

    C Mon Feb 22 08:15:00 2010
    C  sloledb.cpp [DoDbcc,line 2930]: Error/Message: (err 2571, sev 0), User 'prd' does not have permission to run DBCC CACHEPROFILE.
    C  Procname: [No proc]

    C Mon Feb 22 08:15:01 2010
    C  statement rerun with user dbo was successful, you can ignore the preceeding message

    C Mon Feb 22 08:16:27 2010
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.

    S Mon Feb 22 08:19:23 2010
    S  found spool memory service RSPO-ACTIONS at 121F4C68

    A Mon Feb 22 08:19:55 2010
    A  TH VERBOSE LEVEL FULL
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   12304]
    C  Rollback Work (0)

    A Mon Feb 22 08:19:59 2010
    A  Mon Feb 22 08:19:59 2010

    A  ABAP/4 Program /SDF/SAPLRI_SQLSERVER                   .
    A  Source /SDF/LRI_SQLSERVERU02                    Line 264.
    A  Error Code CALL_FUNCTION_CONFLICT_LENG.
    A  Module  $Id: //bas/640_REL/src/krn/runt/abfunc.c#14 $ SAP.
    A  Function FuncParams Line 2906.
    C  Rollback Work (0)

    C Mon Feb 22 08:20:00 2010
    C  sloledb.cpp [DoDbcc,line 2930]: Error/Message: (err 2571, sev 0), User 'prd' does not have permission to run DBCC loginfo.
    C  Procname: [No proc]

    C Mon Feb 22 08:20:01 2010
    C  statement rerun with user dbo was successful, you can ignore the preceeding message

    C Mon Feb 22 08:20:07 2010
    C  sloledb.cpp [ParamStmtExec,line 12251]: Error/Message: (err 50000, sev 0), Table not found.
    C  Procname: [##Y3PKG_PRDprd00000024400000003365081342]
    C  ParamStmtExec failed.  HR 80040e14 DBSL retcode 99. stmt: [sap_get_table_size_info 'syscomments', 'prd', 'PRD'
    C  /* R3:CL_SQL_RESULT_SET=============CP:234 T: */
    C  ]
    C  Conn_i:2 selection:1 singleton:0 flag_fupd:0 use_cursor:0 chksum: 222194
    C  dbdsmss: DBSL99 SQL50000
    C  Table not found.
    B  ***LOG BY2=> sql error 50000      performing FET        [dbds#3 @ 592] [dbds    0592 ]
    B  ***LOG BY0=> Table not found. [dbds#3 @ 592] [dbds    0592 ]
    B  ***LOG BY1=> sql error 50000      [dbacds#2 @ 1187] [dbacds  1187 ]

    B Mon Feb 22 08:26:10 2010
    B  dbmyclu : info : my major identification is 3232261128, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my uuid is 31B87DDDE43B904B955F2E6B45F604BE.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.
    N  login/password_change_for_SSO : 1 -> 1

    B Mon Feb 22 08:32:54 2010
    B  table logging switched off for all clients

    M Mon Feb 22 08:45:50 2010
    M  PfHIndInitialize: memory=<60720150>, header=<60720150>, records=<60720180>

    S Mon Feb 22 08:55:52 2010
    S  handle memory type is RSTSPROMMM

    M Mon Feb 22 09:18:08 2010
    M  *** ERROR => NiProcMsg: rc=-104 (NIEROUT_SNC_FAILURE) from router [nibuf.c      423]
    M  *** ERROR => MsIAttachEx: NiBufConnect to /H/192.168.100.7/S/sapdp99/H/194.39.131.34/S/sapdp99/H/oss001/sapmsOSS failed (rc=NIEROUT_SNC_FAILURE) [msxxi.c      633]
    M  *** ERROR => LgIAttach: MsAttach (rc=NIEROUT_SNC_FAILURE) [lgxx.c       2984]
    M  *** ERROR => LgIGroup: LgIAttach(rc=-101) [lgxx.c       3504]
    A  TH VERBOSE LEVEL FULL

    M Mon Feb 22 09:18:28 2010
    M  *** ERROR => NiProcMsg: rc=-104 (NIEROUT_SNC_FAILURE) from router [nibuf.c      423]
    M  *** ERROR => MsIAttachEx: NiBufConnect to /H/192.168.100.7/S/sapdp99/H/194.39.131.34/S/sapdp99/H/oss001/sapmsOSS failed (rc=NIEROUT_SNC_FAILURE) [msxxi.c      633]
    M  *** ERROR => LgIAttach: MsAttach (rc=NIEROUT_SNC_FAILURE) [lgxx.c       2984]
    M  *** ERROR => LgIGroup: LgIAttach(rc=-101) [lgxx.c       3504]
    A  TH VERBOSE LEVEL FULL

    C Mon Feb 22 10:01:09 2010
    C  Rollback Work (0)

    A Mon Feb 22 10:18:24 2010
    A  TH VERBOSE LEVEL FULL
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   12304]
    C  Rollback Work (0)

    A Mon Feb 22 10:18:26 2010
    A  Mon Feb 22 10:18:26 2010

    A  ABAP/4 Program /SDF/SAPLRI_SQLSERVER                   .
    A  Source /SDF/LRI_SQLSERVERU02                    Line 264.
    A  Error Code CALL_FUNCTION_CONFLICT_LENG.
    A  Module  $Id: //bas/640_REL/src/krn/runt/abfunc.c#14 $ SAP.
    A  Function FuncParams Line 2906.
    C  Rollback Work (0)
    C  sloledb.cpp [DoDbcc,line 2930]: Error/Message: (err 2571, sev 0), User 'prd' does not have permission to run DBCC loginfo.
    C  Procname: [No proc]
    C  statement rerun with user dbo was successful, you can ignore the preceeding message

    C Mon Feb 22 10:18:29 2010
    C  sloledb.cpp [ParamStmtExec,line 12251]: Error/Message: (err 50000, sev 0), Table not found.
    C  Procname: [##Y3PKG_PRDprd00000024400000012657081342]
    C  ParamStmtExec failed.  HR 80040e14 DBSL retcode 99. stmt: [sap_get_table_size_info 'syscomments', 'prd', 'PRD'
    C  /* R3:CL_SQL_RESULT_SET=============CP:234 T: */
    C  ]
    C  Conn_i:2 selection:1 singleton:0 flag_fupd:0 use_cursor:0 chksum: 222194
    C  dbdsmss: DBSL99 SQL50000
    C  Table not found.
    B  ***LOG BY2=> sql error 50000      performing FET        [dbds#3 @ 592] [dbds    0592 ]
    B  ***LOG BY0=> Table not found. [dbds#3 @ 592] [dbds    0592 ]
    B  ***LOG BY1=> sql error 50000      [dbacds#2 @ 1187] [dbacds  1187 ]
    Could anybody advice me on this
    Regards,
    Zul

    Hi,
    I hope 440000 will not the cause,
    this might occur due to many reasons,
    1. make sure you have all the components(Applications,OSlevel,DBlevel) are at same level in entire the landscape.
    2. you can observe the evenlogs at OSlevel to get the error information pointing to. Also check for the dumps/logs(work direcotry).
    3. if not, can open SAP message.
    regards
    Nagaraju

  • Run-time error in alv

    Hi guys,
    I am executing an alv grid report.i m getting a run time error and i m gettig a dump.In the below i pasted the error.any suggestions where i m going wrong in the code.
    What happened?                                                      
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).          
    Information on where terminated?                                              
    Termination occurred in the ABAP program "SAPLSLVC" - in "FILL_DATA_TABLE"
        The main program was "ZRPP1353 ".                                                                               
    In the source code you have the termination point in line 2735           
        of the (Include) program "LSLVCF36".    
    Source code where the error occured?
    Column per Fieldcat Entry                                          
            ls_lvc_data-value = space.                                   
            clear ls_lvc_data-style.                                     
            loop at it_fcat_local assigning <ls_fcat>                    
                    where tech ne 'X' and no_out ne 'X'.                 
              if l_invisible eq 'X'.                                     
                clear l_invisible.                                       
                if <ls_fcat>-do_sum is initial.                          
                  continue.                                              
                else.                                                    
                  clear ls_lvc_data-col_pos.                             
                endif.                                                   
              endif.                                                                               
    add 1 to ls_lvc_data-col_pos.                                                                               
    assign component <ls_fcat>-fieldname                       
                               of structure <ls_data> to <l_field_value>.
              if sy-subrc ne 0.                                          
                message x000(0k).                                        
              endif.

    Hi Dinesh,
    This is because of some problem with the field catalog you have defined. Please give the field catalog so that we can identify the problem easily.

  • Run time error while running BDC for production order creation and confirmation:

    Dear Gurus,
    We have a situation, where the users are trying to do the entries creation of order or confirmation (through manual and BDC). But, if there is any kind of a deficit quantities in consumption or GR quantity, then it is going to run time error and Dumps are coming in program SAPLCORB
    and the transaction code is coming for CO11N.
    How to avoid this error to run the production system in smoothing way...Any flash lights on this will be great full
    Regards,
    Madhu.G

    Hi Madhu,
    Expert Caetano has rightly point out. Refer Note 1840705 - RAISE_EXCEPTION short dump if running CO11N in background
    Cause
    The short dump is triggered because SAP transaction CO11N contains new GUI elements that cannot always be dealt with in a background process,
    such as the confirmation texts.
    Resolution
    SAP recommends that the standard production order BAPIs, such as BAPI_PRODORDCONF_CREATE_TT, should be used to post a confirmation in background.
    If this is not feasible, the following workaround may be uses:
    Define a confirmation profile in transaction OPK0; 
    In the detail areas, remove the area "Confirmation text"; 
    Set this profile as standard, so that it is chosen automatically by the system when a batch-job
    is started; 
    Assign this confirmation profile to the batch user with transaction SU3 using parameter CORUPROF.
    Also see Note 429432 - CO11N: Batch input in background dumps if long text is maintained
    Refer to note 1154692 - Endless loop during confirmation in background if you doing Auto GR during confirmations
    Thanks & Regards,
    Ramagiri

  • Run time error while creating sales order

    hi all,
    im working on ECC 4.7. normally when i create a sales order (VA01) and use incompletion log, it shows no errors. but when i start to save the same order . it shows a RUN TIME ERROR of ABAP . so plz help me to solve out this error
    thanks\

    Hi Tarun,
    When you get a run time error, you can see the error analysis on the left hand side. Check what the analysis is saying and you may need an ABAPer to find out the exact reason for the dump. I am just guessing it could be due to number range.. just a guess.
    Regards,
    Raghav

  • Run-time error SAPSQL_ARRAY_INSERT_DUPREC occurred

    When creating a new SyncBo (T51) instance after syncing eventually MI Clients shows the following message:
    [20070315 01:28:14:343] E [MI/Sync ] Received exception info code 10 and detailed message "Exception while callSync: The ABAP/4 Open SQL arrayinsert results in duplicate database records. records in the data base."
    In sm21 shows message:
    AB0 Run-time error "SAPSQL_ARRAY_INSERT_DUPREC" occurred
    AB1 > Short dump "070316 205056 sapnw ELDA " generated
    Looking for SAPSQL_ARRAY_INSERT_DUPREC error in SAP Note we found the note 817849 (Runtime error SAPSQL_ARRAY_INSERT_DUPREC occurs during sync).
    We have downloaded and applied this note in Backend as note requires and ALL prerequisites of this note. Also we have upgraded to SP19 and Kernel to 155 (part 1 and 2). But problem continues and the client that happened this problem does not work any more, all new SyncBO instances created goes to MEREP_MON as Waiting status.
    The dump on duplicate record is happening when the user is synchronizing and when a record is getting inserted to table merep_10100.
    The solution /workaround could be to do a client reset for those devicesand test again and see if it is happening, but error returns happening after this.
    When this happen SyncBo instance keeps on Waiting status (MEREP_MON). We couldn't understand why this happen suddenly and then no more new SyncBo could be created, all goes to Waiting status. Reprocess (ShiftF5) or start handler (Shift10) does not take any effect.
    Best Regards,
    Rogério

    Hi Ajith
    I am getting the same error and below is the error message from ST22. The only change is I am using for MTR application and the sync fails for the 2nd time when synched for patches for the MTR application. As it is generic sync, could you please advice to get rid of the problem.
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
      neither
    caught nor passed along using a RAISING clause, in the procedure
      "LOG_INSERT_DB" "(FORM)"
    Since the caller of the procedure could not have expected this exception
      to occur, the running program was terminated.
    The reason for the exception is:
    If you use an ABAP/4 Open SQL array insert to insert a record in
    the database and that record already exists with the same key,
    this results in a termination.
    (With an ABAP/4 Open SQL single record insert in the same error
    situation, processing does not terminate, but SY-SUBRC is set to 4.)
    Thanks, Raj

  • Run time error while executing KP06

    Hello All,
    A run time error is being returned when I execute the tcode KP06. After entering all required field such as cost elements, cost center / CCgroup, then I pressed period screen / overview screen ... and it went to abap dump ...
    FYI, I have upgraded to 4.7 to ECC system.
    Regards,
    Bharath.
    Moderator message: please do more research before asking, use ST22, search for SAP notes, check your custom enhancements.
    Edited by: Thomas Zloch on Aug 22, 2011 9:58 AM

    Ok. Look at the dump in ST22 and solve your problem.

  • Run time error while saving sales order

    Hi all,
    i am working on IDES ECC 6.0, when i am saving an sales order(OR) i am getting run time error in the table CRMPAROLTP, program SAPMV45A.
    i am using 4 GB RAM, still having a space of 30 GB for only IDES to save the data.
    so, how to solve it.

    Hello,
    I doubt the runtime error (I am assuming you mean that you got a short dump) you mentioned in your original post has anything to do with the warning messages you see when doing a check (Ctrl+F2) on table CRMPAROLTP and program SAPMV45A.  These warnings should not cause a short dump or runtime error.
    The warning message for the table has the following long text:
    Table CRMPAROLTP: Key length > 120 (Restricted functionality)
    Message no. DT214
    Diagnosis
    The key length, i.e. the sum of the field lengths of all the key fields of the table, is more than 120 bytes.
    System response
    This is a warning.
    Procedure
    Note the following restricted fuctionality for this table:
    - Table contents cannot be transported by specifying key values, at
      best by specifying generic key values with a maximum length of 120
      bytes.
    - The table may not be used as the base table of a lock object.
    The warnings in SE38 for program SAPMV45A are mostly related to Unicode and have no reference to the table CRMPAROLTP.
    If you haven't already done so, please check the SAP Note referenced in my first reply since this does provide a solution for short dumps related to table CRMPAROLTP.
    Of course, since I don't know specifically what the short dump message is that you received, I could be basing my assessment on false assumptions.  If you have those details it is better for the SDN community as a whole if you include the information in this thread instead of sending it to me offline.
    Best Regards,
    Jamie

  • Run time error while login to RTF Template

    Hi,
    I am trying to create a sample report in BI Publisher. but while login into RTF Template I am getting below error.
    Please rectify this problem?
    Run time error '429'
    Active x component can't ceate object
    help me out

    Runtime Errors         DYNPRO_FIELD_CONVERSION
    Date and Time          07.05.2010 08:49:15
    ShrtText
         A conversion error occurred.
    What happened?
         The current screen processing was terminated, since a situation
         occurred from which it could not continue processing.
         This is probably due to an error in the current screen of the ABAP
         program.
    What can you do?
         Make a note of the actions and input which caused the error.
         To resolve the problem, contact your SAP system administrator.
         You can use transaction ST22 (ABAP Dump Analysis) to view and administe
         termination messages, especially those beyond their normal deletion
         date.
    Error analysis
         The program flow was interrupted and could not be resumed.
         Program "SAPMJ1IFN" tried to display fields on screen 1210. However, an
         error occurred while this data was being converted.

  • Run time error while create Vendor master via MK01

    Dear Experts,
    when i try to create vendor master by MK01.....system throws run time error as below:
    "The exception 'CX_BADI_MULTIPLY_IMPLEMENTED' was raised, but it was not caught
    anywhere along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
    'CVI_MAP_TITLE=================CP' has to be
    terminated."
    My current system is ECC 6 along with DBM. Business partner configuration is activated in the current system. I am getting this error after BP configuration. Could you please help me to fix this issue?.......Is it due to configuration or a dump from abap program?
    Regards
    Vetrivelan

    Hii,
       please search sdn before posting the threads.
    check these  links, it may help u............
    Short Dump - CX_BADI_MULTIPLY_IMPLEMENTED - BADI Q1SR1
    Short Dump - CX_BADI_MULTIPLY_IMPLEMENTED - BADI Q1SR1
    CX_BADI_NOT_IMPLEMENTED
    thanks.

Maybe you are looking for