Dump during testing of ECC 6.0

Dear All,
My client is upgrading from 4.7 to ECC 6.0. During testing of the new system dumps for some transactions have been arising.
For the transaction codes F-06, F-07, FBL5N and FB02 same kinds of errors have been found with similar program u201CSAPMF05Lu201D in the line no 1023. In the BSEG table the value of Docln is found out to be u201C#u201D for all the documents that have been imported from 4.7 to ECC 6.0.
Please note that these transactions are still working fine in the 4.7 system.
Below is the detail description of the error that we are receiving in ECC6.0 for the above mentioned transaction codes.
Steps to recreate the dump:
1.     Go to T-code FBL5N
2.     Provide the u201Ccustomer accountu201D, u201Ccompany codeu201D and u201Copen at key dateu201D. Then Execute.
3.     Double click on the Doc date and the dump occurs.
How do we go about it..
Regards,
Arvind

My issue has been resolved after running below program which SAP has recommended.
Run this report in the Dev --->ZF_DOCLN_UPDATE_YJ
*& Report ZF_DOCLN_UPDATE_YJ
*&Report to update the DOCLN field in BSEG, which has a hex value and is
*&shown as # to initial. Please note this report is not to be used for
*&FAGLFLEXA table problems.
REPORT zf_docln_update_yj.
TABLES: bseg.
DATA: BEGIN OF itab_bseg OCCURS 0,
bukrs LIKE bseg-bukrs,
belnr LIKE bseg-belnr,
gjahr LIKE bseg-gjahr,
buzei LIKE bseg-buzei,
docln LIKE bseg-docln,
END OF itab_bseg.
DATA: cnt TYPE i,
cnt_commit TYPE i.
FIELD-SYMBOLS: <docln>.
CONSTANTS: c_badchar(2) TYPE x VALUE '0000',
c_commit TYPE i value 10000.
SELECTION-SCREEN BEGIN OF BLOCK 001 WITH FRAME.
SELECT-OPTIONS: p_bukrs FOR bseg-bukrs,
p_gjahr FOR bseg-gjahr,
p_belnr FOR bseg-belnr,
p_buzei FOR bseg-buzei.
PARAMETERS: update AS CHECKBOX,
detail AS CHECKBOX.
SELECTION-SCREEN END OF BLOCK 001.
SELECT *
INTO CORRESPONDING FIELDS OF TABLE itab_bseg
FROM bseg
WHERE bukrs IN p_bukrs
AND belnr IN p_belnr
AND buzei IN p_buzei
AND gjahr IN p_gjahr.
ASSIGN itab_bseg-docln(1) TO <docln> CASTING TYPE x.
LOOP AT itab_bseg.
IF <docln> EQ c_badchar.
IF update = 'X'.
ADD 1 TO cnt_commit.
UPDATE BSEG SET docln = space
WHERE bukrs = itab_bseg-bukrs
AND belnr = itab_bseg-belnr
AND gjahr = itab_bseg-gjahr
AND buzei = itab_bseg-buzei.
IF cnt_commit GE c_commit.
COMMIT WORK.
CLEAR cnt_commit.
ENDIF.
ENDIF.
ADD 1 TO cnt.
ELSE.
DELETE itab_bseg.
ENDIF.
ENDLOOP.
IF update = 'X'.
COMMIT WORK.
FORMAT COLOR COL_NEGATIVE INTENSIFIED.
WRITE: /'Update Run'.
FORMAT COLOR COL_NEGATIVE INTENSIFIED OFF.
ELSE.
FORMAT COLOR COL_HEADING INTENSIFIED.
WRITE: /'Test Run'.
FORMAT COLOR COL_HEADING INTENSIFIED OFF.
ENDIF.
FORMAT COLOR COL_GROUP INTENSIFIED.
WRITE: /'Report run by ',sy-uname, 'at',sy-uzeit.
FORMAT COLOR COL_GROUP INTENSIFIED OFF.
ULINE.
SKIP 2.
ULINE.
FORMAT COLOR COL_GROUP INTENSIFIED.
WRITE: /'DOCLN changed for Documents'.
FORMAT COLOR COL_GROUP INTENSIFIED OFF.
ULINE.
WRITE: /5 'CoCode',
15 'Doc Num',
30 'Line no',
45 'Fiscal Year',
60 'Six-Figure Line Item for Ledger'.
ULINE.
IF detail EQ 'X'.
LOOP AT itab_bseg.
WRITE:/5 itab_bseg-bukrs,
15 itab_bseg-belnr,
30 itab_bseg-buzei,
45 itab_bseg-gjahr,
60 itab_bseg-docln.
ENDLOOP.
ENDIF.
WRITE: /1 'BSEG Line Item Update Count:', cnt.

