Hi,
Regarding this issue, you can check SAP Note 636847 - "Composite SAP note ORA-19511" for troubleshooting.
Regards,
Bíborka
Hi,
Regarding this issue, you can check SAP Note 636847 - "Composite SAP note ORA-19511" for troubleshooting.
Regards,
Bíborka
Yes I use the runtime packager to create msi fo pb.net runtimes and for pb classic runtimes.
There is currently no time frame available for the fix, but the engineering already investigated in this issue.
If you want to give this issue a priority, please send me a support incidents, which I can forward to the engineering.
Hi Santhosh.
Every conversion you make is only for Display. NUMC always contains only digits from 0 to 9, but no space.
If you need to have the value as it was entered, you have to change the type of the database-field to CHAR5.
Regards,
Peer.
Hi,
What about creating an update FM and put the logic to fill the Item Text and fetch the PR number from data base and finally call your FM in UPDATE task inside your implemented EXIT .
But the issue might be we are not sure whether the PR is committed first OR the UPDATE FM will commit first?
Just Give it a try and check in debug mode.
Regards,
Syed
HI Inaki,
Thanks for your reply.
We are looking something more on this. Suppose user logged into the system and performed some action(like payload edit or resend) on payload, we need that information as well in the log.
any idea on that?
Regards,
Tulasiram.
I've the same issue and my SY-SUBRC is 7. which is buffer overflow.
I believe. I checked my number range and it is good, what do I do for buffer overflow.
Category ABAP Programming Error Runtime Errors RAISE_EXCEPTION ABAP Program SAPLV00F Application Component CA-GTF-BS-SQ Date and Time 04/01/2016 09:09:09 Short text Exception condition "NUMBER_RANGE" raised. What happened? The current ABAP/4 program encountered an unexpected situation. What can you do? Note down which actions and inputs caused the error. To process the problem further, contact you SAP system administrator. Using Transaction ST22 for ABAP Dump Analysis, you can look at and manage termination messages, and you can also keep them for a long time. Error analysis A RAISE statement in the program "SAPLCTMV" raised the exception condition "NUMBER_RANGE". Since the exception was not intercepted by a superior program, processing was terminated. Short description of exception condition: For detailed documentation of the exception condition, use Transaction SE37 (Function Library). You can take the called function module from the display of active calls. - How to correct the error If the error occures in a non-modified SAP program, you may be able to find an interim solution in an SAP Note. If you have access to SAP Notes, carry out a search with the following keywords: "RAISE_EXCEPTION" " " "SAPLCTMV" or "LCTMVF34" "GET_NEW_ATINN" or "SAPLCTMV" "NUMBER_RANGE" or "SAPLCTMV " "NUMBER_RANGE" 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..... 702 SAP Basis Level. 0012 Application server... "sape8pv" Network address...... "10.45.184.110" Operating system..... "AIX" Release.............. "7.1" Hardware type........ "00C644B74C00" Character length.... 16 Bits Pointer length....... 64 Bits Work process number.. 12 Shortdump setting.... "full" Database server... "sape8pv-n1" Database type..... "ORACLE" Database name..... "E8P" Database user ID.. "SAPSR3" Terminal.......... "WHQWBZ427R1L" Char.set.... "C" SAP kernel....... 720 created (date)... "Dec 16 2012 19:51:17" create on........ "AIX 2 5 00092901D600" Database version. "OCI_102, 11.2.0.2.0, V1, default" Patch level. 400 Patch text.. " " Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*" SAP database version. 720 Operating system..... "AIX 2 5, AIX 3 5, AIX 1 6, AIX 1 7" Memory consumption Roll.... 0 EM...... 8379584 Heap.... 0 Page.... 57344 MM Used. 2974224 MM Free. 1212896 User and Transaction Client.............. 100 User................ "KANNANBK" Language key........ "E" Transaction......... "CT04 " Transaction ID...... "56FD5488CF9E1190E10080000A2DB836" EPP Whole Context ID.... "56FD5294CF9E1190E10080000A2DB836" EPP Connection ID....... 00000000000000000000000000000000 EPP Caller Counter...... 0 Program............. "SAPLCTMV" Screen.............. "SAPLCTMV 2100" Screen Line......... 29 Debugger Active..... "none" Information on where terminated Termination occurred in the ABAP program "SAPLCTMV" - in "GET_NEW_ATINN". The main program was "SAPLCTMV ". In the source code you have the termination point in line 112 of the (Include) program "LCTMVF34". Source Code Extract Line SourceCde 82 space. 83 endif. 84 endif. 85 86 87 *....Get new number for 'regular' characts.............................. 88 else. 89 90 CALL FUNCTION 'NUMBER_GET_NEXT' 91 EXPORTING 92 NR_RANGE_NR = nr_kreis 93 OBJECT = 'MERKMAL' 94 * QUANTITY = '1' 95 * SUBOBJECT = ' ' 96 * TOYEAR = '0000' 97 * IGNORE_BUFFER = ' ' 98 IMPORTING 99 NUMBER = e_charact_id 100 * QUANTITY = 101 * RETURNCODE = 102 EXCEPTIONS 103 INTERVAL_NOT_FOUND = 1 104 NUMBER_RANGE_NOT_INTERN = 2 105 OBJECT_NOT_FOUND = 3 106 QUANTITY_IS_0 = 4 107 QUANTITY_IS_NOT_1 = 5 108 INTERVAL_OVERFLOW = 6 109 BUFFER_OVERFLOW = 7 110 OTHERS = 8. 111 if not sy-subrc is initial. >>>>> raise number_range. 113 endif. 114 115 **....Check number range overflow....................................... 116 if e_charact_id is initial 117 or ( e_charact_id ge 9999940000 118 and e_charact_id le max_atinn ) . 119 raise number_range. 120 endif. 121 122 endif. 123 124 125 *....Check number is free............................................... 126 select single atnam "#EC * 127 into l_atnam 128 from cabn 129 where atinn eq e_charact_id. 130 if sy-subrc is initial. 131 raise number_range. Contents of system fields Name Val. SY-SUBRC 7 SY-INDEX 1 SY-TABIX 1 SY-DBCNT 1 SY-FDPOS 30 SY-LSIND 0 SY-PAGNO 0 SY-LINNO 1 SY-COLNO 1 SY-PFKEY BASISLEER SY-UCOMM ANLE SY-TITLE Characteristics SY-MSGTY E SY-MSGID NR SY-MSGNO 031 SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4 SY-MODNO 0 SY-DATUM 20160401 SY-UZEIT 090909 SY-XPROG SAPCNVE SY-XFORM CONVERSION_EXIT Active Calls/Events No. Ty. Program Include Line Name 9 FORM SAPLCTMV LCTMVF34 112 GET_NEW_ATINN 8 FORM SAPLCTMV LCTMVFA1 190 FEATURE_NEUTRAL 7 FORM SAPLCTMV LCTMVF8Z 63 OK-CODE_ANLE 6 FORM SAPLV00F LV00FF0F 205 FCODE_BEARBEITEN 5 FUNCTION SAPLV00F LV00FU02 44 SCREEN_SEQUENCE_CONTROL 4 FORM SAPLCTMV LCTMVF99 182 OK_CODE 3 MODULE (PAI) SAPLCTMV LCTMVI3C 16 OK_CODE 2 FUNCTION SAPLCTMV LCTMVU36 239 BUS1088_START_TRANSACTION 1 MODULE (PBO) SAPLCTMV LCTMVO91 100 D0102_PBO Chosen variables Name Val. No. 9 Ty. FORM Name GET_NEW_ATINN %_DUMMY$$ 0000 0000 2222 0000 0020002000200020 SY-REPID SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 SYST-REPID SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 %_SPACE 0 0 2 0 0020 ALL_LANGUAGES * 0 0 2 A 002A TEXT_HEADER_TAB-TDSPRAS 0 0 2 0 0020 %_FL1*TC_REFRE <> SPACE 0 0 2 0 0020 ZAHLEN 0123456789, 000000000000 000000000000 333333333322 0123456789C0 0030003100320033003400350036003700380039002C0020 SY-SUBRC 7 0000 0007 00000007 TEXT_HEADER_TAB-TDID 0000 0000 2222 0000 0020002000200020 RCTMV-PAGSU 0000 0000 0000 3333 0000 0030003000300030 E_CHARACT_ID 0000000000 0000000000 0000000000 3333333333 0000000000 0030003000300030003000300030003000300030 FORMAT_CHAR CHAR 0000 0000 4445 3812 0043004800410052 MAX_ATINN 9999999997 0000000000 0000000000 3333333333 9999999997 0039003900390039003900390039003900390037 No. 8 Ty. FORM Name FEATURE_NEUTRAL SY-MSGV4 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 22222222222222222222222222222222222222222222222222 00000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 BILDFOLGE[] Table IT_336[1x40] \FUNCTION-POOL=CTMV\DATA=BILDFOLGE[] Table reference: 131 TABH+ 0(20) = 0A000100001C6570000000000000000000000000 TABH+ 20(20) = 00000083000001500000000100000028FFFFFFFF TABH+ 40(16) = 04000000000BFD400005249003000000 store = 0x0A000100001C6570 ext1 = 0x0000000000000000 shmId = 0 (0x00000000) id = 131 (0x00000083) label = 336 (0x00000150) fill = 1 (0x00000001) leng = 40 (0x00000028) loop = -1 (0xFFFFFFFF) xtyp = TYPE#000125 occu = 5 (0x00000005) accKind = 1 (ItAccessStandard) idxKind = 0 (ItIndexNone) uniKind = 2 (ItUniNo) keyKind = 1 (default) cmpMode = 2 (cmpSingleMcmpR) occu0 = 0 stMode = 0 groupCntl = 0 rfc = 0 unShareable = 0 mightBeShared = 0 sharedWithShmTab = 0 isShmLockId = 0 isUsed = 1 isCtfyAble = 1 hasScndKeys = 0 hasRowId = 0 scndKeysOutdated = 0 scndUniKeysOutdated = 0 ----- Shareable Table Header Data ----- tabi = 0x0A00010000380420 pgHook = 0x0000000000000000 idxPtr = 0x0000000000000000 id = 306 (0x00000132) shmTabhSet = 0x0000000000000000 refCount = 0 (0x00000000) tstRefCount = 0 (0x00000000) lineAdmin = 5 (0x00000005) lineAlloc = 5 (0x00000005) shmVersId = 0 (0x00000000) shmRefCount = 1 (0x00000001) rowId = 18446744073709551615 scndKeyAdmin = 0x0000000000000000 BASI 00000000000000000000 00000000000000000000 44542222222222222222 21390000000000000000 00420041005300490020002000200020002000200020002000200020002000200020002000200020 SCREEN_SEQUENCE[] Table IT_299[1x510] \FUNCTION-POOL=CTMV\FORM=OK-CODE_ANLE\DATA=L_SCREEN_SEQUENCE[] Table reference: 115 TABH+ 0(20) = 0A00010000285100000000000000000000000000 TABH+ 20(20) = 000000730000012B00000001000001FEFFFFFFFF TABH+ 40(16) = 04000000000C3A300004249403000000 store = 0x0A00010000285100 ext1 = 0x0000000000000000 shmId = 0 (0x00000000) id = 115 (0x00000073) label = 299 (0x0000012B) fill = 1 (0x00000001) leng = 510 (0x000001FE) loop = -1 (0xFFFFFFFF) xtyp = TYPE#000450 occu = 4 (0x00000004) accKind = 1 (ItAccessStandard) idxKind = 0 (ItIndexNone) uniKind = 2 (ItUniNo) keyKind = 1 (default) cmpMode = 2 (cmpSingleMcmpR) occu0 = 1 stMode = 0 groupCntl = 0 rfc = 0 unShareable = 0 mightBeShared = 0 sharedWithShmTab = 0 isShmLockId = 0 isUsed = 1 isCtfyAble = 1 hasScndKeys = 0 hasRowId = 0 scndKeysOutdated = 0 scndUniKeysOutdated = 0 ----- Shareable Table Header Data ----- tabi = 0x0A00010000285180 pgHook = 0x0000000000000000 idxPtr = 0x0000000000000000 id = 273 (0x00000111) shmTabhSet = 0x0000000000000000 refCount = 0 (0x00000000) tstRefCount = 0 (0x00000000) lineAdmin = 4 (0x00000004) lineAlloc = 4 (0x00000004) shmVersId = 0 (0x00000000) shmRefCount = 1 (0x00000001) rowId = 18446744073709551615 scndKeyAdmin = 0x0000000000000000 BASI 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4454222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 2139000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0042004100530049002000200020002000200020002000200020002000200020002000200020002000200020002000 SCREEN_SEQUENCE BASI 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4454222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 2139000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0042004100530049002000200020002000200020002000200020002000200020002000200020002000200020002000 BILDFOLGE BASI 00000000000000000000 00000000000000000000 44542222222222222222 21390000000000000000 00420041005300490020002000200020002000200020002000200020002000200020002000200020 TRTYP H 0 0 4 8 0048 ANLEGEN H 0 0 4 8 0048 ANLEGENVORL V 0 0 5 6 0056 *CABN 00000000000000 ## 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333333322222222222222222222222222222222222200222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030003000300030003000200020002000200020002000 FEATURE_NAME TEST001 000000000000000000000000000000 000000000000000000000000000000 545533322222222222222222222222 453400100000000000000000000000 0054004500530054003000300031002000200020002000200020002000200020002000200020002000200020002000 ID_NEUTRAL 0000000000 0000000000 0000000000 3333333333 0000000000 0030003000300030003000300030003000300030 REFERENCE_FEATURE 000000000000000000000000000000 000000000000000000000000000000 222222222222222222222222222222 000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 SY-UNAME KANNANBK 000000000000 000000000000 444444442222 B1EE1E2B0000 004B0041004E004E0041004E0042004B0020002000200020 S_KEY_DATE 20160401 00000000 00000000 33333333 20160401 00320030003100360030003400300031 No. 7 Ty. FORM Name OK-CODE_ANLE GF_RETURN_TO_CALLER 0 0 2 0 0020 L_SCREEN_SEQUENCE[] Table IT_299[1x510] L_SCREEN_SEQUENCE-BILD BASI 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4454222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 2139000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0042004100530049002000200020002000200020002000200020002000200020002000200020002000200020002000 %_CX_TABSTRIP_VERSION 0 0 0 3 0 0030 L_SCREEN_SEQUENCE BASI 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4454222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 2139000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0042004100530049002000200020002000200020002000200020002000200020002000200020002000200020002000 GF_FM_CALL X 0 0 5 8 0058 CABN_TMP-ATSCH 000000000000000000000000000000 000000000000000000000000000000 222222222222222222222222222222 000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 RSJOBINFO 00000000000000 ## 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 RCTAV-ATNAM TEST001 000000000000000000000000000000 000000000000000000000000000000 545533322222222222222222222222 453400100000000000000000000000 0054004500530054003000300031002000200020002000200020002000200020002000200020002000200020002000 RCTAV-DATUV 20160401 00000000 00000000 33333333 20160401 00320030003100360030003400300031 RCTAV-AENNR 000000000000 000000000000 222222222222 000000000000 002000200020002000200020002000200020002000200020 CABNZ 0000000000 0000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030002000200020002000200020002000200020002000 ATLTX 00000000000000 00000000000000 00000000000000 33333333333333 00000000000000 00300030003000300030003000300030003000300030003000300030 RCTAV-REF_AENNR 000000000000 000000000000 222222222222 000000000000 002000200020002000200020002000200020002000200020 CABN 00000000000000 ## 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333333322222222222222222222222222222222222200222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030003000300030003000200020002000200020002000 RCTAV-REF_DATUV 00000000 00000000 00000000 33333333 00000000 00300030003000300030003000300030 No. 6 Ty. FORM Name FCODE_BEARBEITEN T185V-CDYNPRO 0000 0000 0000 3333 0000 0030003000300030 SY-REPID SAPLV00F 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454533422222222222222222222222222222222 310C600600000000000000000000000000000000 005300410050004C005600300030004600200020002000200020002000200020002000200020002000200020002000 SY-MSGV2 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 22222222222222222222222222222222222222222222222222 00000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 AN 0 0 0 3 0 0030 CHAR-B B 0 0 4 2 0042 TKKPA-PFADN 0000 0000 2222 0000 0020002000200020 CHAR-L L 0 0 4 C 004C N-STACK ## 01 0C 001C CHAR-Z Z 0 0 5 A 005A ??? ?????? ?????? ???????????? T185E-AGIDV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 2222222222222222222222222222222222222222 0000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 SY-DYNNR 2100 0000 0000 3333 2100 0032003100300030 SY-MSGV4 00000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000 22222222222222222222222222222222222222222222222222 00000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 T185V-CPROG SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 SYST #######################################L#######################################À#######린XI#Ԁ## 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FB000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000F9000500 0000000000000000000000010000000000000004000000000000000000000000000000000000010C000000FB540000 01000100000000000000010E010001000000000C0000000704000000000000000000000000000C00000B00F089000C 0000000100000000000000010000000000000000000000000000000000000000000000000000000000000001000000 T185V-CMODUL OK-CODE_ANLE 000000000000000000000000000000 000000000000000000000000000000 442444454444222222222222222222 FBD3F45F1EC5000000000000000000 004F004B002D0043004F00440045005F0041004E004C00450020002000200020002000200020002000200020002000 SYST-REPID SAPLV00F 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454533422222222222222222222222222222222 310C600600000000000000000000000000000000 005300410050004C005600300030004600200020002000200020002000200020002000200020002000200020002000 T185F SAPLCTMV *BASI A X0B 000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000 545445452222222222222222222222222222222224454222222222222222242225342 310C34D600000000000000000000000000000000A2139000000000000000010008020 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 T185 SAPLCTMV ANLE TA* CHAR* TA* BASI 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 5454454522222222222222222222222222222222444422222222222222225422224445222254222244542222222222 310C34D6000000000000000000000000000000001EC5000000000000000041A0003812A00041A00021390000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 T185V SAPLCTMV TA* 0000#### 0000####0000#### 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 5454454522222222222222222222222222222222542222333300002333300003333000022222222222222222222222 310C34D60000000000000000000000000000000041A0000000CCCC00000CCCC0000CCCC00000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 MODUL-POOL SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 DIALOG_ANT 0 0 2 0 0020 DA_N-STACK ## 01 0C 001C No. 5 Ty. FUNCTION Name SCREEN_SEQUENCE_CONTROL FUNKTION ANLE 00000000000000000000 00000000000000000000 44442222222222222222 1EC50000000000000000 0041004E004C00450020002000200020002000200020002000200020002000200020002000200020 KOPFGRUPPE CHAR 0000 0000 4445 3812 0043004800410052 POSITIONSGRUPPE * 0000 0000 2222 A000 002A002000200020 PROGRAMM SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 TYP 0 0 2 0 0020 AKTYP 0 0 2 0 0020 CUA_PARA1 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 CUA_PARA2 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 CUA_PARA3 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 CUA_PARA4 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 CUA_STATUS 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 CUA_TITEL 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 DUNKEL 0 0 2 0 0020 DYNPROBAUSTEIN1 0000 0000 0000 3333 0000 0030003000300030 DYNPROBAUSTEIN2 0000 0000 0000 3333 0000 0030003000300030 FOLGEFUNKTION 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 LEAVE 0 0 2 0 0020 PANEL 0000 0000 2222 0000 0020002000200020 AGIDV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 2222222222222222222222222222222222222222 0000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 STACKZ[] Table[initial] OLD ENT2 BN* A 000000000000000000000000000 000000000000000000000000000 445322222222222222224422224 5E4200000000000000002EA0001 0045004E0054003200200020002000200020002000200020002000200020002000200020002000200042004E002A00 %_SPACE 0 0 2 0 0020 FLAG-ENDE 0 0 2 0 0020 FC_TYP 0 0 0 3 0 0030 FLAG-REKURSIV 0 0 2 0 0020 T185E-UNAME KANNANBK 000000000000 000000000000 444444442222 B1EE1E2B0000 004B0041004E004E0041004E0042004B0020002000200020 T185F-AGIDV SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 CATTAKTIV 0 0 2 0 0020 TADIR 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 FLAG-LEAVE_RES 0 0 2 0 0020 FLAG-LEAVE 0 0 2 0 0020 FLAG-MESSAGE 0 0 2 0 0020 SY-XFORM CONVERSION_EXIT 000000000000000000000000000000 000000000000000000000000000000 444545544454545222222222222222 3FE65239FEF5894000000000000000 0043004F004E00560045005200530049004F004E005F00450058004900540020002000200020002000200020002000 No. 4 Ty. FORM Name OK_CODE LW_CAWN 000000000000000000 ######### 000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333333333332222222222222222222222222222220000000002222222222233333333333322222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030003000300030003000300030003000300020002000 %_CX_TABSTRIP_ID 3 0000 0003 00000003 FBS-FUNKTION ANLE 00000000000000000000 00000000000000000000 44442222222222222222 1EC50000000000000000 0041004E004C00450020002000200020002000200020002000200020002000200020002000200020 *CABNT 0000000000 0000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333233332222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030002000300030003000300020002000200020002000 -ATBEZ ??? ?????? ?????? ???????????? SPRAS_TAB 0 0 2 0 0020 FBS-KOPFGRUPPE CHAR 0000 0000 4445 3812 0043004800410052 SPRAS_WERTEBEZ[] Table[initial] FBS-POSITIONSG * 0000 0000 2222 A000 002A002000200020 SPRAS_WERTEBEZ 0000000000000000000000000000000000 0000000000000000000000000000000000 2222222222222222222222222222222222 0000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 FBS-PROGRAM SAPLCTMV 0000000000000000000000000000000000000000 0000000000000000000000000000000000000000 5454454522222222222222222222222222222222 310C34D600000000000000000000000000000000 005300410050004C00430054004D005600200020002000200020002000200020002000200020002000200020002000 CAWNT-SPRAS 0 0 2 0 0020 FBS-AKTYP 0 0 2 0 0020 -ATUE2 ??? ?????? ?????? ???????????? FBS-CUA_PARA1 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 TC_CABNT-LINES 0 0000 0000 00000000 FBS-CUA_PARA2 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 FBS-CUA_PARA3 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 LH_ATWTB 000000000000000000000000000000 000000000000000000000000000000 222222222222222222222222222222 000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 FBS-CUA_PARA4 0000000000000000 0000000000000000 2222222222222222 0000000000000000 0020002000200020002000200020002000200020002000200020002000200020 -ATUE1 ??? ?????? ?????? ???????????? FBS-CUA_TITEL 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 LW_CAWN-ATZHL 0000 0000 0000 3333 0000 0030003000300030 FBS-DUNKEL 0 0 2 0 0020 ??? ?????? ?????? ???????????? FBS-FOLGEFUNKT 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 ??? ?????? ?????? ???????????? FBS-LEAVE 0 0 2 0 0020 No. 3 Ty. MODULE (PAI) Name OK_CODE DYNPRO_LINE 0000 0000 0000 3333 0000 0030003000300030 FELDNAME 00000000000000000000 00000000000000000000 22222222222222222222 00000000000000000000 00200020002000200020002000200020002000200020002000200020002000200020002000200020 WERT VALU 0000 0000 5445 61C5 00560041004C0055 OK_CODE2 ANLE 0000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000 4444222222222222222222222222222222222222222222222222222222222222222222 1EC5000000000000000000000000000000000000000000000000000000000000000000 0041004E004C0045002000200020002000200020002000200020002000200020002000200020002000200020002000 G_ENJOY X 0 0 5 8 0058 No. 2 Ty. FUNCTION Name BUS1088_START_TRANSACTION ACTION 0000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 CHANGE_NUMBER 000000000000 000000000000 222222222222 000000000000 002000200020002000200020002000200020002000200020 CHARACTERISTIC 000000000000000000000000000000 000000000000000000000000000000 222222222222222222222222222222 000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 FREE_MODE X 0 0 5 8 0058 KEY_DATE 00000000 00000000 00000000 33333333 00000000 00300030003000300030003000300030 EXIT_MODE 0000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 CABN_I 00000000000000 ## 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2223333333333333322222222222222222222222222222222222200222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200030003000300030003000300030003000300030003000300030003000200020002000200020002000 GF_AUTH_CREATE X 0 0 5 8 0058 SY-BINPT 0 0 2 0 0020 R185D 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 G_FM_EXIT 0000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 SY #######################################L#######################################À#######린XI#Ԁ## 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FB000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000F9000500 0000000000000000000000010000000000000004000000000000000000000000000000000000010C000000FB540000 01000100000000000000010E010001000000000C0000000704000000000000000000000000000C00000B00F089000C 0000000100000000000000010000000000000000000000000000000000000000000000000000000000000001000000 No. 1 Ty. MODULE (PBO) Name D0102_PBO L_ACTION 0000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 DYNP_FIELD_TAB 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 L_ATNAM 000000000000000000000000000000 000000000000000000000000000000 222222222222222222222222222222 000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 L_DATUV 00000000 00000000 00000000 33333333 00000000 00300030003000300030003000300030 SPRAS_WERTEBEZ-MARK 0 0 2 0 0020 CLASSES 0000000000 0000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3333333333222222222222222222222222222222222222222222222222222222222222233333332222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0030003000300030003000300030003000300030002000200020002000200020002000200020002000200020002000 DD03P_TAB[] Table[initial] LF_FREE_MODE X 0 0 5 8 0058 LANGTEXT_TAB[] Table[initial] LANGTEXT 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000 %_PRINT 000 0### 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0020002000200020003000300030002000200020002000200020002000200020002000200020002000200020002000 Internal notes The termination was triggered in function "ab_jfune" of the SAP kernel, in line 3064 of the module "//bas/720_REL/src/krn/runt/abfunc.c#10". The internal operation just processed is "FUNE". Internal mode was started at 20160401090907. Active Calls in SAP Kernel Lines of C Stack in Kernel (Structure Differs on Each Platform) => 64 bit R/3 Kernel => 64 bit AIX Kernel => Heap limit = unlimited => Stack limit = 33554432 => Core limit = 4294967296 => File size limit = unlimited => Heap address = 0x12a3af6c0 => Stack address = 0xfffffffffff53a0 => Stack low = 0xfffffffffff53a0 => Stack high = 0xffffffffffff820 => Stack Trace: AixStack() at 0x10004729c CTrcStack2() at 0x1000473bc CTrcStack() at 0x100047438 rabax_CStackSave__Fv@AF171_21() at 0x10007fe54 ab_rabax() at 0x100070f18 ab_jfune__Fv() at 0x100f6e0b4 ab_extri__Fv() at 0x100a1202c ab_xevent__FPCUs() at 0x100b14f64 ab_dstep() at 0x100819be8 dynpmcal() at 0x1012761a8 dynppai0() at 0x1012733ac dynprctl() at 0x10127ba64 dynpen00() at 0x101261b14 Thdynpen00() at 0x10009c3c0 Unknown at 0x10009e908 ThStart() at 0x1000be160 DpMain() at 0x101f62648 nlsui_main() at 0x102a29608 List of ABAP programs affected Index Typ Program Group Date Time Size Lang. 0 Prg SAPLCTMV 0 05/09/2013 01:58:39 896000 E 1 Prg SAPMSSYD 0 05/09/2013 08:03:19 25600 E 2 Prg SAPFSYSCALLS 0 09/09/2004 14:18:32 8192 E 3 Prg SAPLCLOPFI 3 11/19/2001 16:12:29 44032 E 4 Typ CABN 0 05/09/2013 00:22:52 12288 5 Prg SAPLITSR 5 09/10/2009 10:53:39 131072 E 6 Typ FMRFC 0 05/09/2013 00:24:18 2048 7 Typ TBE01 0 01/20/2003 16:41:38 2048 8 Typ TBE31 0 09/03/1997 03:01:11 2048 9 Typ TBE32 0 09/03/1997 03:27:20 3072 10 Typ TBE34 0 09/03/1997 03:27:24 3072 11 Typ RCTAV 0 09/18/2001 10:03:40 5120 12 Typ RCTMV 0 09/18/2001 10:03:40 13312 13 Prg CL_ABAP_TYPEDESCR=============CP 13 05/09/2013 00:47:07 33792 E 14 Prg CL_ABAP_ELEMDESCR=============CP 14 05/09/2013 00:46:24 41984 E 15 Prg CL_ABAP_DATADESCR=============CP 15 05/09/2013 00:46:02 21504 E 16 Prg CL_ABAP_REFDESCR==============CP 16 05/09/2013 00:46:45 34816 E 17 Prg CL_ABAP_STRUCTDESCR===========CP 17 05/09/2013 00:46:51 49152 E 18 Prg CL_ABAP_COMPLEXDESCR==========CP 18 05/09/2013 00:45:53 19456 E 19 Prg CL_ABAP_TABLEDESCR============CP 19 05/09/2013 00:46:56 37888 E 20 Prg CL_ABAP_CLASSDESCR============CP 20 05/09/2013 00:45:43 34816 E 21 Prg CL_ABAP_OBJECTDESCR===========CP 21 05/09/2013 00:46:39 37888 E 22 Prg CL_ABAP_INTFDESCR=============CP 22 05/09/2013 00:46:31 27648 E 23 Prg CL_ABAP_SOFT_REFERENCE========CP 23 07/05/2005 13:10:15 10240 E 24 Prg CL_ABAP_REFERENCE=============CP 24 09/09/2004 14:18:16 8192 E 25 Typ TCME 0 07/10/1997 00:11:19 2048 26 Typ TCLAT 0 02/14/1998 12:50:08 2048 27 Typ TCLA 0 12/01/1999 15:20:26 6144 28 Prg %_CCXTAB 0 02/18/2005 14:15:08 8192 E 29 Typ SCXTAB_CONTROL 0 05/18/2004 14:07:29 6144 30 Typ CAWN 0 05/09/2013 00:19:55 6144 31 Typ CAWNT 0 09/18/2001 10:02:29 3072 32 Typ CABNT 0 09/18/2001 10:02:27 3072 33 Typ T002 0 09/10/2007 14:53:12 2048 34 Prg SAPLV00F 34 03/07/2005 08:51:06 84992 E 35 Typ T185 0 02/22/2001 10:04:41 5120 36 Typ T185F 0 08/14/1997 21:32:52 3072 37 Prg SAPLSHD0 37 05/09/2013 00:57:05 268288 E 38 Prg SAPLSDI0 38 05/09/2013 00:56:16 40960 E 39 Prg SAPLSUGS 39 05/06/2013 09:26:47 92160 E 40 Prg SAPLCLTB 40 11/19/2001 16:12:36 10240 E 41 Prg SAPFSPOR 0 09/10/2009 11:00:45 16384 E 42 Prg SAPLSCNT 42 02/18/2005 14:16:06 34816 E 43 Typ DYCBOX 0 08/20/1998 11:16:53 3072 44 Prg SAPLSVSM 44 05/09/2013 01:03:09 33792 E 45 Prg SAPLSGUI 45 12/17/2010 17:23:21 105472 E 46 Prg SAPLSTTM 46 07/05/2005 13:10:18 79872 E 47 Prg SAPLSBDC 47 12/17/2007 15:30:54 48128 E 48 Prg CL_DATAPROVIDER===============CP 48 09/10/2009 07:42:20 57344 E 49 Prg SAPSHDTV 42 05/09/2013 08:22:09 38912 E 50 Typ SHDSTU 0 12/14/1998 23:15:34 2048 51 Typ SHDSTCIU 0 12/14/1998 23:15:34 2048 52 Prg SAPLSDBT 52 07/05/2005 13:10:14 17408 E 53 Typ DD02L 0 11/19/2001 15:49:25 6144 54 Prg SAPLSDB1 54 07/03/2006 10:41:12 46080 E 55 Prg SDB1FORA 54 05/09/2013 07:50:45 94208 E 56 Prg SDB2FORA 54 05/09/2013 08:03:21 309248 E 57 Prg SAPLSDSB 57 05/06/2013 09:26:00 209920 E 58 Prg SDB4FORA 54 05/09/2013 06:19:33 73728 E 59 Prg CL_SQL_STATEMENT==============CP 59 05/09/2013 06:47:53 37888 E 60 Prg CL_SQL_CONNECTION=============CP 60 05/09/2013 06:47:53 24576 E 61 Prg CL_SQL_PARAMETERS=============CP 61 05/09/2013 01:08:07 21504 E 62 Prg CL_SQL_RESULT_SET=============CP 62 05/09/2013 06:13:44 37888 E 63 Typ TSECLOG_SETTINGS 0 05/09/2013 00:21:31 2048 64 Prg SAPFGUICNTL 0 02/18/2005 14:15:08 27648 E 65 Prg SAPLOLEA 65 05/09/2013 00:48:05 110592 E 66 Prg SAPLSFES 66 05/09/2013 08:26:32 317440 E 67 Prg SAPLSPLUGIN 67 05/09/2013 03:16:13 9216 E 68 Typ ARFCRDATA 0 05/09/2013 00:22:27 6144 69 Prg SAPLGRFC 69 05/09/2013 00:43:02 16384 E 70 Typ SWCBCONT 0 05/09/2013 00:30:19 3072 71 Typ OLE_VERBS 0 04/04/1995 16:02:20 2048 72 Typ OLE_PA 0 04/04/1995 16:02:19 2048 73 Typ T185E 0 05/09/2013 00:30:25 4096 74 Typ T185V 0 11/15/2000 17:56:17 7168 75 Prg SAPLSUNI 75 05/09/2013 01:00:06 179200 E 76 Typ TFDIR 0 05/09/2013 00:30:38 3072 77 Prg SAPCNVE 77 09/09/2004 14:36:10 9216 E 78 Prg SAPLCCCONV 78 12/17/2010 17:10:59 26624 E 79 Typ AENRCNV 0 09/18/2001 10:04:17 3072 80 Typ TCMG 0 07/10/1993 03:20:06 2048 81 Typ TCMS 0 03/12/1999 15:16:40 3072 82 Prg SAPLICON 82 12/17/2007 16:04:40 31744 E 83 Prg %_CICON 82 12/17/2007 16:04:39 126976 E 84 Typ ICONT 0 09/12/2006 11:25:01 2048 85 Typ TCMGT 0 02/14/1998 12:52:07 2048 86 Typ TCMST 0 08/28/1997 09:07:50 2048 87 Prg SAPLSDDO 87 05/09/2013 00:55:54 290816 E 88 Typ DD07V 0 09/09/2004 14:20:41 3072 89 Prg RADBTDDO 87 05/09/2013 03:25:25 47104 E 90 Prg RADBTDDF 87 05/09/2013 01:15:25 342016 E 91 Typ DD07L 0 09/09/2004 14:19:32 3072 92 Typ DD07T 0 05/12/1997 16:45:51 3072 93 Typ DDDOSTATE 0 05/07/1997 12:48:49 2048 94 Prg %_CVRM 0 02/18/2005 14:16:06 9216 E 95 Typ KLAH 0 05/09/2013 00:20:36 10240 96 Prg SAPLSECH 96 05/09/2013 03:29:35 49152 E 97 Prg CL_GUI_PROPS_CONSUMER=========CP 97 12/17/2010 17:05:19 34816 E 98 Prg SAPLTHFB 98 05/09/2013 01:04:30 473088 E 99 Typ EUDB 0 09/10/2009 00:31:38 8192 100 Prg %_CCNTL 97 02/18/2005 14:15:08 17408 E 101 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 101 02/18/2005 14:15:28 44032 E 102 Prg CL_GUI_DATAMANAGER============CP 102 09/10/2009 07:42:20 87040 E 103 Prg CL_ABAP_CHAR_UTILITIES========CP 103 07/05/2005 13:10:15 14336 E 104 Prg /1BCDWBEN/SAPLCEN0000 104 12/17/2010 16:37:32 292864 E 105 Prg SAPLSENA 105 05/09/2013 00:51:14 39936 E 106 Prg SAPLCTUT 106 12/17/2010 17:08:03 143360 E 107 Typ TCTRW 0 08/27/1994 21:57:42 2048 108 Prg SAPLKKRU 108 11/24/2015 15:48:30 250880 E 109 Typ OBJECT_KEYFIELDS 0 05/09/2013 00:27:20 5120 110 Prg SAPLCPDMOBJECTSTACK 110 09/10/2009 03:09:15 75776 E 111 Typ USROBJECTS 0 05/09/2013 00:31:17 6144 112 Prg SAPLSWUG 112 12/17/2010 17:23:18 65536 E 113 Typ SWHACTOR 0 04/04/1995 16:18:07 2048 114 Typ SWCONT 0 05/09/2013 00:30:19 3072 115 Typ OBJ_RECORD 0 02/14/1998 08:30:43 2048 116 Typ SWOTOBJID 0 05/04/1995 15:20:52 2048 117 Prg CL_GOS_MANAGER================CP 117 12/17/2010 17:04:57 21504 E 118 Prg CL_GOS_VIEW_MANAGER===========CP 118 05/09/2013 00:42:20 27648 E 119 Typ SIBFLPOR 0 11/15/2000 17:53:54 2048 120 Typ BORIDENT 0 08/28/1997 08:38:50 2048 121 Prg SAPLSUU1 121 05/10/2013 10:37:54 331776 E 122 Prg CL_SUSR_BASIC_TOOLS===========CP 122 05/09/2013 08:18:04 110592 E 123 Prg CX_SUSR_BASIC_TOOLS===========CP 123 05/09/2013 06:47:58 12288 E 124 Prg CX_STATIC_CHECK===============CP 124 07/05/2005 13:10:16 11264 E 125 Prg CX_ROOT=======================CP 125 05/09/2013 01:10:20 13312 E 126 Typ SUSR_S_REF_2_RNG 0 12/17/2010 16:23:32 2048 127 Typ SUSR_S_RANGE_4_XUBNAME 0 12/17/2010 16:23:32 2048 128 Typ USR02 0 05/09/2013 00:21:44 9216 129 Typ SIBFLPORB 0 11/15/2000 17:53:55 2048 130 Prg CL_GOS_TOOLBOX_MODEL==========CP 130 05/09/2013 00:42:18 47104 E 131 Prg SAPLSWOR 131 05/09/2013 01:05:10 348160 E 132 Typ SWOTRI 0 01/03/1996 15:29:13 2048 133 Typ SWOTRETURN 0 08/20/1998 10:59:29 4096 134 Prg SAPLSWOH 134 12/08/2004 18:00:33 10240 E 135 Typ SWOTENV 0 12/08/2004 18:00:33 4096 136 Prg SAPLSWOD 136 05/09/2013 01:04:55 338944 E 137 Prg SAPLRHS0 137 09/09/2004 14:18:35 17408 E 138 Prg SAPLSDIFRUNTIME 138 05/09/2013 00:56:23 123904 E 139 Typ DFIES 0 05/09/2013 00:23:27 10240 140 Typ X031L 0 05/09/2013 00:32:25 6144 141 Prg SAPLSDNT 141 05/09/2013 00:56:43 279552 E 142 Typ TOJTD 0 11/15/1995 03:08:46 2048 143 Typ TOJTB 0 02/14/1998 14:02:55 9216 144 Prg CL_EXITHANDLER================CP 144 12/17/2010 17:08:12 29696 E 145 Prg SAPLSEXV 145 05/09/2013 00:55:04 131072 E 146 Prg CL_BADI_FLT_DATA_TRANS_AND_DB=CP 146 12/17/2010 17:08:11 37888 E 147 Typ SXC_EXIT 0 11/09/2000 14:23:43 2048 148 Prg CL_EX_GOS_SRV_SELECT==========CP 148 12/17/2010 17:08:18 17408 E 149 Prg IF_EX_GOS_SRV_SELECT==========IP 144 12/04/2000 16:22:18 6144 E 150 Prg CL_EXIT_MASTER================CP 150 12/17/2010 17:08:12 25600 E 151 Prg SAPLSEXE 151 05/09/2013 00:54:50 96256 E 152 Prg CL_EX_BADI_LAYER==============CP 152 12/17/2010 17:08:13 32768 E 153 Prg IF_EX_BADI_LAYER==============IP 144 12/17/2010 17:08:36 7168 E 154 Typ V_EXT_IMP 0 05/09/2013 09:16:55 3072 155 Prg %_CSXRT 150 12/17/2010 17:08:08 16384 E 156 Typ SGOS_MVOBJ 0 07/24/2001 09:18:06 3072 157 Prg CL_GOS_PUBLICATION============CP 157 12/17/2010 17:04:57 19456 E 158 Prg SAPLSGOSHIST 158 12/17/2010 17:04:57 60416 E 159 Prg SAPLURFC 159 05/09/2013 08:09:21 28672 E 160 Prg CL_GOS_STARTER================CP 160 12/17/2010 17:04:57 18432 E 161 Prg CL_GUI_OBJECT=================CP 161 09/11/2007 15:26:18 449536 E 162 Prg CL_GUI_CFW====================CP 162 05/09/2013 00:42:37 190464 E 163 Typ TOLE 0 07/29/1998 19:56:01 3072 164 Prg %_COLE2 65 02/18/2005 14:15:28 11264 E 165 Prg SAPLSCP2 165 05/09/2013 02:42:50 169984 E 166 Prg CL_GUI_CONTROL================CP 166 02/28/2005 21:03:09 125952 E 167 Prg CL_GUI_TOOLBAR================CP 167 05/09/2013 00:43:38 64512 E 168 Prg CL_GUI_GOS_CONTAINER==========CP 168 11/13/2000 16:32:45 39936 E 169 Prg CL_GUI_CONTAINER==============CP 169 02/28/2005 21:00:46 61440 E 170 Prg SAPLCNTH 170 02/18/2005 14:15:08 34816 E 171 Prg CL_BCS_VSI_PROFILE============CP 171 05/09/2013 08:05:34 10240 E 172 Typ TATINN 0 07/10/1997 00:11:06 2048 173 Prg SAPLCLEF 173 12/17/2010 17:08:03 141312 E 174 Typ CCIN 0 10/09/2001 13:06:55 7168 175 Prg SAPLCCCN 175 05/09/2013 01:54:00 349184 E 176 Typ AEOIT 0 04/11/2005 09:22:33 3072 177 Typ TCC01 0 10/14/1999 21:52:40 3072 178 Prg CL_ECM_SERVICES===============CP 178 12/17/2010 17:08:12 61440 E 179 Prg IF_EX_ECM_ACTIVE_OBJECTS======IP 16 11/19/2001 16:17:45 8192 E 180 Prg %_CABAP 22 05/09/2013 01:19:45 36864 E 181 Prg SAPLPA_PACKAGE_SERVICES 181 05/09/2013 07:53:09 211968 E 182 Typ PAKDATBUF 0 09/28/2001 11:44:22 6144 183 Prg CL_EX_ECM_ACTIVE_OBJECTS======CP 183 12/17/2010 17:08:17 129024 E 184 Prg CL_IM_IMP_ECM_ACT_OBJ=========CP 184 11/20/2001 16:11:01 22528 E 185 Prg CL_IM_IMP_ECM_ACT_OBJTS_CC====CP 185 11/06/2003 21:04:14 22528 E 186 Prg SAPLASTAT_TRIG 186 09/09/2004 14:18:33 14336 E 187 Prg %_CCC01 178 12/17/2010 17:08:01 70656 E 188 Prg CL_EX_ECM_BOM_DECO============CP 188 12/17/2010 17:08:17 56320 E 189 Prg IF_EX_ECM_BOM_DECO============IP 144 12/17/2010 17:08:02 9216 E 190 Prg CL_EX_ECM_DOC_DECO============CP 190 12/17/2010 17:08:17 31744 E 191 Prg IF_EX_ECM_DOC_DECO============IP 144 11/19/2001 16:16:06 8192 E 192 Prg CL_EX_ECM_EXIT================CP 192 12/17/2010 17:08:17 65536 E 193 Prg IF_EX_ECM_EXIT================IP 144 09/12/2006 12:21:46 19456 E 194 Prg CL_EX_ECM_MAT_DECO============CP 194 12/17/2010 17:08:17 20480 E 195 Prg IF_EX_ECM_MAT_DECO============IP 144 11/06/2003 21:32:35 6144 E 196 Prg CL_EX_ECM_O55_DECO============CP 196 12/17/2010 17:08:17 23552 E 197 Prg IF_EX_ECM_O55_DECO============IP 144 11/19/2001 16:16:06 5120 E 198 Prg CL_EX_ECM_ROUT_DECO===========CP 198 05/09/2013 06:29:35 24576 E 199 Prg IF_EX_ECM_ROUT_DECO===========IP 144 05/09/2013 06:30:00 6144 E 200 Prg IF_EX_ECM_OTHERS_DECO=========IP 16 11/19/2001 16:16:06 5120 E 201 Prg CL_EX_ECM_OTHERS_DECO=========CP 201 12/17/2010 17:08:17 25600 E 202 Typ TCC08 0 09/18/2001 10:03:56 6144 203 Prg CL_EX_WRF_CT04_CHARVAL_I======CP 203 12/17/2010 17:08:29 15360 E 204 Prg IF_EX_WRF_CT04_CHARVAL_I======IP 144 05/18/2004 11:08:35 5120 E 205 Typ T185D 0 07/29/1998 19:28:18 4096 206 Typ T185T 0 02/14/1998 11:03:31 3072 207 Typ R185D 0 03/07/1992 23:12:00 3072 208 Typ RCTAE 0 09/18/2001 10:03:40 2048 209 Prg SAPLCLSE 209 05/09/2013 08:20:21 247808 E 210 Prg SAPLCUKD 210 05/09/2013 08:20:59 715776 E 211 Prg CL_EX_CU_DEPENDENCY_EDITOR====CP 211 12/17/2010 17:08:16 24576 E 212 Prg IF_EX_CU_DEPENDENCY_EDITOR====IP 144 05/18/2004 11:08:28 8192 E 213 Typ CUKB 0 05/09/2013 00:23:20 5120 214 Typ CUKBT 0 08/25/2005 22:01:24 3072 215 Typ KBD_TREE 0 08/27/1994 21:32:49 2048 216 Typ CUEX_OBJ 0 09/18/2001 10:02:34 9216 217 Typ CUKB_OBJ 0 05/09/2013 00:23:20 5120 218 Typ CUKBT_OBJ 0 09/18/2001 10:02:34 3072 219 Typ CUXR_OBJ 0 09/18/2001 10:02:35 4096 220 Typ CUVR_OBJ 0 09/18/2001 10:02:35 3072 221 Typ CUVA_OBJ 0 09/18/2001 10:02:35 4096 222 Typ CUKN_OBJ 0 09/18/2001 10:02:34 9216 223 Typ CUOB 0 09/18/2001 10:02:34 3072 224 Typ CUOB_TAB 0 09/18/2001 10:02:34 3072 225 Typ CUKDTB 0 05/09/2013 00:23:20 5120 226 Typ THEAD 0 11/09/2000 14:15:08 7168 227 Typ CUXREF 0 09/18/2001 10:02:35 3072 228 Typ CURSVAR 0 09/18/2001 10:02:35 4096 229 Typ CUCVRNT 0 09/18/2001 10:02:34 3072 230 Typ TLINE 0 03/08/1992 00:19:59 2048 231 Typ CUKN 0 08/25/2005 22:01:24 9216 232 Typ CUEX 0 09/18/2001 10:02:34 9216 233 Typ CURSADD 0 09/18/2001 10:02:34 3072 234 Typ RCUKD 0 05/09/2013 00:28:31 10240 235 Typ RMCBC 0 05/09/2013 00:28:53 31744 236 Typ RCUSB 0 04/12/1999 16:03:57 9216 237 Typ T100 0 08/28/1997 09:04:45 2048 238 Typ TCUD 0 03/28/1996 15:22:20 2048 239 Typ TCUAU 0 03/28/1996 15:22:20 2048 240 Typ TCUXT 0 08/28/1997 09:08:04 2048 241 Typ TCUX 0 09/03/1997 03:28:02 3072 242 Typ TCUG 0 03/28/1996 15:22:20 2048 243 Typ TCUGT 0 02/14/1998 13:01:16 2048 244 Typ TCUB 0 03/28/1996 15:22:20 2048 245 Typ TCUBT 0 07/29/1998 19:46:35 2048 246 Prg SAPLWMCC 246 05/10/2013 13:10:04 86016 E 247 Typ TLDG 0 04/12/1999 16:16:44 2048 248 Typ TLGL 0 05/09/2013 00:30:42 2048 249 Typ LDGM 0 04/12/1999 16:13:32 2048 250 Typ LDGMD 0 04/21/1999 13:25:30 3072 251 Prg RDDINSYS 0 03/30/2005 10:21:52 19456 E 252 Prg SAPLSTR9 252 05/09/2013 01:04:26 48128 E 253 Prg CONTEXT_X_TR_SYS_PARAMS 252 12/17/2010 17:07:06 46080 E 254 Prg SAPLSFRM 254 05/09/2013 03:15:01 178176 E 255 Typ TCONT 0 09/09/2004 14:18:43 2048 256 Typ CONTEXTB 0 09/09/2004 14:15:52 6144 257 Typ CVERS 0 05/09/2013 00:23:21 2048 258 Typ USR01 0 05/09/2013 00:31:17 4096 259 Typ USR21 0 03/10/1999 18:32:06 3072 260 Prg CL_ABAP_DATFM=================CP 260 05/09/2013 07:07:11 78848 E 261 Prg SAPLSDEX 261 09/09/2004 14:20:42 25600 E 262 Prg SAPLSNR3 262 03/17/2016 17:05:44 60416 E 263 Prg BADI_NUMBER_GET_NEXT==========CP 263 09/10/2007 15:17:52 14336 E 264 Prg CL_BADI_BASE==================CP 264 05/09/2013 00:51:38 18432 E 265 Prg CL_BADI_CACHE_HANDLER=========CP 265 05/09/2013 00:51:38 17408 E 266 Prg CL_BADI_NUMBER_GET_NEXT_FALLB=CP 266 09/12/2006 11:36:00 11264 E 267 Typ TNRO 0 05/09/2013 00:21:35 6144 268 Typ BNRIV 0 02/14/1998 06:08:11 3072 269 Typ SYST 0 09/09/2004 14:18:12 30720 270 Typ CAT_SVARS 0 05/18/2004 10:32:36 3072 271 Prg %_CSLIS 108 05/09/2013 01:19:46 96256 E 272 Typ DTC_S_LAYO 0 12/04/2000 12:46:23 7168 273 Prg %_CCONTX 254 03/07/2005 08:51:03 15360 E 274 Typ RSJOBINFO 0 05/09/2013 00:29:11 3072 275 Typ CABNZ 0 08/20/1998 10:48:43 2048 276 Typ ATLTX 0 07/09/1997 23:48:13 2048 277 Typ TKKPA 0 02/14/1998 13:48:11 3072 278 Typ TADIR 0 05/09/2013 00:21:30 5120 279 Typ FOLGEBILD 0 07/29/1998 18:32:25 4096 Directory of Application Tables Name Date Time Lngth Val. Program SAPLCTMV SYST / / : : 00004612 \0\x0001\0\0\0\x0001\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0 SY / / : : 00004612 \0\x0001\0\0\0\x0001\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0 RSJOBINFO / / : : 00000164 00000000000000 ATLTX / / : : 00000028 00000000000000| CABN 05/09/2013 00:22:52 00000954 00000000000000 \0\0 *CABN / / : : 00000954 00000000000000 \0\0 CABNT 09/18/2001 10:02:27 00000282 0000000000 0000 *CABNT / / : : 00000282 0000000000 0000 CABNZ / / : : 00000146 0000000000 CAWN 05/09/2013 00:19:55 00000368 000000000000000000 \0\0\0 CAWNT 09/18/2001 10:02:29 00000170 00000000000000 0000 000000 R185D / / : : 00000422 RCTAV 09/18/2001 10:03:40 00000410 TEST001 RCTMV 10/02/2001 21:52:24 00001378 T002 03/23/2000 22:41:19 00000010 | TCLAT 03/23/2000 23:09:55 00000094 | TCME 03/23/2000 23:09:55 00000032 0000000000 | TCMG 03/23/2000 23:09:55 00000026 | TCMS 03/23/2000 23:09:55 00000036 | Program SAPLITSR TBE01 / / : : 00000080 00004009SAMPLE_INTERFACE_00004009 | Program SAPLCTMV TCLA 03/23/2000 23:03:41 00000138 0000 *CAWN 05/09/2013 00:19:55 00000368 000000000000000000 \0\0\0 *RCTMV 10/02/2001 21:52:24 00001378 Program SAPLV00F T185D / / : : 00000462 SAPLCTMV * * ANLE T185E / / : : 00000174 KANNANBK T185F / / : : 00000138 SAPLCTMV *BASI T185 / / : : 00000550 SAPLCTMV ANLE T185T / / : : 00000542 ESAPLCTMV ANLE T185V / / : : 00000628 SAPLCTMV TA* 0000\x000C TKKPA / / : : 00000128 000 TADIR / / : : 00000464 Program SAPSHDTV SHDSTU / / : : 00000106 | SHDSTCIU / / : : 00000100 | Program SAPLSDBT DD02L / / : : 00000316 TSECLOG_SETTINGS A0000TRANSP Program SAPLOLEA TOLE / / : : 00000394 SAPGUI.APPLICATION {83658045-6571-3232- Program SAPLSUNI TFDIR / / : : 00000268 WMCC_INIT_INTERN_TABLES SAPLWMCC Program SAPLCCCONV AENRCNV / / : : 00000084 AENNRCNV\x000C\0\0\0\x000C | Program SAPLICON ICONT / / : : 00000130 Program CL_GUI_PROPS_CONSUMER=========CP EUDB / / : : 00004068 %C56FD5293CF9E1190E10080000A2DB836 \0\0\0 Program SAPLCTUT TCTRW / / : : 00000060 | Program SAPLSWOR TOJTB / / : : 00000906 BUS1088 XE RBUS1088 Program SAPLCCCN TCC01 / / : : 00000040 515 X| TCC08 / / : : 00000100 100CC \x000C\x000C XX CCIN / / : : 00000600 100 5 Program SAPLPA_PACKAGE_SERVICES PAKDATBUF / / : : 00002968 XXINACTIVE_PACKAGES \0\000000000000000\0\0\0\0\0\0\0\0 Program SAPLCLSE USR01 / / : : 00000222 100KANNANBK HK2X Program SAPLCUKD CCIN / / : : 00000600 00 0 CUKB / / : : 00000274 00000000000000 00000 CUKBT / / : : 00000140 0000000000 0000 CUKN / / : : 00005858 000000000000000000 00000000\0 CUEX / / : : 00005896 000000000000000000000000000000000000 00000 CUXREF / / : : 00000322 00000000000000 CURSVAR / / : : 00000376 00000000000000000000000000000000 CUCVRNT / / : : 00000184 000000000000000000000000000000000000 CUOB / / : : 00000140 000000000000000000000000000000000000 CURSADD / / : : 00000148 00000000000000000000000000000000000000000000000000 DFIES / / : : 00001350 RCUKD / / : : 00001314 R185D / / : : 00000422 RMCBC / / : : 00003688 RCUSB / / : : 00001658 T100 / / : : 00000194 T002 / / : : 00000010 | TCUD / / : : 00000034 | TCUAU / / : : 00000032 | TCUXT / / : : 00000090 | TCUX / / : : 00000036 | TCUG / / : : 00000026 | TCUGT / / : : 00000108 | TCUB / / : : 00000012 | TCUBT / / : : 00000094 | Program CONTEXT_X_TR_SYS_PARAMS CONTEXTB / / : : 00002992 100EBTR_SYS_PARAMS 000006000100000000000000\0\0\0\0 TCONT / / : : 00000068 TR_SYS_PARAMS 20160219120835| Program SAPLSDEX DD07L / / : : 00000120 XUDATFM A00120000C Program SAPLSNR3 TNRO / / : : 00000932 MERKMAL BNRIV / / : : 00000212 100MERKMAL 1 0000 ABAP Control Blocks (CONT) Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Source Code Line 20130 1583 39208 FUNC 82 0005 LCTMVF34 90 39209 FUNC 81 074A LCTMVF34 90 39210 FUNC 82 0006 LCTMVF34 90 39211 FUNC 81 074B LCTMVF34 90 39212 FUNC 82 0007 LCTMVF34 90 39213 FUNC 81 0061 LCTMVF34 90 39214 FUNC 82 0008 LCTMVF34 90 39215 FUNC FF 0000 LCTMVF34 90 39216 CMPS 20 00E2 021A 021A LCTMVF34 111 39218 BRAF 05 0003 LCTMVF34 111 39219 BREL 80 0000 LCTMVF34 111 >>>>> FUNE 03 074C LCTMVF34 112 39221 CMPS 20 02DB 8001 8001 LCTMVF34 116 39223 BRAT 02 0006 LCTMVF34 116 39224 COMP 00 00A6 8001 06A0 LCTMVF34 116 39226 BRAF 06 0003 LCTMVF34 116 39227 comp 00 02DB 8001 00BC LCTMVF34 116 39229 BRAF 03 0003 LCTMVF34 116 39230 BREL 80 0000 LCTMVF34 116
Praveen and Harish, I have not authorization to modify the host name in the SAP_PROXY_ESR (I had a discussion about this). Is there another way?.
Braveesh, I used file system and I tranported the objects of IR and ID. In both PI system, I have the same SWC and namespaces.
thanks,
Ezequiel.-
Hi Artur,
thanks for this hint. Where can I set this property? In the SAP HANA Cloud Platform Cockpit? This Property does not exists in the list of available properties for my destination:
I also tried to add it in the neo-app.json file for the destination but this did not work either? If this is actually the correct place how is the exact syntax?
Where did you get this information from? I could not found anything in the cloud platform documentation or in the scn about this property.
Dear All
Please can any one suggest how to post the current stock inventory into previous month material document through MFBF Backflush
Hi Guru's Please help,
GTS blocked/Released status on sales order change/display mode. Please help is there any standard or Note available for it.
Hi Kai,
You need to tell what the compiler says..
This can be either 1 of 2 things from my point of view, either your ProprtyType is not the correct one and then you will receive a casting error (can't implicitly cast or something like that ) or you are missing the import on the top for ProprtyType.
BR,
Saar
Saludos a todos.
Que prioridad de sap a los precios, ejemplo hay lista de precios, precios por periodo y cantidad, precios especiales.
Cual es el orden en que lee sao estos precios.
Esto en SBO 8.82.
Saludos y gracias de antamano.
Hello Steve King ,
I am a newbie to ADBC statements and running into the same issue. Wondering if you are able to get resolution to this.
Thanks,
Rama
I went and reinstalled SAPHOSTAGENT from scratch via Software Provisioning Manager.
That still did not do the trick.
But now I know which user/password combo "works" - sort of.
When I use sapadm with he Pwd I used during installation, I get passed the password popup dialog.
But then the browser presents me with an empty window, and the only text being displayed is:
"Document can not be found"
I can *not* log on as <sid>adm, no matter what I try.
Can someone here please at least confirm to me that:
1) SUM SP16+ needs to be started from /usr/sap/<SID>/SUM?
2) It needs to be started as user "root" (Linux)?
If I can't find another upgrade engine (is there really no "Upgrade Master DVD" for SCM5.0 -> SCM7 EHP3 ???),
and nobody helps me to get this dreaded new SUM running, then I need to open up a ticket with SAP - just to get SUM to start up right.
This is ludicrous, I already disliked the move to SUM in the first place, and now SAP requires dozens of other components to be configured/running, just to start the damn upgrade - not even to finish it successfully.
Hello Dilip,
Check if the below notes are helpful
831162
1083488
Hi Gurus,
We have implemented an IDOC-to-FILE scenario. Now, the requirement is that even when the source field is blank in IDOC (no value), the target field must still have the xml tag (blank) in the file. The requirement goes with segments as well.
If you already have some example/s (nodes/udf/etc), kindly share. Thank you.
Regards,
John
Hi Nadezhda Rukavishnikova,
Now there are two cases here. First case is that if you already have a Production Tenant then migrating screen layouts, all extension fields, language adaptations and custom reports from test tenant into production is not possible. You have to manually do it. For migrating Org Structure from Test to Production can be done. For that you can report an incident to SAP and we will extract the same from your test system and give you the file for the same. Then you migrate the Org structure using the Migration tool in Production system.
Second case is that if you don't have any Production system till now, then while requesting Production tenant you can request for solution profile copy of Test system. In that casescreen layouts, extension fields, language adaptations and org structure will be copied into Production. Custom reports will not be copied.
Regards,
Anurag Nath