Similar Messages

  • DUMP WHEN TESTING WEB PAGES

    Working on BBPCRM 3.1 having this dump when testing web pages. Page contains the typical start pages of SAP hello world and a simple button...
                                                                                    Runtime Errors         TEXTENV_INVALID
    Exception              CX_SY_LOCALIZATION_ERROR
           Occurred on     19.09.2005 at 09:48:01
    Error when generating text environment.
    What happened?
    What can you do?
    Error analysis
    How to correct the error
    System environment
    User, transaction...
    Information on where terminated
    Source code extract
    001550                       DLI_UPDATE = 'X'
    001560                       UPDCHK     = 'U'
    001570                  EXCEPTIONS
    001580                       OTHERS     = 1.
    001590             COMMIT WORK.
    001600           WHEN OTHERS.
    001610         ENDCASE.
    001620       ENDIF.
    001630
    001640     ENDIF.                               " updchk = c
    001650
    001660   * update the data
    001670     IF UPDCHK EQ 'U'.
    001680       IF FOL_UPDATE NE SPACE.
    001690   * update for folder definitions
    001700         PERFORM V_SOFD_PUBSEL(SAPFSSO6)
    001710           TABLES V_SOFD_TAB
    001720           USING  RCODE.
    001730         PERFORM SOFIND_SELARR_ALL_FOL(SAPFSSO6)
    001740           TABLES SOFIND_TAB
    001750           USING  RCODE.
    001760         SORT SOFIND_TAB.                     " yxu170797
    001770         LOOP AT V_SOFD_TAB INTO V_SOFD_REC.
    001780           CLEAR SOFIND_REC.
    001790           MOVE: V_SOFD_REC-MANDT  TO SOFIND_REC-MANDT,
    001800                 FLN               TO SOFIND_REC-TYPE,
    001810                 V_SOFD_REC-OBJNAM TO SOFIND_REC-OBJDES,
    001820                 V_SOFD_REC-FOLTP  TO SOFIND_REC-OBJTP,
    001830                 V_SOFD_REC-FOLYR  TO SOFIND_REC-OBJYR,
    001840                 V_SOFD_REC-FOLNO  TO SOFIND_REC-OBJNO.
    >           SET LOCALE LANGUAGE V_SOFD_REC-OBJLA.
    001860           TRANSLATE SOFIND_REC-OBJDES TO UPPER CASE.
    001870           SET LOCALE LANGUAGE SPACE.
    001880           READ TABLE SOFIND_TAB INTO SOFIND_TAB_REC
    001890             WITH KEY MANDT   = SOFIND_REC-MANDT
    001900                      TYPE    = SOFIND_REC-TYPE
    001910                      OBJDES  = SOFIND_REC-OBJDES
    001920                      OBJTP   = SOFIND_REC-OBJTP
    001930                      OBJYR   = SOFIND_REC-OBJYR
    001940                      OBJNO   = SOFIND_REC-OBJNO
    001950             BINARY SEARCH.
    001960           IF SY-SUBRC NE 0.
    001970             APPEND SOFIND_REC TO SOFIND_INS_TAB.
    001980           ELSE.
    001990             DELETE SOFIND_TAB INDEX SY-TABIX.
    002000           ENDIF.
    002010           CLEAR SOFIND_REC.
    002020           MOVE: V_SOFD_REC-MANDT  TO SOFIND_REC-MANDT,
    002030                 FLD               TO SOFIND_REC-TYPE,
    002040                 V_SOFD_REC-OBJDES TO SOFIND_REC-OBJDES,
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 1                             SY-DBCNT 2
    SY-FDPOS 0                             SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY
    SY-UCOMM                               SY-TITLE Update control
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         6 FUNCTION     SO_SOFIND_UPDATE
           SAPLSOC3
           LSOC3U11                                   185
         5 FORM         SO_SOFIND_UPDATE
           SAPLSOC3
           LSOC3V11                                    35
         4 FORM         VB_CALL_FUNC
           RSM13000
           RSM13000                                  5441
         3 FORM         VB_V1_EXEC
           RSM13000
           RSM13000                                  5182
         2 FORM         VB_V1_NORMAL
           RSM13000
           RSM13000                                  3944
         1 MODULE (PBO) VBEXEC
           RSM13000
           RSM13000                                  3793
    Chosen variables
         6 FUNCTION     SO_SOFIND_UPDATE
           SAPLSOC3
           LSOC3U11                                   185
    DLI_UPDATE
                                   2
                                   0
    FOL_UPDATE                     X
                                   5
                                   8
    UPDCHK                         U
                                   5
                                   5
    V_SOFD_TAB                     Table IT_1[2x141]
    RCODE                          0
                                   0000
                                   0000
    SYST-REPID                     SAPLSOC3
                                   5454544322222222222222222222222222222222
                                   310C3F3300000000000000000000000000000000
    SOFIND_TAB                     Table IT_2[2x73]
    ROLE_MAILER                    4
                                   3
                                   4
    V_SOFD_REC                     100FOL28000000000001                 D#
                                   3334443333333333333322222222222222222422
                                   1006FC2800000000000100000000000000000430
    ... +  40                                #
                                   2222222222222222222222222222222222222222
                                   0000000000300000000000000000000000000000
    ... +  80                                          Q                  0
                                   2222222222222222222252222222222222222223
                                   0000000000000000000010000000000000000000
    ... + 120                      000120050808 20050808
                                   333333333333233333333
                                   000120050808020050808
    VWST                           VWST
                                   5555222222222222222222222222222222222222
                                   6734000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SOFIND_REC                     100FLN#
                                   3334442222222222222222222222222222222222
                                   1006CE3000000000000000000000000000000000
    ... +  40                                      FOL28000000000001
                                   222222222222222244433333333333333
                                   00000000000000006FC28000000000001
    SENDMAIL_TOKEN_NOT_FOUND       90
                                   0005
                                   000A
    USDI                           USDI
                                   5544222222222222222222222222222222222222
                                   5349000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SPOOL_READ_ERROR               56
                                   0003
                                   0008
    SY-REPID                       SAPLSOC3
                                   5454544322222222222222222222222222222222
                                   310C3F3300000000000000000000000000000000
    SOFIND_REC-OBJDES              #
                                   2222222222222222222222222222222222222222
                                   3000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    V_SOFD_REC-OBJNAM              #
                                   222222222222
                                   300000000000
    SCR                            SCR
                                   545
                                   332
    USRE                           USRE
                                   5554222222222222222222222222222222222222
                                   5325000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    OBJ                            OBJ
                                   444
                                   F2A
    USSA                           USSA
                                   5554222222222222222222222222222222222222
                                   5331000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    URL                            URL
                                   554
                                   52C
    USSI                           USSI
                                   5554222222222222222222222222222222222222
                                   5339000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    DX40                           DX40
                                   4533222222222222222222222222222222222222
                                   4840000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SOFIND_TAB_REC
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222222
                                   000000000000000000000000000000000
    ATTA                           ATTA
                                   4554222222222222222222222222222222222222
                                   1441000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    OFFICE_TASO13                  SO13
                                   5433222222222222222222222222222222222222
                                   3F13000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SOFIND_REC-MANDT               100
                                   333
                                   100
    OFFICE_TASO14                  SO14
                                   5433222222222222222222222222222222222222
                                   3F14000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SOFIND_REC-TYPE                FLN
                                   444
                                   6CE
    OFFICE_TASO15                  SO15
                                   5433222222222222222222222222222222222222
                                   3F15000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
         5 FORM         SO_SOFIND_UPDATE
           SAPLSOC3
           LSOC3V11                                    35
    ROLE_SUBST_ACTIVE              3
                                   3
                                   3
    %_STATE                        Y
                                   5
                                   9
    %_PRINT                            000
                                   2222333222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                0 ########
                                   2222222222320000000022222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                    0                 ####
                                   222222222222223222222222222222220000
                                   000000000000000000000000000000000000
    URLA                           URLA
                                   5544222222222222222222222222222222222222
                                   52C1000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    %_KEY                          432D0497CD9B3890E1000000AC101A01####
                                   333433334434333343333333443334330000
                                   432404973492389051000000131011010001
    SY-SUBRC                       0
                                   0000
                                   0000
    REMA                           REMA
                                   5444222222222222222222222222222222222222
                                   25D1000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    %_P0000000001                  X
                                   5
                                   8
    RERE                           RERE
                                   5454222222222222222222222222222222222222
                                   2525000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    %_P0000000002
                                   2
                                   0
    REPA                           REPA
                                   5454222222222222222222222222222222222222
                                   2501000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    %_P0000000003                  U
                                   5
                                   5
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
         4 FORM         VB_CALL_FUNC
           RSM13000
           RSM13000                                  5441
    SAVE_VBPARAM                   #
                                   0
                                   3
    VBPARAM                        432D0497CD9B3890E1000000AC101A010001SO_S
                                   3334333344343333433333334433343333335455
                                   4324049734923890510000001310110100013FF3
    ... +  40                      OFIND_UPDATE              PSAKINDI    10
                                   4444455544542222222222222255444444222233
                                   F69E4F50414500000000000000031B9E49000010
    ... +  80                      0###                             ##
                                   3000222222222222222222222222222220022222
                                   0612000000000000000000000000000001100000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222
                                   0000000000000000000
    VBHDR-VBTCODE                  SO00
                                   54332222222222222222
                                   3F000000000000000000
    VBHDR-VBREPORT                 SAPLSOC3
                                   5454544322222222222222222222222222222222
                                   310C3F3300000000000000000000000000000000
    VBMODCNT                       1
                                   0000
                                   0001
    DLDE                           DLDE
                                   4444222222222222222222222222222222222222
                                   4C45000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBPARAM-VBPHASE                16916512
                                   0
                                   1
    VB_V1_TEST                     #
                                   0
                                   2
    SYST-REPID                     RSM13000
                                   5543333322222222222222222222222222222222
                                   23D1300000000000000000000000000000000000
    HGEN                           HGEN
                                   4444222222222222222222222222222222222222
                                   875E000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    IS_A_ARFC                      #
                                   0
                                   0
    TH_TRUE                        #
                                   0
                                   1
    OFFICE_TASO00                  SO00
                                   5433222222222222222222222222222222222222
                                   3F00000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    TH_FALSE                       #
                                   0
                                   0
    VBDEBUG                        35659808
                                   0
                                   2
    VBSELECT-VBANZAHL              00000
                                   33333
                                   00000
    EWST                           EWST
                                   4555222222222222222222222222222222222222
                                   5734000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    BACK                           BAC
                                   4442222222222222222222222222222222222222
                                   2130000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    TFDIR                          SO_SOFIND_UPDATE              SAPLSOC3
                                   5455444445554454222222222222225454544322
                                   3FF3F69E4F50414500000000000000310C3F3300
    ... +  40                                                    1100000000
                                   2222222222222222222222222222223333333333
                                   0000000000000000000000000000001100000000
    ... +  80                      S            1
                                   52222222222223
                                   30000000000001
    TFDIR-PNAME                    SAPLSOC3
                                   5454544322222222222222222222222222222222
                                   310C3F3300000000000000000000000000000000
    VBFUNC                         SO_SOFIND_UPDATE
                                   545544444555445422222222222222
                                   3FF3F69E4F50414500000000000000
    %_DUMMY$$
                                   2222
                                   0000
    VBID                           432D0497CD9B3890E1000000AC101A01####
                                   333433334434333343333333443334330000
                                   432404973492389051000000131011010001
    VBSTAT-PROC2_REQ
                                   222222222222222
                                   000000000000000
    VB_UPDATE_MODUL_PROCESSED      #
                                   1
                                   C
         3 FORM         VB_V1_EXEC
           RSM13000
           RSM13000                                  5182
    ROLE_SUBST_ACTIVE              3
                                   3
                                   3
    VBMOD_TABL-VBMODE              1
                                   3
                                   1
    VB_COLLECTOR_FB                5
                                   3
                                   5
    SY-REPID                       RSM13000
                                   5543333322222222222222222222222222222222
                                   23D1300000000000000000000000000000000000
    LISL                           LISL
                                   4454222222222222222222222222222222222222
                                   C93C000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    EXISTS_COLLECTOR               #
                                   0
                                   0
    VB_V1_FB                       1
                                   3
                                   1
    VB_V1_NO_UPD_AGAIN_FB          3
                                   3
                                   3
    VBHDR-VBSTATE                  -16759503
                                   F
                                   F
    VB_V1_PROCESSED                #
                                   0
                                   1
    VB_V1_AND_V2_PROCESSED         #
                                   0
                                   2
    SYST                           ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000010002000000000000000000000000
    ... +  40                      ########################################
                                   0000000000000000000000090000000000000008
                                   00020000000100000001000A000000000000000D
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000010009
                                   00000000000000000000000000000000000B0000
    ... + 160                      ################X #############   E0   3
                                   0000000000000000520000000000000222432223
                                   0000000000000000800010000C0000C000500003
    ... + 200                      000       N ####__S                 100
                                   3332222222420000555222222222222222223332
                                   0000000000E00000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    MTAS                           MAS
                                   4452222222222222222222222222222222222222
                                   D130000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBMOD_TABL-VBKEY               432D0497CD9B3890E1000000AC101A01
                                   33343333443433334333333344333433
                                   43240497349238905100000013101101
    VBMOD_TABL-VBFUNC              SO_SOFIND_UPDATE
                                   545544444555445422222222222222
                                   3FF3F69E4F50414500000000000000
    VBMOD_TABL-VBMODCNT            1
                                   0000
                                   0001
    LOC_VBPARAM-VBPHASE            16916512
                                   0
                                   1
    LOC_VBPARAM-VBDEBUG            35659808
                                   0
                                   2
    READ                           READ
                                   5444222222222222222222222222222222222222
                                   2514000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    EXISTS_V2                      #
                                   0
                                   0
    SPACE
                                   2
                                   0
    NEW_VBSTATE                    0
                                   0
                                   0
    VBHDR                          432D0497CD9B3890E1000000AC101A01100PSAKI
                                   3334333344343333433333334433343333355444
                                   43240497349238905100000013101101100031B9
    ... +  40                      NDI                SAPLSOC3
                                   4442222222222222222545454432222222222222
                                   E490000000000000000310C3F330000000000000
    ... +  80                                         SO00
                                   2222222222222222222543322222222222222222
                                   00000000000000000003F0000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                          ###&#65533;sapzoo_SMG_00
                                   22222222222222222222000F7677665544533222
                                   00000000000000000000000F310AFFF3D7F00000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                              :E:
                                   222222223432222
                                   00000000A5A0000
    OFFICE_TASO18                  SO18
                                   5433222222222222222222222222222222222222
                                   3F18000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    LOC_VBPARAM                    432D0497CD9B3890E1000000AC101A010001SO_S
                                   3334333344343333433333334433343333335455
                                   4324049734923890510000001310110100013FF3
    ... +  40                      OFIND_UPDATE              PSAKINDI    10
                                   4444455544542222222222222255444444222233
                                   F69E4F50414500000000000000031B9E49000010
    ... +  80                      0###                             ##
                                   3000222222222222222222222222222220022222
                                   0612000000000000000000000000000001100000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222
                                   0000000000000000000
    SY-XPROG
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
         2 FORM         VB_V1_NORMAL
           RSM13000
           RSM13000                                  3944
    VBHDR-VBCLIINFO                #
                                   0
                                   0
    VB_SYNC_VB                     #
                                   0
                                   1
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    SY-MSGID
                                   22222222222222222222
                                   00000000000000000000
    ROOM_TAPP30                    PP30
                                   5533222222222222222222222222222222222222
                                   0030000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    ADMI                           ADM
                                   4442222222222222222222222222222222222222
                                   14D0000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SY-MSGNO                       000
                                   333
                                   000
    NOTE_NOT_ADDED                 11
                                   0000
                                   000B
    SY-MSGV1
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV2
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV3
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV4
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    LOGO                           LOG
                                   4442222222222222222222222222222222222222
                                   CF70000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBHDR                          432D0497CD9B3890E1000000AC101A01100PSAKI
                                   3334333344343333433333334433343333355444
                                   43240497349238905100000013101101100031B9
    ... +  40                      NDI                SAPLSOC3
                                   4442222222222222222545454432222222222222
                                   E490000000000000000310C3F330000000000000
    ... +  80                                         SO00
                                   2222222222222222222543322222222222222222
                                   00000000000000000003F0000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                          ###&#65533;sapzoo_SMG_00
                                   22222222222222222222000F7677665544533222
                                   00000000000000000000000F310AFFF3D7F00000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                              :E:
                                   222222223432222
                                   00000000A5A0000
         1 MODULE (PBO) VBEXEC
           RSM13000
           RSM13000                                  3793
    VB_V1_NORMAL                   #
                                   0
                                   1
    %_SPACE
                                   2
                                   0
    STOP                           RET
      

    Hi Stephan,
    unless we don't ask for it, please do not post this much content. This might be suitable for support messages, but not for this forum. There might be situations where you get asked for more information, but a post like this one just scares of anyone who might know an answer.
    Also, your thread title does not give any information on your problem, as a "dump when testing web pages" can be anything.
    I would suggest to re-state your question, just giving the information that others need.
    I haven't worked with CRM, but I wonder if this is a custom application or a shipped one.

  • Dump during BAPI_ENTRYSHEET_CREATE calling from Portal

    Hi,
    I am getting dump during creation of Service Entry Sheet using the 'BAPI_ENTRYSHEET_CREATE' when triggering it from Portal end. But if I directly call the FM from ECC6.0 with the same passing values it gives me the success meassage. The dump only occurs when I am triggering it from Portal via another custom RFC funtion module.
       I have checked in ST22 and the message text is like ....." Exception condition "GUI_NO_MODE_AVAILABLE" raised."
    Also have checked the SAP Note1271652 and have suggested to apply kernel patch 184. But kernel patch 185 already been applied as our basis team have confirmed. Can you please help me out of this situaion.
    Thanks & Regards,
    Apurba

    Hi,
    I came across this issue and have blogged a solution that gets round it for our purposes. This may help:
    http://community.altiusconsulting.com/blogs/adamadshead/archive/2009/09/24/bex-analyzer-s-file-upload-bug-when-integrated-with-sap-portal.aspx
    Regards,
    Adam

  • Dump during creation of service entry sheet (ML81N)

    Dump during creation of service entry sheet (ML81N)
    Hi,
    ML81N>Select PO>Enter>goto entry sheet create (empty page)>service entry sheet displayed with internal no. assigned >click tab "service selection">Input PO No.--> enter (here we get Dump ABAP RUNTIME ERROR "TABLE_INVALID_INDEX").
    This is happening only for some POs. What can be the problem?. Is this has something to do with SAP database ???
    - rahul

    Hi,
    it could have the cause that the note 1113220 was missing from your system or that data are inconsistent in your PO.
    If you implemented 1113220 and you still get the dump, please check in transaction ST22 the run time error long text to the dump:
    Parts:
    - How to correct the error?
    - Information on where terminated
    - Source Code Extract -> if you set a breakpoint before the line where the error occured, you could debug the process.
    - Active Calls/Events: if you have an own program displayed here, please check first your program wether it has caused the issue.
    If these do not help to find out the problem cause, please open a SAP ticket and include all of the relevant information regarding the dump.
    Regards,
    Edit

  • How to Use synchronous RFC calls during test run for remote accesses

    there is a Setting for the usage of RFC accesses from a tested system
    using eCATT.
    'X' - Use asynchronous RFC calls during test run for remote accesses
    ' ' - Use synchronous RFC calls during test run for remote accesses
    I developed an eCATT as following :
      SAPGUI ( SAPGUI_1 , Target_system_1 ).
      SAPGUI ( SAPGUI_2 , Target_system_2 ).
    My question is how to run the eCATT in a synchronous RFC calls
    PS: I do not want to change the Target_system to the same one in the
    above script of ecatt.Because I need to run it in 2 different Target
    systems sometime.
    for example, I give a Target_system_3 when run this eCATT
    I want the SAPGUI_1 and SAPGUI_2 run the Target_system_3 but not the
    Target_system_1 or Target_system_2 .
    Could you please tell me how to make it without the changes in script?
    Edited by: Weitong Liu on Mar 24, 2011 9:44 AM

    Hi Liu,
    Weitong Liu wrote:
    > ' ' - Use synchronous RFC calls during test run for remote accesses
    This is the standard option value. Asynchronous are not the standard way and used only for very special purposes.
    Weitong Liu wrote:
    > I developed an eCATT as following :
    >   SAPGUI ( SAPGUI_1 , Target_system_1 ).
    >   SAPGUI ( SAPGUI_2 , Target_system_2 ).
    > My question is how to run the eCATT in a synchronous RFC calls
    The commands will be executed in sequence. So each call will be synchronously replayed against TS1 and TS2.
    What is you issue with this standard procedure?
    Kind regards,
    Christoph

  • Dunp during  testing

    Hi All,
    The following runtime error happened during testing of the  system. the t-cde sued was AS03. When we click on the mastre data the runitme error occurs. Below is the detaisl of the error.
    Runtime Errors         ASSIGN_CAST_WRONG_LENGTH
    Short text
         Wrong assignment of a field symbol in program "SAPLSDSD".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSDSD" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
         The type assigned to one of the field symbols
         is not allowed.
    Error analysis
         In the current program "SAPLSDSD", the ASSIGN ... TYPE ... statement was
         used to assign the type "D" to the field symbol "<%_1_SYSINI>". The length
         defined for this type is 16, but the reference field is 8 characters
         long. The type to be assigned is in the field "S_DESCR-INTTYPE".
    Trigger Location of Runtime Error
        Program     SAPLSDSD
        Include     LSDSDF11
        Row     813
        Module type     (FORM)
        Module Name     PERSONAL_VALUES_CONVERT
    Please suggest...
    Regards,
    arvind

    Hi,
    SAP [Note 1227426|https://service.sap.com/sap/support/notes/1227426] should solve this problem.
    Regards,
    Markus

  • How can I hide non visible layers during test movie ?

    Flash CS5
    I have a layer I am using for construction purposes, it shows though in test movie. If I go to publish settings and untick include hidden layers on the flash tab, when I test movie, my cars don’t appear along the guide lines at all and just pop into view as movie ends.
    How does one hide turned off visibility layers during test movie without affecting hidden guide lines ?
    Envirographics

    If I have a layer that is only acting as a guide for laying things out or whatever, what I do is right click that layer's name and select "Guide" from the menu that appears.  It will not appear in when I use Test Movie

  • ABAP Dump during GRN posting with excise

    Hi Gurus,
    We are using TAXINN procedure. We have created a taxcode V2 and have done all assigenments & condition recordes. We have created a PO with V2 tax code . Now while doing the GRN in MIGO, after excecise capture , its throwing runtime error (ABAP Dump) during Posting. Message is  "Tax code V0 does not exist in Taxinn" . But we have not maintained V0 in PO. We have used V2.
    Answers will be rewarded. Thanks in advance..
    Regards
    Basab

    Check for your condition record
    may be in condition record for plant , material combination you have mantain there V0 tax code.

  • Using internally created certificate for IP-HTTPS lisenter temporarily during testing. Any issues?

    We are planning our Direct Access environment now and plan to also use SSTP VPN on the same box.
    I understand that the best practice is to use a certificate published by a public CA for the outward facing IP-HTTPS listener and we plan to do this however during testing we would like to use a certificate created from our internal CA. If our testing phase
    is successful and we plan to go ahead we would then buy a public CA certificate and replace the internally created one.
    I would just like to know how much of an issue/hassle it would be to do this. I believe that during the DA setup wizard it automatically inserts the certificates you provide. Is it a problem to change it afterward? Do you have uninstall DA and run through the
    wizard again? Thanks.

    Or you can use a Public 30-day trial SSL that is supported on all Clients.
    The hassle of changing it, will be the same as when you are renewing a public SSL certificate in the future. And yes, you have to re-run the wizard again, after you have imported the new SSL certificate on the DA server.

  • Corrupt result display during testing.

    I have a custom UI running TestStand sequences. The sequences call my COM DLL to display results during testing. The results are displayed in a CWnd derived list. The results scroll in the list. If anything interacts with the list (message box, or mouse) the list becomes corrupted (blank lines etc), and eventually the process crashes. This occurs on win2000 but not on WinNT. Any similar problems, or suggestions?
    Also, the COM DLL dialog is run in a user interface thread.

    I have done something very similiar to what you are doing. I have an MFC User interface that runs test sequences. I also have a DLL interface to an active X automation server that the sequences call. The server also displays test progression information sent directly from client applications that the sequences call. I also had problems with my displays working correctly when we moved from NT to 2000. I resolved the problems by upgrading to MFC service pack 5.0 and rebuilt all my components in Windows 2000.
    I hope this helps,
    Steve

  • RPCIPE00 - Dump during import_from_table

    Dear all,
    After an upgrade ( 4.6 to ECC6 non unicode) we are facing a dump during rpcipe00.
    The reason is "import_alignement_mismatch". The class who call this exception is CL_HR_PAY_RESULT_FR.
    I did not found some OSS on that.
    Did someone already face this ?
    Thanks in advance !
    Cheers,
    Mathieu
    FRANCAIS **********
    Bonjour,
    Après un upgrade (de 4.6 vers ECC6.0 non unicode ) nous rencontrons un DUMP lors de l'execution du RPCIPE00. La raison du DUMP est "import_alignement_mismatch" . Cette execption est appelé par la classe CL_HR_PAY_RESULT_FR.
    Avez vous déjà rencontré ce problème ?
    Une piste de recherche ?
    Merci d'avance.
    Bien à vous,
    Mathieu

    During our upgrade from 4.6C to 6.00, we had to convert our IT0224 into IT0461 to IT0464 (Canada), and if I remember correctly we also had to "rebuild" our RT and CRT tables.
    Check the Release Notes on SAP's website, specially those related to Enterprise 47x110.

  • NavigateToURL Works During Testing But Not Once Published

    Trying to create a simply hyperlink in Flash.  Works perfectly during testing.  But when I upload to the net, clicking the link takes me to www.thirdnewhope.com/iamtnh.blogspot.com rather than to just www.iamthn.blogspot.com.  I've tried changing allowscriptaccess to always.  That doesn't work either.  I am stumped :-(
    AS3 code:
    button_1.addEventListener(MouseEvent.CLICK, goClick);
    function goClick(evt:MouseEvent):void {
       var url:String = "http://www.iamtnh.blogspot.com";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req, "_blank");
    HTML code:
    <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="400" id="events2013" align="middle">
                    <param name="movie" value="events2013.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#000000" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="events2013.swf" width="560" height="400">
                        <param name="movie" value="events2013.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#000000" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="window" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>

    WOW!!!  Knew it would be something simple causing so much pain :-)  Thank you kglad!!!

  • Why does my site look nothing like the design and during testing once uploaded to the server?

    Why does my site look nothing like the design and during testing once uploaded to the server?,
    Im using Muse whichj crashes like you would not beleive, but after much perseverance I got a basic 4 page holding site together, I tested the site and it all looked fine, when I uploaded it to the server it looks nothing like the site I tested, to the point that even the background has changed colour and nothing is in the rite place.

    Hi John, Sure it's
    http://www.thezine.co.uk
    thanks
    it should be looking like this

  • Short dump during activating the BC Set in SCPR20 - "GETWA_NOT_ASSIGNED"

    Hi experts,
    We have upgraded from SRM 4 to 7.0.We are facing an issue when activating the BC Set in SCPR20. A short dump is occuring inside the program 'VIRSA/SAPLZVIR'. We got the solution that some correction instructions mentioned in the SAP Note 1095700 needs to be mplemented. The steps mentioned in the Note are,
    1) Run transaction SE54 and click the button 'Edit Function Group'.
    2) Next, enter the name of the function group /VIRSA/ZVR1.
    3) Select the radio button option 'Re-generate group-specific programs',and press the 'Change' button.
    4) In the following popup please mark only the option 'structure spec.data declaration renewal' and press enter.
    We were able to proceed with the first two steps but stuck up during the execution of step3. When we selected the radio button u2018Re-generate group-specific programsu2019 and when clicked on the change button, we are getting a message like u2018the name space u2018/VIRSA/ZVR1u2019 does not exists. Because of this we are not able to proceed with the last step.
    Kindly provide some ponters as of how to overcome this issue ..
    Thanks in advance,
    Dhan

    Hi there,
    To overcome this error you need to go to se06 and make the "/VIRSA/" namespace as Modifiable.
    Also, you should have a look at the following note if my first suggestion doesn't work.
    1041089 Tx SCPR20: GETWA_NOT_ASSIGNED dump during BC Set activation
    Hope this helps.
    Kind Regards,
    Matthew

  • Short dump during ME23N transaction due to missing field in KOMP table

    Hi All,
    We have just upgraded to Business Suite 7.0 and are experiencing the following error:
    Short dump during processing of transaction ME23N - error is in program SAPLV61A when the system calls the following field: KOMP_SERVICE_PARAM2 (this does not exist in KOMP). We need to get this resolved as soon as possible, It appears that SAP have removed this field from the table KOMP but the standard programme is still looking for this field. Can anyone provide an oss note number or insight into how to resolve this issue please.
    Many Thanks
    Amanda

    Dear,
    This problem is caused by a missing initialization of the structure KOMP in the program SAPLV61A.
    The problem may also occur during , when the "Create PO automatically" indicator (TVAP-ALEKZ) is set for the relevant item category in the item category Customizing (transaction VOV7). In this case, the data of the purchase order item that was previously processed is used for the back update of the sales order from the purchase order in KOMP.
    Add the following import parameter to the function module RV_KONV_SELECT:
        Parameter name        COMM_ITEM_I
        Typing          LIKE
        Associated type            KOMP
        Optional        X
        Pass Value       X
    Please refer the OSS note 1261566.
    Regards,
    R.Brahmankar

Maybe you are looking for

  • Stock Value (VPRS- VRPRS ) doubled in COPA

    Dear Gurus, In COPA the value field  (VRPRS) stock value shows the exactly double., where as in the sales order it shows correctly. Is there is any way to correct the error of showing the VRPRS as exactly double for documents already posted for prior

  • Looking for an lcd replacemen​t screen. Not sure which one is needed.

    Hello, first time on this forum so I apologize if this is the wrong place to post this. I recently received a Toshiba Satellite with a broken lcd screen, first time I've ever worked on a laptop. Removed the screen without a hitch but I am not sure ex

  • Urgent!!!! - Problem in storing encrypte word into SQL Server database

    Hi, I want to encrypt a word using DES algorithm and store in the database.I am using Microsoft SQL Server 2000 database. I have tried giving the datatype as varchar,binary etc. but i am not able to store a byte array.Here is my code. Plz help me to

  • Formula node: Else if

    I want to use a formula node to make my code smaller. I'm comparing a sensor value and depending on the value i have 3 options. At the moment i get the error that labview thinks my 'Else if ' is a variabel instead of a command. am i doing something w

  • Have i lost my library forever???

    Hi all, I know other people have asked this. I have my itunes library on a pc which has recently packed up. The computer does not power up the hard drive so i have no way of getting in to it. I have bought a laptop to replace it and now need to retri