on 2012 Aug 30 12:39 PM
Hi Experts,
When I am trying to Restore the old Apshell, I am getting the Runtime Error.
This is the Error:
Note: This is our old Apshell after that we are not done any up gradations and patches.
Category ABAP Programming Error
Runtime Errors OBJECTS_OBJREF_NOT_ASSIGNED_NO
ABAP Program CL_UJT_BACKUP_RESTORE_MGR=====CP
Application Component CPM-BPC
Date and Time 30.08.2012 17:04:37
Short text
Access using a 'ZERO' object reference is not possible.
What happened?
Error in the ABAP application program.
The current ABAP program "CL_UJT_BACKUP_RESTORE_MGR=====CP" had to be
interrupted because it contains
a statement that cannot be executed.
What can you do?
Take note of the actions and inputs that lead to the error.
Contact your SAP administrator for further processing of the problem.
Using transaction ST22 for ABAP short dump analysis you can see and
administrate termination messages and retain them for a longer period.
Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
caught in
procedure "GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", nor was it propagated by
a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
An attempt was made to access a component with a 'ZERO' object
reference (points to 'nothing').
An object reference must point to an object (an instance of a class)
before it can be used to access a component.
Either the reference has not yet been set or it was set to 'ZERO' using
a CLEAR statement.
How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
please use the following search criteria:
"OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
"CL_UJT_BACKUP_RESTORE_MGR=====CP" bzw.
"CL_UJT_BACKUP_RESTORE_MGR=====CM00S"
"GET_STRUCTURE_FROM_ATTRIBUTES"
If you cannot solve the problem yourself, please send the
following documents to SAP:
1. A hard copy print describing the problem (short dump).
To obtain this, select "System->List->Save->Local File (unconverted)"
on the current screen.
2. A suitable hardcopy printout of the system log.
To obtain this, call the system log with Transaction SM21
and set the time interval to 10 minutes before and 5 minutes after
the short dump. In the display choose "System->List->Save->
Local File (unconverted)"
3. If the programs are your own programs or modified SAP programs,
supply the source code.
To do this, choose "More Utilities->Upload/Download->Download" in the
Editor.
4. Details regarding the conditions under which the error occurred
or which actions and input led to the error.
The exception must either be prevented, caught within proedure
"GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", or its possible occurrence must be
declared in the
RAISING clause of the procedure.
To prevent the exception, note the following:
System environment
SAP Release..... 730
SAP Basis Level. 0005
Application server... "inblrappcoe08"
Network address...... "10.15.16.46"
Operating system..... "Linux"
Release.............. "2.6.18-128.el5"
Hardware type........ "x86_64"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 7
Shortdump setting.... "full"
Database server... "inblrappcoe08"
Database type..... "ORACLE"
Database name..... "BO1"
Database user ID.. "SAPSR3"
Terminal.......... "IN-GOWTHAMB"
Char.set.... "C"
SAP kernel....... 720
created (date)... "Oct 19 2010 19:19:44"
create on........ "Linux GNU SLES-9 x86_64 cc4.1.2 use-pr100217"
Database version. "OCI_102, 10.2.0.5.0, V2 "
Patch level. 68
Patch text.. " "
Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"
SAP database version. 720
Operating system..... "Linux 2.6"
Memory consumption
Roll.... 0
EM...... 20953536
Heap.... 0
Page.... 24576
MM Used. 15315208
MM Free. 1445480
User and Transaction
Client.............. 001
User................ "BPCUSER"
Language key........ "E"
Transaction......... "UJBR "
Transaction ID...... "503D69C5FCEB532BE10000000A0F102E"
EPP Whole Context ID.... "68B599BE1CD01EE1BCD2D1B4C8DB8A53"
EPP Connection ID....... 00000000000000000000000000000000
EPP Caller Counter...... 0
Program............. "CL_UJT_BACKUP_RESTORE_MGR=====CP"
Screen.............. "SAPMSSY0 1000"
Screen Line......... 6
Debugger Active..... "none"
Information on where terminated
Termination occurred in the ABAP program "CL_UJT_BACKUP_RESTORE_MGR=====CP" -
in "GET_STRUCTURE_FROM_ATTRIBUTES".
The main program was "UJT_BACKUP_RESTORE_UI ".
In the source code you have the termination point in line 12
of the (Include) program "CL_UJT_BACKUP_RESTORE_MGR=====CM00S".
The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
procedure "GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", but it was neither
handled locally nor declared
in the RAISING clause of its signature.
The procedure is in program "CL_UJT_BACKUP_RESTORE_MGR=====CP "; its source
code begins in line
1 of the (Include program "CL_UJT_BACKUP_RESTORE_MGR=====CM00S ".
Source Code Extract
Line SourceCde
1 method GET_STRUCTURE_FROM_ATTRIBUTES.
2
3 DATA: li_attr_list TYPE REF TO if_ixml_named_node_map.
4 DATA: li_nodeiterator TYPE REF TO if_ixml_node_iterator.
5 DATA: li_attr_node TYPE REF TO if_ixml_node.
6 DATA: lv_value TYPE string.
7 DATA: lv_name TYPE string.
8
9 FIELD-SYMBOLS <fs_value> TYPE ANY.
10
11 CLEAR ch_structure.
>>>>> li_attr_list = i_node->get_attributes( ).
13 li_nodeiterator = li_attr_list->create_iterator( ).
14 li_attr_node = li_nodeiterator->get_next( ).
15 WHILE li_attr_node IS NOT INITIAL.
16 lv_name = li_attr_node->get_name( ).
17 lv_value = li_attr_node->get_value( ).
18 ASSIGN COMPONENT lv_name OF STRUCTURE ch_structure TO <fs_value>.
19 IF sy-subrc = 0.
20 <fs_value> = lv_value.
21 ENDIF.
22 li_attr_node = li_nodeiterator->get_next( ).
23 ENDWHILE.
24
25 endmethod.
Contents of system fields
Name Val.
SY-SUBRC 0
SY-INDEX 0
SY-TABIX 0
SY-DBCNT 1
SY-FDPOS 1
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY
SY-UCOMM
SY-TITLE BPC: Backup & Restore Tool
SY-MSGTY
SY-MSGID
SY-MSGNO 000
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO 1
SY-DATUM 20120830
SY-UZEIT 170431
SY-XPROG SAPLSBAL_DB
SY-XFORM XAB_READ
Active Calls/Events
No. Ty. Program Include Line
Name
4 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
CL_UJT_BACKUP_RESTORE_MGR=>GET_STRUCTURE_FROM_ATTRIBUTES
3 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM00Z 37
CL_UJT_BACKUP_RESTORE_MGR=>PROCESS_XML_DATA
2 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM014 18
CL_UJT_BACKUP_RESTORE_MGR=>RESTORE_DATA
1 EVENT UJT_BACKUP_RESTORE_UI UJT_BACKUP_RESTORE_UI 222
START-OF-SELECTION
Chosen variables
Name
Val.
No. 4 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>GET_STRUCTURE_FROM_ATTRIBUTES
I_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
CH_STRUCTURE
22222222222222222222222222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-REPID
CL_UJT_BACKUP_RESTORE_MGR=====CP
4455455444455554554545445333334522222222
3CF5A4F213B50F2534F25FD72DDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0055004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F004D0047
%_DUMMY$$
2222
0000
0000
0000
2000200020002000
%_VIASELSCR
#
0
4
04
LI_ATTR_LIST
{O:initial}
F0000000
F0000000
FF00000000000000
SY-XPROG
SAPLSBAL_DB
5454544454422222222222222222222222222222
310C321CF4200000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005300420041004C005F004400420020002000200020002000200020002000200020002000200020
LI_NODEITERATOR
{O:initial}
F0000000
F0000000
FF00000000000000
SY-XFORM
XAB_READ
544554442222222222222222222222
812F25140000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
5800410042005F00520045004100440020002000200020002000200020002000200020002000200020002000200020
<FS_VALUE>
???
??????
??????
????????????
LI_ATTR_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
SYST-REPID
CL_UJT_BACKUP_RESTORE_MGR=====CP
4455455444455554554545445333334522222222
3CF5A4F213B50F2534F25FD72DDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0055004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F004D0047
LV_NAME
<empty string>
10000000
40000000
1400000000000000
LV_VALUE
<empty string>
10000000
40000000
1400000000000000
CX_UJT_BACKUP_RESTORE_ERROR=>EX_PARSE_FILE_ERROR
UJT 009 D###D###D###D###
5452222222222222222233324000400040004000
5A40000000000000000000904600460046004600
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054002000200020002000200020002000200020002000200020002000200020002000200030003000390020
SY-SUBRC
0
0000
0000
00000000
%_SPACE
2
0
0
0
2000
No. 3 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>PROCESS_XML_DATA
LI_ISTREAM
{O:27*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_ISTREAM}
E0001000
4000B000
E40000001B000000
LI_XMLDOC
{O:29*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_DOCUMENT}
E0001000
2000D000
E20000001D000000
LI_STREAMFACTORY
{O:28*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_STREAM_FACTORY}
E0001000
3000C000
E30000001C000000
LI_IXMLPARSER
{O:26*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_PARSER}
E0001000
5000A000
E50000001A000000
ABAP_FALSE
2
0
0
0
2000
ME->GC_ELEMENT_APPSETDATA
AppsetData
4777674676
1003544141
0000000000
0000000000
4100700070007300650074004400610074006100
LI_APPSETDATA_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
ME
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
ME->D_INFO_FROM_XML
22222222222222222222222222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
ME->D_TECHN
2
0
0
0
2000
ME->D_APPSET_ID
45432222222222222222
D3D10000000000000000
00000000000000000000
00000000000000000000
4D0053004D0031002000200020002000200020002000200020002000200020002000200020002000
ME->D_INFO_FROM_XML-APPSET_ID
22222222222222222222
00000000000000000000
00000000000000000000
00000000000000000000
20002000200020002000200020002000200020002000200020002000200020002000200020002000
SY
######0#########################################ÿ#################################ÿ###䵘# X####
000000300000000000000000000000000000001000000000F000000000000000000000000000108000F00050250000
000000000000000000001010100010000000004000000000F00000000000000000000000000080C000F00080080400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C
0000000000000000000000003000000000000000000000000000000000000000000000000000000001000000010000
%_EXCP
{O:initial}
F0000000
F0000000
FF00000000000000
SYST
######0#########################################ÿ#################################ÿ###䵘# X####
000000300000000000000000000000000000001000000000F000000000000000000000000000108000F00050250000
000000000000000000001010100010000000004000000000F00000000000000000000000000080C000F00080080400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C
0000000000000000000000003000000000000000000000000000000000000000000000000000000001000000010000
No. 2 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>RESTORE_DATA
I_FILEPATH
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
I_BACKGROUND
2
0
0
0
2000
I_METAD
X
5
8
0
0
5800
I_MDATA
X
5
8
0
0
5800
I_TDATA
X
5
8
0
0
5800
I_RECCT
0
0000
0000
00000000
I_TECHN
2
0
0
0
2000
ET_MESSAGES
Table[initial]
ME->D_FILEPATH
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
ME->D_BACKGROUND
2
0
0
0
2000
ME->D_METAD
X
5
8
0
0
5800
ME->D_MDATA
X
5
8
0
0
5800
ME->D_TDATA
X
5
8
0
0
5800
ME->D_RECCT
0
0000
0000
00000000
ME->D_TECHN
2
0
0
0
2000
ME
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
ME->GC_MODE_RESTORE
R
5
2
0
0
5200
ME->GC_FILE_TYPE_TD
TRANS
55445
421E3
00000
00000
5400520041004E005300
No. 1 Ty. EVENT
Name START-OF-SELECTION
P_TDATA
X
5
8
0
0
5800
P_RECCT
0
0000
0000
00000000
L_OPTIONS
222222222222222222222222222222222222222222222222222222222222
000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_DUMMY$$
2222
0000
0000
0000
2000200020002000
ABAP_TRUE
X
5
8
0
0
5800
P_RST
X
5
8
0
0
5800
SY-REPID
UJT_BACKUP_RESTORE_UI
5455444455554554545542222222222222222222
5A4F213B50F2534F25F590000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F00550049002000200020
LV_STR
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
P_FILE
G:\APSHELLS\XXXCONSOLIDATION.zip
4354554444554544445444445444276722222222222222222222222222222222222222222222222222222222222222
7AC10385CC3CD3D3FE3FC94149FEEA9000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
SPACE
2
0
0
0
2000
LO_BACKUP_RESTORE_MGR
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
%_SPACE
2
0
0
0
2000
P_BACKG
2
0
0
0
2000
P_METAD
X
5
8
0
0
5800
P_MDATA
X
5
8
0
0
5800
P_TECHN
2
0
0
0
2000
SYST-REPID
UJT_BACKUP_RESTORE_UI
5455444455554554545542222222222222222222
5A4F213B50F2534F25F590000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F00550049002000200020
Internal notes
The termination was triggered in function "method_call_iref"
of the SAP kernel, in line 3160 of the module
"//bas/720_REL/src/krn/runt/abmethod.c#7".
The internal operation just processed is "METH".
Internal mode was started at 20120830170343.
Active Calls in SAP Kernel
Lines of C Stack in Kernel (Structure Differs on Each Platform)
(CTrcStack2+0x82)[0x6d52e2]
(_Z16rabax_CStackSavev+0xc0)[0x9c65d6]
(ab_rabax+0x4bb2)[0x9cf1d2]
(_Z8ab_jmethv+0xfbd)[0xc5c74d]
(_Z8ab_extriv+0x1ab)[0x95a22d]
(_Z9ab_xeventPKt+0x23)[0x9fbca3]
(_Z8ab_triggv+0x41)[0x8f4a21]
(ab_run+0x10a)[0x91921a]
(dynpmcal+0x49c)[0x7c166c]
(dynppai0+0x270)[0x7c22a0]
(dynprctl+0x121)[0x6fc9c1]
(dynpen00+0x3b1)[0x77f557]
(TskhLoop+0x1478)[0x522178]
(ThStart+0x372)[0x52fe22]
(DpMain+0x5a5)[0x475255]
/lib64/libc.so.6(__libc_start_main+0xf4)[0x31f681d974]
List of ABAP programs affected
Index Typ Program Group Date Time Size Lang.
0 Prg UJT_BACKUP_RESTORE_UI 0 09.05.2012 11:21:23 76800 E
1 Prg SAPMSSY0 1 10.02.2011 16:05:48 110592 E
2 Prg SAPMSSYD 1 10.02.2011 16:05:48 24576 E
3 Prg SAPFSYSCALLS 1 05.09.2008 16:39:54 8192 E
4 Prg RSDBRUNT 0 29.07.2011 16:50:56 305152 E
5 Typ RSSCR 0 23.11.1999 09:24:41 5120
6 Prg RSDBSPBL 0 15.09.2010 10:37:00 84992 E
7 Prg SAPDB__S 0 05.09.2008 16:39:54 21504 E
8 Typ VARID 0 05.09.2008 16:40:21 5120
9 Typ SSCRFIELDS 0 02.05.1997 13:16:39 5120
10 Prg RSDBSPVA 0 15.09.2010 10:37:01 160768 E
11 Prg %_CSYDB0 0 05.09.2008 16:39:44 40960 E
12 Typ RSVAMEMKEY 0 16.12.1996 19:31:50 2048
13 Prg RSDBSPMC 0 05.09.2008 16:39:54 92160 E
14 Typ DDSHDESCR 0 28.11.1997 16:26:30 4096
15 Typ SPPARAMS 0 07.03.1997 14:48:48 2048
16 Prg SAPLICON 16 05.09.2008 16:39:55 32768 E
17 Prg %_CICON 16 05.09.2008 16:39:44 126976 E
18 Typ ICONT 0 16.01.1998 17:48:35 2048
19 Prg SAPLSABE 19 15.09.2010 11:29:11 14336 E
20 Prg SAPLSECU 20 29.07.2011 16:49:47 128000 E
21 Typ RSSUBINFO 0 22.11.1999 21:15:17 3072
22 Typ RSEXFCODE 0 18.07.1997 17:04:17 2048
23 Prg SAPLDSYA 23 15.09.2010 11:35:05 52224 E
24 Prg SAPFSDS1 23 05.09.2008 16:39:54 61440 E
25 Typ TDCLD 0 14.07.1998 14:53:43 5120
26 Prg SAPLSDOD 26 13.09.2010 15:10:54 50176 E
27 Typ DOKIL 0 07.04.1997 18:29:04 3072
28 Prg SAPCNVE 28 05.09.2008 16:39:54 9216 E
29 Prg SAPLLANG 29 05.09.2008 16:39:55 11264 E
30 Typ T002 0 03.11.2006 12:47:38 2048
31 Prg SAPFSPOR 0 05.09.2008 16:39:54 16384 E
32 Typ RSPARINT 0 10.03.1995 17:53:00 2048
33 Prg SAPLSCNT 33 05.09.2008 17:08:49 34816 E
34 Typ DYCBOX 0 23.11.1999 09:23:17 3072
35 Prg SAPLSVSM 35 15.09.2010 10:46:50 33792 E
36 Prg SAPLSGUI 36 15.09.2010 11:31:16 104448 E
37 Prg SAPLSTTM 37 15.09.2010 10:47:17 79872 E
38 Prg SAPLSBDC 38 15.09.2010 10:47:17 49152 E
39 Prg CL_DATAPROVIDER===============CP 39 05.09.2008 16:39:47 57344 E
40 Prg SAPLSTUP 40 30.09.2011 11:23:24 86016 E
41 Prg SAPLCNDP 41 10.02.2011 12:21:23 232448 E
42 Prg SAPFGUICNTL 1 05.09.2008 16:39:54 27648 E
43 Prg SAPLOLEA 43 29.07.2011 16:50:48 113664 E
44 Prg SAPLSFES 44 29.07.2011 16:49:11 314368 E
45 Prg SAPLSPLUGIN 45 05.09.2008 17:50:58 9216 E
46 Typ ARFCRDATA 0 15.09.2010 10:31:34 6144
47 Prg SAPLGRFC 47 05.09.2008 16:39:55 16384 E
48 Typ SWCBCONT 0 07.10.1997 12:13:50 3072
49 Typ OLE_VERBS 0 09.02.1995 13:23:37 2048
50 Typ OLE_PA 0 13.01.1995 11:06:59 2048
51 Prg SAPSHDTV 33 29.07.2011 16:50:59 38912 E
52 Typ SHDSTU 0 10.12.1998 13:29:36 2048
53 Typ SHDSTCIU 0 10.12.1998 13:29:36 2048
54 Typ SSCRTEXTS 0 15.08.1997 14:15:15 3072
55 Prg CL_GUI_PROPS_CONSUMER=========CP 55 05.09.2008 16:39:48 34816 E
56 Prg SAPLTHFB 56 30.09.2011 11:25:14 447488 E
57 Typ EUDB 0 13.10.2003 17:09:46 8192
58 Prg %_CCNTL 55 05.09.2008 16:39:44 17408 E
59 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 59 05.09.2008 17:50:42 44032 E
60 Prg CL_GUI_DATAMANAGER============CP 60 05.09.2008 17:50:54 87040 E
61 Prg CL_ABAP_CHAR_UTILITIES========CP 61 29.07.2011 16:49:11 14336 E
62 Prg CL_GUI_FRONTEND_SERVICES======CP 62 30.09.2011 11:28:18 148480 E
63 Prg CL_GUI_OBJECT=================CP 63 05.09.2008 17:50:56 449536 E
64 Prg CL_GUI_CFW====================CP 64 15.09.2010 10:53:05 190464 E
65 Typ OBJ_RECORD 0 07.10.1997 12:13:38 2048
66 Typ TOLE 0 20.05.1998 14:20:04 3072
67 Prg %_COLE2 43 05.09.2008 16:39:44 11264 E
68 Prg SAPLSCP2 68 29.07.2011 16:49:11 178176 E
69 Typ SWCONT 0 18.01.1995 16:55:29 3072
70 Prg CL_ABAP_TYPEDESCR=============CP 70 15.09.2010 11:35:17 35840 E
71 Prg CL_ABAP_ELEMDESCR=============CP 71 15.09.2010 10:47:18 41984 E
72 Prg CL_ABAP_DATADESCR=============CP 72 15.09.2010 11:35:17 21504 E
73 Prg CL_ABAP_REFDESCR==============CP 73 15.09.2010 11:01:19 36864 E
74 Prg CL_ABAP_STRUCTDESCR===========CP 74 15.09.2010 10:47:18 51200 E
75 Prg CL_ABAP_COMPLEXDESCR==========CP 75 15.09.2010 10:47:18 19456 E
76 Prg CL_ABAP_TABLEDESCR============CP 76 15.09.2010 11:35:18 37888 E
77 Prg CL_ABAP_CLASSDESCR============CP 77 15.09.2010 10:47:18 35840 E
78 Prg CL_ABAP_OBJECTDESCR===========CP 78 15.09.2010 10:47:18 38912 E
79 Prg CL_ABAP_INTFDESCR=============CP 79 15.09.2010 10:47:18 27648 E
80 Typ PKRT_CLIENT_HANDLE 0 26.09.2006 13:18:51 2048
81 Prg CL_ABAP_SOFT_REFERENCE========CP 81 05.09.2008 17:50:56 10240 E
82 Prg CL_ABAP_REFERENCE=============CP 82 05.09.2008 17:16:02 8192 E
83 Typ INFOCNTL_FEATURE 0 04.01.2006 17:21:46 2048
84 Typ FILE_TABLE 0 05.01.1999 16:01:10 4096
85 Typ RFC_FIELDS 0 16.12.1996 19:30:48 3072
86 Prg SAPLCNTL 86 05.09.2008 16:39:55 362496 E
87 Prg SAPLCNTH 87 05.09.2008 16:39:55 34816 E
88 Typ DPPROPS 0 06.06.1997 18:56:23 2048
89 Prg SAPLURFC 89 29.07.2011 16:27:10 26624 E
90 Prg SAPLSRFC 90 15.09.2010 10:48:53 48128 E
91 Prg SAPLSYST 91 10.02.2011 16:05:39 44032 E
92 Prg CL_SYSTEM_UUID================CP 92 10.02.2011 16:05:21 36864 E
93 Prg CX_UUID_ERROR=================CP 93 15.09.2010 10:47:17 12288 E
94 Prg CX_STATIC_CHECK===============CP 94 15.09.2010 10:47:17 11264 E
95 Prg CX_ROOT=======================CP 95 15.09.2010 11:36:45 13312 E
96 Prg SAPMSSY1 41 05.09.2008 17:12:19 25600 E
97 Prg SAPLCNT0 97 05.09.2008 16:39:55 47104 E
98 Typ ARFCSDATA 0 15.09.2010 10:31:55 6144
99 Prg SAPLSHL2 99 30.09.2011 11:23:24 716800 E
100 Prg RSDBSPVD 0 29.07.2011 16:29:55 102400 E
101 Typ RVARI 0 18.06.1999 11:23:08 4096
102 Typ RSVARIVDAT 0 05.09.2008 16:37:58 2048
103 Prg SAPFGUICNTL_CFW 1 05.09.2008 16:39:54 16384 E
104 Prg CL_UJT_BACKUP_RESTORE_MGR=====CP 104 09.05.2012 11:21:22 330752 E
105 Prg SAPLSBAL 105 15.09.2010 11:30:25 361472 E
106 Typ BAL_S_LOG 0 11.07.2006 22:20:04 7168
107 Prg SAPLSBAL_SERVICE 107 13.09.2010 15:35:16 193536 E
108 Typ BAL_S_PARM 0 11.07.2006 22:02:22 3072
109 Typ BAL_S_SCNT 0 30.11.1998 10:34:01 3072
110 Typ BAL_S_SDEF 0 01.02.2001 17:04:57 2048
111 Prg SAPLSYGU 111 29.07.2011 16:50:59 24576 E
112 Typ BAL_S_CONT 0 26.10.1998 14:08:10 2048
113 Typ BAL_S_CLBK 0 26.10.1998 14:08:10 2048
114 Prg CX_UJT_BACKUP_RESTORE_ERROR===CP 114 09.05.2012 11:21:22 44032 E
115 Prg CX_UJ_STATIC_CHECK============CP 115 24.01.2012 13:39:51 13312 E
116 Prg CL_UJA_APPSET_DAO=============CP 116 24.01.2012 13:37:14 35840 E
117 Prg CL_UJ_DAO_ENV=================CP 117 24.01.2012 13:39:38 9216 E
118 Typ UJA_S_APPSET_INFO 0 24.01.2012 13:36:34 4096
119 Prg SAPLUJN_API_BI 119 09.05.2012 11:16:53 28672 E
120 Prg CL_NEW_AWB_AREA===============CP 120 15.09.2010 11:48:34 77824 E
121 Typ RSDAREA 0 12.09.2003 11:34:17 4096
122 Typ RSDAREAT 0 12.09.2003 11:34:17 3072
123 Prg SAPLRSATREE 123 15.09.2010 11:58:01 1813504 E
124 Typ RSAPPL 0 12.09.2003 11:34:06 4096
125 Typ RSAPPLT 0 12.09.2003 11:34:06 3072
126 Typ RSLGRHIE 0 12.09.2003 11:34:56 4096
127 Typ RSLGRHIET 0 12.09.2003 11:34:56 3072
128 Typ SYCH_TABLES_ENTRY 0 03.11.2005 13:14:56 2048
129 Typ BAL_S_MSG 0 11.07.2006 22:20:07 7168
130 Typ RSAWBN_S_TREEORG 0 14.06.2004 17:14:03 3072
131 Prg CL_UJT_UTILITY================CP 131 09.05.2012 11:16:50 14336 E
132 Prg CL_UJ_MODEL===================CP 132 09.05.2012 11:16:50 40960 E
133 Prg CL_UJE_SERVER_ADMIN_DAO=======CP 133 24.01.2012 13:38:54 10240 E
134 Prg CL_UJ_LOG=====================CP 134 09.05.2012 11:16:50 28672 E
135 Typ UJ0_S_LOG 0 24.01.2012 13:36:33 3072
136 Prg CX_UJ_NULL_OBJ_REF============CP 136 24.01.2012 13:39:50 17408 E
137 Prg CX_UJ_NO_CHECK================CP 137 24.01.2012 13:39:50 13312 E
138 Prg CX_NO_CHECK===================CP 138 15.09.2010 10:47:17 11264 E
139 Prg CL_UJA_ADMIN_MGR==============CP 139 09.05.2012 11:21:26 131072 E
140 Typ UJ0_S_MODEL_REF 0 24.01.2012 13:36:33 2048
141 Typ UJ0_S_MESSAGE 0 24.01.2012 13:36:33 4096
142 Prg SAPLRHFE 142 05.09.2008 16:39:55 17408 E
143 Typ TFDIR 0 19.01.2005 15:10:28 3072
144 Prg /SDF/SAPLSMD_E2E_TRACE 144 29.07.2011 17:40:08 212992 E
145 Prg SAPLSETRM 145 30.09.2011 11:28:18 181248 E
146 Typ UJ0_S_DETAIL 0 24.01.2012 13:36:33 2048
147 Prg SAPLSBAL_DB 147 29.07.2011 16:49:27 264192 E
148 Prg CL_SYSTEM_TRANSACTION_STATE===CP 148 15.09.2010 11:36:49 144384 E
149 Prg SAPLSBAL_TOOLBOX 149 15.09.2010 10:41:47 225280 E
150 Prg SAPLSNR3 150 13.09.2010 15:35:18 63488 E
151 Typ TNRO 0 15.09.2010 10:32:15 6144
152 Typ BNRIV 0 15.09.2010 10:31:30 3072
153 Typ BAL_S_LGNM 0 19.01.2000 18:24:14 3072
154 Typ BALHDR 0 15.09.2010 10:31:50 8192
155 Typ BALDAT 0 19.01.2000 18:44:46 3072
156 Typ BAL_S_DB 0 15.09.2010 10:31:28 9216
157 Prg SAPLSBAL_DB_INTERNAL 157 13.09.2010 15:35:16 43008 E
158 Typ BAL_INDX 0 24.03.1995 17:33:48 5120
159 Prg SAPLSPIAGENTCW 159 15.09.2010 10:35:40 14336 E
160 Prg SAPLSPILS 160 15.09.2010 11:31:55 79872 E
161 Prg CL_OS_TRANSACTION_END_NOTIFIERCP 161 15.09.2010 10:50:37 10240 E
162 Prg CL_VSI========================CP 162 29.07.2011 16:49:11 68608 E
163 Prg SAPLSCMS_CONV 163 15.09.2010 11:30:37 51200 E
164 Prg CL_UJF_ZIP====================CP 164 24.01.2012 13:38:58 37888 E
165 Prg CL_ABAP_ZIP===================CP 165 15.09.2010 11:35:21 37888 E
166 Prg CL_ABAP_CONV_IN_CE============CP 166 29.07.2011 16:49:11 25600 E
167 Prg CL_IXML=======================CP 167 30.09.2011 11:28:18 266240 E
168 Prg CL_IXML_UNKNOWN===============CP 168 05.09.2008 17:50:56 9216 E
169 Prg CX_SY_REF_IS_INITIAL==========CP 169 05.09.2008 17:50:57 11264 E
170 Prg CX_DYNAMIC_CHECK==============CP 170 15.09.2010 10:47:17 11264 E
171 Prg CX_SY_NO_HANDLER==============CP 171 05.09.2008 17:50:57 11264 E
172 Typ SYST 0 15.09.2010 10:32:06 30720
173 Prg IF_MESSAGE====================IP 114 15.09.2010 10:47:17 5120 E
174 Prg IF_SERIALIZABLE_OBJECT========IP 114 05.09.2008 16:39:53 5120 E
175 Prg IF_T100_MESSAGE===============IP 114 15.09.2010 10:47:17 6144 E
176 Typ SCX_T100KEY 0 21.08.2003 14:43:58 3072
Directory of Application Tables
Name Date Time Lngth
Val.
Program UJT_BACKUP_RESTORE_UI
SYST 15.09.2010 10:32:06 00004612
\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\x0001\0
SY . . : : 00004612
\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\x0001\0
SSCRFIELDS 15.09.2004 17:25:21 00001708
SSCRTEXTS . . : : 00000742
Program RSDBRUNT
VARID . . : : 00000252
Program SAPLICON
ICONT . . : : 00000130
Program SAPFSDS1
TDCLD . . : : 00000098
RE DOKU 40R XX XXLIMUDOCUX (XR3TRPROGX X|
Program SAPLSDOD
DOKIL . . : : 00000152
Program SAPLLANG
T002 . . : : 00000010
ES1EN|
Program SAPLOLEA
TOLE . . : : 00000394
SAP.DATAPROVIDER.1 {799104C5-04C5-11D0-
Program SAPSHDTV
SHDSTU . . : : 00000106
|
SHDSTCIU . . : : 00000100
|
Program CL_GUI_PROPS_CONSUMER=========CP
EUDB . . : : 00004068
%C00034255503DB0B7F3476000E10000000A0F102E \0\0\0
Program CL_GUI_FRONTEND_SERVICES======CP
EUDB . . : : 00004068
FE00034255503DB0B7F3476000E10000000A0F102E \0\0\0
Program CL_UJ_LOG=====================CP
BAL_INDX . . : : 00002944
001UJ00000000000000020234\0\0\0 ۿĂȂ\x0080ㄴ㌰\0\0ï\0ἒʝ㘺پ뀠ᄀೌ䁘
Program SAPLRHFE
TFDIR . . : : 00000268
ECATT_SAVE_BALMSG SAPLSETRM
Program SAPLSBAL_DB
BALDAT . . : : 00000588
001ALQBMPlXpG7k6yqjK5KuSAKm000001\0\x0002\0¢옧褍\xF119쯫썳
Program SAPLSNR3
BNRIV . . : : 00000212
001APPL_LOG 010000000000000000000000019999999999999
TNRO . . : : 00000930
APPL_LOG
ABAP Control Blocks (CONT)
Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Source Code Line
20120 1212
4230 WHIL 00 0004 0000 0000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 74
4234 METH 01 0000 0000 0000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 76
4238 ---- 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 76
4239 CPOP 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4240 PAR2 13 0000 0014 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4242 PAR2 05 0000 0020 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4244 ---- 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4245 METH 04 0000 0002 0001 0000 0001 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4249 PAR2 04 0000 C000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4251 PAR2 10 0000 8000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4253 CLEA 00 8000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 11
>>>>> METH 13 0001 000F 8013 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4258 PAR1 E5 C002 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4259 PAR2 00 0000 0001 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4261 METH 13 0001 0010 8000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
4265 PAR1 E5 C003 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
4266 PAR2 00 0000 0001 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
Hi Experts,
When I am trying to Restore the old Apshell, I am getting the Runtime Error.
This is the Error:
Note: This is our old Apshell after that we are not done any up gradations and patches.
Category ABAP Programming Error
Runtime Errors OBJECTS_OBJREF_NOT_ASSIGNED_NO
ABAP Program CL_UJT_BACKUP_RESTORE_MGR=====CP
Application Component CPM-BPC
Date and Time 30.08.2012 17:04:37
Short text
Access using a 'ZERO' object reference is not possible.
What happened?
Error in the ABAP application program.
The current ABAP program "CL_UJT_BACKUP_RESTORE_MGR=====CP" had to be
interrupted because it contains
a statement that cannot be executed.
What can you do?
Take note of the actions and inputs that lead to the error.
Contact your SAP administrator for further processing of the problem.
Using transaction ST22 for ABAP short dump analysis you can see and
administrate termination messages and retain them for a longer period.
Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
caught in
procedure "GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", nor was it propagated by
a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
An attempt was made to access a component with a 'ZERO' object
reference (points to 'nothing').
An object reference must point to an object (an instance of a class)
before it can be used to access a component.
Either the reference has not yet been set or it was set to 'ZERO' using
a CLEAR statement.
How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
please use the following search criteria:
"OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
"CL_UJT_BACKUP_RESTORE_MGR=====CP" bzw.
"CL_UJT_BACKUP_RESTORE_MGR=====CM00S"
"GET_STRUCTURE_FROM_ATTRIBUTES"
If you cannot solve the problem yourself, please send the
following documents to SAP:
1. A hard copy print describing the problem (short dump).
To obtain this, select "System->List->Save->Local File (unconverted)"
on the current screen.
2. A suitable hardcopy printout of the system log.
To obtain this, call the system log with Transaction SM21
and set the time interval to 10 minutes before and 5 minutes after
the short dump. In the display choose "System->List->Save->
Local File (unconverted)"
3. If the programs are your own programs or modified SAP programs,
supply the source code.
To do this, choose "More Utilities->Upload/Download->Download" in the
Editor.
4. Details regarding the conditions under which the error occurred
or which actions and input led to the error.
The exception must either be prevented, caught within proedure
"GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", or its possible occurrence must be
declared in the
RAISING clause of the procedure.
To prevent the exception, note the following:
System environment
SAP Release..... 730
SAP Basis Level. 0005
Application server... "inblrappcoe08"
Network address...... "10.15.16.46"
Operating system..... "Linux"
Release.............. "2.6.18-128.el5"
Hardware type........ "x86_64"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 7
Shortdump setting.... "full"
Database server... "inblrappcoe08"
Database type..... "ORACLE"
Database name..... "BO1"
Database user ID.. "SAPSR3"
Terminal.......... "IN-GOWTHAMB"
Char.set.... "C"
SAP kernel....... 720
created (date)... "Oct 19 2010 19:19:44"
create on........ "Linux GNU SLES-9 x86_64 cc4.1.2 use-pr100217"
Database version. "OCI_102, 10.2.0.5.0, V2 "
Patch level. 68
Patch text.. " "
Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"
SAP database version. 720
Operating system..... "Linux 2.6"
Memory consumption
Roll.... 0
EM...... 20953536
Heap.... 0
Page.... 24576
MM Used. 15315208
MM Free. 1445480
User and Transaction
Client.............. 001
User................ "BPCUSER"
Language key........ "E"
Transaction......... "UJBR "
Transaction ID...... "503D69C5FCEB532BE10000000A0F102E"
EPP Whole Context ID.... "68B599BE1CD01EE1BCD2D1B4C8DB8A53"
EPP Connection ID....... 00000000000000000000000000000000
EPP Caller Counter...... 0
Program............. "CL_UJT_BACKUP_RESTORE_MGR=====CP"
Screen.............. "SAPMSSY0 1000"
Screen Line......... 6
Debugger Active..... "none"
Information on where terminated
Termination occurred in the ABAP program "CL_UJT_BACKUP_RESTORE_MGR=====CP" -
in "GET_STRUCTURE_FROM_ATTRIBUTES".
The main program was "UJT_BACKUP_RESTORE_UI ".
In the source code you have the termination point in line 12
of the (Include) program "CL_UJT_BACKUP_RESTORE_MGR=====CM00S".
The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
procedure "GET_STRUCTURE_FROM_ATTRIBUTES" "(METHOD)", but it was neither
handled locally nor declared
in the RAISING clause of its signature.
The procedure is in program "CL_UJT_BACKUP_RESTORE_MGR=====CP "; its source
code begins in line
1 of the (Include program "CL_UJT_BACKUP_RESTORE_MGR=====CM00S ".
Source Code Extract
Line SourceCde
1 method GET_STRUCTURE_FROM_ATTRIBUTES.
2
3 DATA: li_attr_list TYPE REF TO if_ixml_named_node_map.
4 DATA: li_nodeiterator TYPE REF TO if_ixml_node_iterator.
5 DATA: li_attr_node TYPE REF TO if_ixml_node.
6 DATA: lv_value TYPE string.
7 DATA: lv_name TYPE string.
8
9 FIELD-SYMBOLS <fs_value> TYPE ANY.
10
11 CLEAR ch_structure.
>>>>> li_attr_list = i_node->get_attributes( ).
13 li_nodeiterator = li_attr_list->create_iterator( ).
14 li_attr_node = li_nodeiterator->get_next( ).
15 WHILE li_attr_node IS NOT INITIAL.
16 lv_name = li_attr_node->get_name( ).
17 lv_value = li_attr_node->get_value( ).
18 ASSIGN COMPONENT lv_name OF STRUCTURE ch_structure TO <fs_value>.
19 IF sy-subrc = 0.
20 <fs_value> = lv_value.
21 ENDIF.
22 li_attr_node = li_nodeiterator->get_next( ).
23 ENDWHILE.
24
25 endmethod.
Contents of system fields
Name Val.
SY-SUBRC 0
SY-INDEX 0
SY-TABIX 0
SY-DBCNT 1
SY-FDPOS 1
SY-LSIND 0
SY-PAGNO 0
SY-LINNO 1
SY-COLNO 1
SY-PFKEY
SY-UCOMM
SY-TITLE BPC: Backup & Restore Tool
SY-MSGTY
SY-MSGID
SY-MSGNO 000
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO 1
SY-DATUM 20120830
SY-UZEIT 170431
SY-XPROG SAPLSBAL_DB
SY-XFORM XAB_READ
Active Calls/Events
No. Ty. Program Include Line
Name
4 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
CL_UJT_BACKUP_RESTORE_MGR=>GET_STRUCTURE_FROM_ATTRIBUTES
3 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM00Z 37
CL_UJT_BACKUP_RESTORE_MGR=>PROCESS_XML_DATA
2 METHOD CL_UJT_BACKUP_RESTORE_MGR=====CP CL_UJT_BACKUP_RESTORE_MGR=====CM014 18
CL_UJT_BACKUP_RESTORE_MGR=>RESTORE_DATA
1 EVENT UJT_BACKUP_RESTORE_UI UJT_BACKUP_RESTORE_UI 222
START-OF-SELECTION
Chosen variables
Name
Val.
No. 4 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>GET_STRUCTURE_FROM_ATTRIBUTES
I_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
CH_STRUCTURE
22222222222222222222222222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-REPID
CL_UJT_BACKUP_RESTORE_MGR=====CP
4455455444455554554545445333334522222222
3CF5A4F213B50F2534F25FD72DDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0055004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F004D0047
%_DUMMY$$
2222
0000
0000
0000
2000200020002000
%_VIASELSCR
#
0
4
04
LI_ATTR_LIST
{O:initial}
F0000000
F0000000
FF00000000000000
SY-XPROG
SAPLSBAL_DB
5454544454422222222222222222222222222222
310C321CF4200000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005300420041004C005F004400420020002000200020002000200020002000200020002000200020
LI_NODEITERATOR
{O:initial}
F0000000
F0000000
FF00000000000000
SY-XFORM
XAB_READ
544554442222222222222222222222
812F25140000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
5800410042005F00520045004100440020002000200020002000200020002000200020002000200020002000200020
<FS_VALUE>
???
??????
??????
????????????
LI_ATTR_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
SYST-REPID
CL_UJT_BACKUP_RESTORE_MGR=====CP
4455455444455554554545445333334522222222
3CF5A4F213B50F2534F25FD72DDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0055004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F004D0047
LV_NAME
<empty string>
10000000
40000000
1400000000000000
LV_VALUE
<empty string>
10000000
40000000
1400000000000000
CX_UJT_BACKUP_RESTORE_ERROR=>EX_PARSE_FILE_ERROR
UJT 009 D###D###D###D###
5452222222222222222233324000400040004000
5A40000000000000000000904600460046004600
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054002000200020002000200020002000200020002000200020002000200020002000200030003000390020
SY-SUBRC
0
0000
0000
00000000
%_SPACE
2
0
0
0
2000
No. 3 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>PROCESS_XML_DATA
LI_ISTREAM
{O:27*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_ISTREAM}
E0001000
4000B000
E40000001B000000
LI_XMLDOC
{O:29*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_DOCUMENT}
E0001000
2000D000
E20000001D000000
LI_STREAMFACTORY
{O:28*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_STREAM_FACTORY}
E0001000
3000C000
E30000001C000000
LI_IXMLPARSER
{O:26*\CLASS-POOL=CL_IXML\CLASS=CL_IXML_PARSER}
E0001000
5000A000
E50000001A000000
ABAP_FALSE
2
0
0
0
2000
ME->GC_ELEMENT_APPSETDATA
AppsetData
4777674676
1003544141
0000000000
0000000000
4100700070007300650074004400610074006100
LI_APPSETDATA_NODE
{O:initial}
F0000000
F0000000
FF00000000000000
ME
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
ME->D_INFO_FROM_XML
22222222222222222222222222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
ME->D_TECHN
2
0
0
0
2000
ME->D_APPSET_ID
45432222222222222222
D3D10000000000000000
00000000000000000000
00000000000000000000
4D0053004D0031002000200020002000200020002000200020002000200020002000200020002000
ME->D_INFO_FROM_XML-APPSET_ID
22222222222222222222
00000000000000000000
00000000000000000000
00000000000000000000
20002000200020002000200020002000200020002000200020002000200020002000200020002000
SY
######0#########################################ÿ#################################ÿ###䵘# X####
000000300000000000000000000000000000001000000000F000000000000000000000000000108000F00050250000
000000000000000000001010100010000000004000000000F00000000000000000000000000080C000F00080080400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C
0000000000000000000000003000000000000000000000000000000000000000000000000000000001000000010000
%_EXCP
{O:initial}
F0000000
F0000000
FF00000000000000
SYST
######0#########################################ÿ#################################ÿ###䵘# X####
000000300000000000000000000000000000001000000000F000000000000000000000000000108000F00050250000
000000000000000000001010100010000000004000000000F00000000000000000000000000080C000F00080080400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C
0000000000000000000000003000000000000000000000000000000000000000000000000000000001000000010000
No. 2 Ty. METHOD
Name CL_UJT_BACKUP_RESTORE_MGR=>RESTORE_DATA
I_FILEPATH
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
I_BACKGROUND
2
0
0
0
2000
I_METAD
X
5
8
0
0
5800
I_MDATA
X
5
8
0
0
5800
I_TDATA
X
5
8
0
0
5800
I_RECCT
0
0000
0000
00000000
I_TECHN
2
0
0
0
2000
ET_MESSAGES
Table[initial]
ME->D_FILEPATH
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
ME->D_BACKGROUND
2
0
0
0
2000
ME->D_METAD
X
5
8
0
0
5800
ME->D_MDATA
X
5
8
0
0
5800
ME->D_TDATA
X
5
8
0
0
5800
ME->D_RECCT
0
0000
0000
00000000
ME->D_TECHN
2
0
0
0
2000
ME
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
ME->GC_MODE_RESTORE
R
5
2
0
0
5200
ME->GC_FILE_TYPE_TD
TRANS
55445
421E3
00000
00000
5400520041004E005300
No. 1 Ty. EVENT
Name START-OF-SELECTION
P_TDATA
X
5
8
0
0
5800
P_RECCT
0
0000
0000
00000000
L_OPTIONS
222222222222222222222222222222222222222222222222222222222222
000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_DUMMY$$
2222
0000
0000
0000
2000200020002000
ABAP_TRUE
X
5
8
0
0
5800
P_RST
X
5
8
0
0
5800
SY-REPID
UJT_BACKUP_RESTORE_UI
5455444455554554545542222222222222222222
5A4F213B50F2534F25F590000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F00550049002000200020
LV_STR
G:\APSHELLS\XXXCONSOLIDATION.zip
43545544445545444454444454442767
7AC10385CC3CD3D3FE3FC94149FEEA90
00000000000000000000000000000000
00000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
P_FILE
G:\APSHELLS\XXXCONSOLIDATION.zip
4354554444554544445444445444276722222222222222222222222222222222222222222222222222222222222222
7AC10385CC3CD3D3FE3FC94149FEEA9000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
47003A005C00410050005300480045004C004C0053005C004D0053004D0043004F004E0053004F004C004900440041
SPACE
2
0
0
0
2000
LO_BACKUP_RESTORE_MGR
{O:43*\CLASS=CL_UJT_BACKUP_RESTORE_MGR}
D0002000
4000B000
D40000002B000000
%_SPACE
2
0
0
0
2000
P_BACKG
2
0
0
0
2000
P_METAD
X
5
8
0
0
5800
P_MDATA
X
5
8
0
0
5800
P_TECHN
2
0
0
0
2000
SYST-REPID
UJT_BACKUP_RESTORE_UI
5455444455554554545542222222222222222222
5A4F213B50F2534F25F590000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
55004A0054005F004200410043004B00550050005F0052004500530054004F00520045005F00550049002000200020
Internal notes
The termination was triggered in function "method_call_iref"
of the SAP kernel, in line 3160 of the module
"//bas/720_REL/src/krn/runt/abmethod.c#7".
The internal operation just processed is "METH".
Internal mode was started at 20120830170343.
Active Calls in SAP Kernel
Lines of C Stack in Kernel (Structure Differs on Each Platform)
(CTrcStack2+0x82)[0x6d52e2]
(_Z16rabax_CStackSavev+0xc0)[0x9c65d6]
(ab_rabax+0x4bb2)[0x9cf1d2]
(_Z8ab_jmethv+0xfbd)[0xc5c74d]
(_Z8ab_extriv+0x1ab)[0x95a22d]
(_Z9ab_xeventPKt+0x23)[0x9fbca3]
(_Z8ab_triggv+0x41)[0x8f4a21]
(ab_run+0x10a)[0x91921a]
(dynpmcal+0x49c)[0x7c166c]
(dynppai0+0x270)[0x7c22a0]
(dynprctl+0x121)[0x6fc9c1]
(dynpen00+0x3b1)[0x77f557]
(TskhLoop+0x1478)[0x522178]
(ThStart+0x372)[0x52fe22]
(DpMain+0x5a5)[0x475255]
/lib64/libc.so.6(__libc_start_main+0xf4)[0x31f681d974]
List of ABAP programs affected
Index Typ Program Group Date Time Size Lang.
0 Prg UJT_BACKUP_RESTORE_UI 0 09.05.2012 11:21:23 76800 E
1 Prg SAPMSSY0 1 10.02.2011 16:05:48 110592 E
2 Prg SAPMSSYD 1 10.02.2011 16:05:48 24576 E
3 Prg SAPFSYSCALLS 1 05.09.2008 16:39:54 8192 E
4 Prg RSDBRUNT 0 29.07.2011 16:50:56 305152 E
5 Typ RSSCR 0 23.11.1999 09:24:41 5120
6 Prg RSDBSPBL 0 15.09.2010 10:37:00 84992 E
7 Prg SAPDB__S 0 05.09.2008 16:39:54 21504 E
8 Typ VARID 0 05.09.2008 16:40:21 5120
9 Typ SSCRFIELDS 0 02.05.1997 13:16:39 5120
10 Prg RSDBSPVA 0 15.09.2010 10:37:01 160768 E
11 Prg %_CSYDB0 0 05.09.2008 16:39:44 40960 E
12 Typ RSVAMEMKEY 0 16.12.1996 19:31:50 2048
13 Prg RSDBSPMC 0 05.09.2008 16:39:54 92160 E
14 Typ DDSHDESCR 0 28.11.1997 16:26:30 4096
15 Typ SPPARAMS 0 07.03.1997 14:48:48 2048
16 Prg SAPLICON 16 05.09.2008 16:39:55 32768 E
17 Prg %_CICON 16 05.09.2008 16:39:44 126976 E
18 Typ ICONT 0 16.01.1998 17:48:35 2048
19 Prg SAPLSABE 19 15.09.2010 11:29:11 14336 E
20 Prg SAPLSECU 20 29.07.2011 16:49:47 128000 E
21 Typ RSSUBINFO 0 22.11.1999 21:15:17 3072
22 Typ RSEXFCODE 0 18.07.1997 17:04:17 2048
23 Prg SAPLDSYA 23 15.09.2010 11:35:05 52224 E
24 Prg SAPFSDS1 23 05.09.2008 16:39:54 61440 E
25 Typ TDCLD 0 14.07.1998 14:53:43 5120
26 Prg SAPLSDOD 26 13.09.2010 15:10:54 50176 E
27 Typ DOKIL 0 07.04.1997 18:29:04 3072
28 Prg SAPCNVE 28 05.09.2008 16:39:54 9216 E
29 Prg SAPLLANG 29 05.09.2008 16:39:55 11264 E
30 Typ T002 0 03.11.2006 12:47:38 2048
31 Prg SAPFSPOR 0 05.09.2008 16:39:54 16384 E
32 Typ RSPARINT 0 10.03.1995 17:53:00 2048
33 Prg SAPLSCNT 33 05.09.2008 17:08:49 34816 E
34 Typ DYCBOX 0 23.11.1999 09:23:17 3072
35 Prg SAPLSVSM 35 15.09.2010 10:46:50 33792 E
36 Prg SAPLSGUI 36 15.09.2010 11:31:16 104448 E
37 Prg SAPLSTTM 37 15.09.2010 10:47:17 79872 E
38 Prg SAPLSBDC 38 15.09.2010 10:47:17 49152 E
39 Prg CL_DATAPROVIDER===============CP 39 05.09.2008 16:39:47 57344 E
40 Prg SAPLSTUP 40 30.09.2011 11:23:24 86016 E
41 Prg SAPLCNDP 41 10.02.2011 12:21:23 232448 E
42 Prg SAPFGUICNTL 1 05.09.2008 16:39:54 27648 E
43 Prg SAPLOLEA 43 29.07.2011 16:50:48 113664 E
44 Prg SAPLSFES 44 29.07.2011 16:49:11 314368 E
45 Prg SAPLSPLUGIN 45 05.09.2008 17:50:58 9216 E
46 Typ ARFCRDATA 0 15.09.2010 10:31:34 6144
47 Prg SAPLGRFC 47 05.09.2008 16:39:55 16384 E
48 Typ SWCBCONT 0 07.10.1997 12:13:50 3072
49 Typ OLE_VERBS 0 09.02.1995 13:23:37 2048
50 Typ OLE_PA 0 13.01.1995 11:06:59 2048
51 Prg SAPSHDTV 33 29.07.2011 16:50:59 38912 E
52 Typ SHDSTU 0 10.12.1998 13:29:36 2048
53 Typ SHDSTCIU 0 10.12.1998 13:29:36 2048
54 Typ SSCRTEXTS 0 15.08.1997 14:15:15 3072
55 Prg CL_GUI_PROPS_CONSUMER=========CP 55 05.09.2008 16:39:48 34816 E
56 Prg SAPLTHFB 56 30.09.2011 11:25:14 447488 E
57 Typ EUDB 0 13.10.2003 17:09:46 8192
58 Prg %_CCNTL 55 05.09.2008 16:39:44 17408 E
59 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 59 05.09.2008 17:50:42 44032 E
60 Prg CL_GUI_DATAMANAGER============CP 60 05.09.2008 17:50:54 87040 E
61 Prg CL_ABAP_CHAR_UTILITIES========CP 61 29.07.2011 16:49:11 14336 E
62 Prg CL_GUI_FRONTEND_SERVICES======CP 62 30.09.2011 11:28:18 148480 E
63 Prg CL_GUI_OBJECT=================CP 63 05.09.2008 17:50:56 449536 E
64 Prg CL_GUI_CFW====================CP 64 15.09.2010 10:53:05 190464 E
65 Typ OBJ_RECORD 0 07.10.1997 12:13:38 2048
66 Typ TOLE 0 20.05.1998 14:20:04 3072
67 Prg %_COLE2 43 05.09.2008 16:39:44 11264 E
68 Prg SAPLSCP2 68 29.07.2011 16:49:11 178176 E
69 Typ SWCONT 0 18.01.1995 16:55:29 3072
70 Prg CL_ABAP_TYPEDESCR=============CP 70 15.09.2010 11:35:17 35840 E
71 Prg CL_ABAP_ELEMDESCR=============CP 71 15.09.2010 10:47:18 41984 E
72 Prg CL_ABAP_DATADESCR=============CP 72 15.09.2010 11:35:17 21504 E
73 Prg CL_ABAP_REFDESCR==============CP 73 15.09.2010 11:01:19 36864 E
74 Prg CL_ABAP_STRUCTDESCR===========CP 74 15.09.2010 10:47:18 51200 E
75 Prg CL_ABAP_COMPLEXDESCR==========CP 75 15.09.2010 10:47:18 19456 E
76 Prg CL_ABAP_TABLEDESCR============CP 76 15.09.2010 11:35:18 37888 E
77 Prg CL_ABAP_CLASSDESCR============CP 77 15.09.2010 10:47:18 35840 E
78 Prg CL_ABAP_OBJECTDESCR===========CP 78 15.09.2010 10:47:18 38912 E
79 Prg CL_ABAP_INTFDESCR=============CP 79 15.09.2010 10:47:18 27648 E
80 Typ PKRT_CLIENT_HANDLE 0 26.09.2006 13:18:51 2048
81 Prg CL_ABAP_SOFT_REFERENCE========CP 81 05.09.2008 17:50:56 10240 E
82 Prg CL_ABAP_REFERENCE=============CP 82 05.09.2008 17:16:02 8192 E
83 Typ INFOCNTL_FEATURE 0 04.01.2006 17:21:46 2048
84 Typ FILE_TABLE 0 05.01.1999 16:01:10 4096
85 Typ RFC_FIELDS 0 16.12.1996 19:30:48 3072
86 Prg SAPLCNTL 86 05.09.2008 16:39:55 362496 E
87 Prg SAPLCNTH 87 05.09.2008 16:39:55 34816 E
88 Typ DPPROPS 0 06.06.1997 18:56:23 2048
89 Prg SAPLURFC 89 29.07.2011 16:27:10 26624 E
90 Prg SAPLSRFC 90 15.09.2010 10:48:53 48128 E
91 Prg SAPLSYST 91 10.02.2011 16:05:39 44032 E
92 Prg CL_SYSTEM_UUID================CP 92 10.02.2011 16:05:21 36864 E
93 Prg CX_UUID_ERROR=================CP 93 15.09.2010 10:47:17 12288 E
94 Prg CX_STATIC_CHECK===============CP 94 15.09.2010 10:47:17 11264 E
95 Prg CX_ROOT=======================CP 95 15.09.2010 11:36:45 13312 E
96 Prg SAPMSSY1 41 05.09.2008 17:12:19 25600 E
97 Prg SAPLCNT0 97 05.09.2008 16:39:55 47104 E
98 Typ ARFCSDATA 0 15.09.2010 10:31:55 6144
99 Prg SAPLSHL2 99 30.09.2011 11:23:24 716800 E
100 Prg RSDBSPVD 0 29.07.2011 16:29:55 102400 E
101 Typ RVARI 0 18.06.1999 11:23:08 4096
102 Typ RSVARIVDAT 0 05.09.2008 16:37:58 2048
103 Prg SAPFGUICNTL_CFW 1 05.09.2008 16:39:54 16384 E
104 Prg CL_UJT_BACKUP_RESTORE_MGR=====CP 104 09.05.2012 11:21:22 330752 E
105 Prg SAPLSBAL 105 15.09.2010 11:30:25 361472 E
106 Typ BAL_S_LOG 0 11.07.2006 22:20:04 7168
107 Prg SAPLSBAL_SERVICE 107 13.09.2010 15:35:16 193536 E
108 Typ BAL_S_PARM 0 11.07.2006 22:02:22 3072
109 Typ BAL_S_SCNT 0 30.11.1998 10:34:01 3072
110 Typ BAL_S_SDEF 0 01.02.2001 17:04:57 2048
111 Prg SAPLSYGU 111 29.07.2011 16:50:59 24576 E
112 Typ BAL_S_CONT 0 26.10.1998 14:08:10 2048
113 Typ BAL_S_CLBK 0 26.10.1998 14:08:10 2048
114 Prg CX_UJT_BACKUP_RESTORE_ERROR===CP 114 09.05.2012 11:21:22 44032 E
115 Prg CX_UJ_STATIC_CHECK============CP 115 24.01.2012 13:39:51 13312 E
116 Prg CL_UJA_APPSET_DAO=============CP 116 24.01.2012 13:37:14 35840 E
117 Prg CL_UJ_DAO_ENV=================CP 117 24.01.2012 13:39:38 9216 E
118 Typ UJA_S_APPSET_INFO 0 24.01.2012 13:36:34 4096
119 Prg SAPLUJN_API_BI 119 09.05.2012 11:16:53 28672 E
120 Prg CL_NEW_AWB_AREA===============CP 120 15.09.2010 11:48:34 77824 E
121 Typ RSDAREA 0 12.09.2003 11:34:17 4096
122 Typ RSDAREAT 0 12.09.2003 11:34:17 3072
123 Prg SAPLRSATREE 123 15.09.2010 11:58:01 1813504 E
124 Typ RSAPPL 0 12.09.2003 11:34:06 4096
125 Typ RSAPPLT 0 12.09.2003 11:34:06 3072
126 Typ RSLGRHIE 0 12.09.2003 11:34:56 4096
127 Typ RSLGRHIET 0 12.09.2003 11:34:56 3072
128 Typ SYCH_TABLES_ENTRY 0 03.11.2005 13:14:56 2048
129 Typ BAL_S_MSG 0 11.07.2006 22:20:07 7168
130 Typ RSAWBN_S_TREEORG 0 14.06.2004 17:14:03 3072
131 Prg CL_UJT_UTILITY================CP 131 09.05.2012 11:16:50 14336 E
132 Prg CL_UJ_MODEL===================CP 132 09.05.2012 11:16:50 40960 E
133 Prg CL_UJE_SERVER_ADMIN_DAO=======CP 133 24.01.2012 13:38:54 10240 E
134 Prg CL_UJ_LOG=====================CP 134 09.05.2012 11:16:50 28672 E
135 Typ UJ0_S_LOG 0 24.01.2012 13:36:33 3072
136 Prg CX_UJ_NULL_OBJ_REF============CP 136 24.01.2012 13:39:50 17408 E
137 Prg CX_UJ_NO_CHECK================CP 137 24.01.2012 13:39:50 13312 E
138 Prg CX_NO_CHECK===================CP 138 15.09.2010 10:47:17 11264 E
139 Prg CL_UJA_ADMIN_MGR==============CP 139 09.05.2012 11:21:26 131072 E
140 Typ UJ0_S_MODEL_REF 0 24.01.2012 13:36:33 2048
141 Typ UJ0_S_MESSAGE 0 24.01.2012 13:36:33 4096
142 Prg SAPLRHFE 142 05.09.2008 16:39:55 17408 E
143 Typ TFDIR 0 19.01.2005 15:10:28 3072
144 Prg /SDF/SAPLSMD_E2E_TRACE 144 29.07.2011 17:40:08 212992 E
145 Prg SAPLSETRM 145 30.09.2011 11:28:18 181248 E
146 Typ UJ0_S_DETAIL 0 24.01.2012 13:36:33 2048
147 Prg SAPLSBAL_DB 147 29.07.2011 16:49:27 264192 E
148 Prg CL_SYSTEM_TRANSACTION_STATE===CP 148 15.09.2010 11:36:49 144384 E
149 Prg SAPLSBAL_TOOLBOX 149 15.09.2010 10:41:47 225280 E
150 Prg SAPLSNR3 150 13.09.2010 15:35:18 63488 E
151 Typ TNRO 0 15.09.2010 10:32:15 6144
152 Typ BNRIV 0 15.09.2010 10:31:30 3072
153 Typ BAL_S_LGNM 0 19.01.2000 18:24:14 3072
154 Typ BALHDR 0 15.09.2010 10:31:50 8192
155 Typ BALDAT 0 19.01.2000 18:44:46 3072
156 Typ BAL_S_DB 0 15.09.2010 10:31:28 9216
157 Prg SAPLSBAL_DB_INTERNAL 157 13.09.2010 15:35:16 43008 E
158 Typ BAL_INDX 0 24.03.1995 17:33:48 5120
159 Prg SAPLSPIAGENTCW 159 15.09.2010 10:35:40 14336 E
160 Prg SAPLSPILS 160 15.09.2010 11:31:55 79872 E
161 Prg CL_OS_TRANSACTION_END_NOTIFIERCP 161 15.09.2010 10:50:37 10240 E
162 Prg CL_VSI========================CP 162 29.07.2011 16:49:11 68608 E
163 Prg SAPLSCMS_CONV 163 15.09.2010 11:30:37 51200 E
164 Prg CL_UJF_ZIP====================CP 164 24.01.2012 13:38:58 37888 E
165 Prg CL_ABAP_ZIP===================CP 165 15.09.2010 11:35:21 37888 E
166 Prg CL_ABAP_CONV_IN_CE============CP 166 29.07.2011 16:49:11 25600 E
167 Prg CL_IXML=======================CP 167 30.09.2011 11:28:18 266240 E
168 Prg CL_IXML_UNKNOWN===============CP 168 05.09.2008 17:50:56 9216 E
169 Prg CX_SY_REF_IS_INITIAL==========CP 169 05.09.2008 17:50:57 11264 E
170 Prg CX_DYNAMIC_CHECK==============CP 170 15.09.2010 10:47:17 11264 E
171 Prg CX_SY_NO_HANDLER==============CP 171 05.09.2008 17:50:57 11264 E
172 Typ SYST 0 15.09.2010 10:32:06 30720
173 Prg IF_MESSAGE====================IP 114 15.09.2010 10:47:17 5120 E
174 Prg IF_SERIALIZABLE_OBJECT========IP 114 05.09.2008 16:39:53 5120 E
175 Prg IF_T100_MESSAGE===============IP 114 15.09.2010 10:47:17 6144 E
176 Typ SCX_T100KEY 0 21.08.2003 14:43:58 3072
Directory of Application Tables
Name Date Time Lngth
Val.
Program UJT_BACKUP_RESTORE_UI
SYST 15.09.2010 10:32:06 00004612
\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\x0001\0
SY . . : : 00004612
\0\0\0\0\0\00\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\x0001\0
SSCRFIELDS 15.09.2004 17:25:21 00001708
SSCRTEXTS . . : : 00000742
Program RSDBRUNT
VARID . . : : 00000252
Program SAPLICON
ICONT . . : : 00000130
Program SAPFSDS1
TDCLD . . : : 00000098
RE DOKU 40R XX XXLIMUDOCUX (XR3TRPROGX X|
Program SAPLSDOD
DOKIL . . : : 00000152
Program SAPLLANG
T002 . . : : 00000010
ES1EN|
Program SAPLOLEA
TOLE . . : : 00000394
SAP.DATAPROVIDER.1 {799104C5-04C5-11D0-
Program SAPSHDTV
SHDSTU . . : : 00000106
|
SHDSTCIU . . : : 00000100
|
Program CL_GUI_PROPS_CONSUMER=========CP
EUDB . . : : 00004068
%C00034255503DB0B7F3476000E10000000A0F102E \0\0\0
Program CL_GUI_FRONTEND_SERVICES======CP
EUDB . . : : 00004068
FE00034255503DB0B7F3476000E10000000A0F102E \0\0\0
Program CL_UJ_LOG=====================CP
BAL_INDX . . : : 00002944
001UJ00000000000000020234\0\0\0 ۿĂȂ\x0080ㄴ㌰\0\0ï\0ἒʝ㘺پ뀠ᄀೌ䁘
Program SAPLRHFE
TFDIR . . : : 00000268
ECATT_SAVE_BALMSG SAPLSETRM
Program SAPLSBAL_DB
BALDAT . . : : 00000588
001ALQBMPlXpG7k6yqjK5KuSAKm000001\0\x0002\0¢옧褍\xF119쯫썳
Program SAPLSNR3
BNRIV . . : : 00000212
001APPL_LOG 010000000000000000000000019999999999999
TNRO . . : : 00000930
APPL_LOG
ABAP Control Blocks (CONT)
Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Source Code Line
20120 1212
4230 WHIL 00 0004 0000 0000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 74
4234 METH 01 0000 0000 0000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 76
4238 ---- 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 76
4239 CPOP 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4240 PAR2 13 0000 0014 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4242 PAR2 05 0000 0020 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4244 ---- 00 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00R 1
4245 METH 04 0000 0002 0001 0000 0001 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4249 PAR2 04 0000 C000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4251 PAR2 10 0000 8000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 1
4253 CLEA 00 8000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 11
>>>>> METH 13 0001 000F 8013 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4258 PAR1 E5 C002 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4259 PAR2 00 0000 0001 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 12
4261 METH 13 0001 0010 8000 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
4265 PAR1 E5 C003 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
4266 PAR2 00 0000 0001 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 13
4268 METH 13 0001 0011 8001 0000 0000 0000 0000 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 14
4272 PAR1 E5 C004 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 14
4268 METH 13 0001 0011 8001 0000
0000 0000 0000
CL_UJT_BACKUP_RESTORE_MGR=====CM00S 14
4272 PAR1 E5 C004 CL_UJT_BACKUP_RESTORE_MGR=====CM00S 14
Regards,
Srinivasan.
I just recently had this issue with a demo environment I was restoring and thought I would update this thread with possibly another solution.
What I found was that there was a second folder in between the zip folder and the component folders like this:
Zip file > sub folder > component folders
component folders meaning: Comments.Audit.Journals, FileService, MasterData etc... (check note 1625576 regarding what folders/file the zip file should contain specifically)
What I did to correct the issue was to re-zip the component folders in a new zip file
Zip file > component folders
When using this new zip file the restore worked.
FYI this was a 10.1 restore I was working with.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Seems I faced similar situation.
Does your object ZERO isn't used in any of your models (cubes)?
Check carefuly.
Sincerelly yours,
Alexander Sobolev
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
did you find the solution for this issue?
I'm facing the same situation when trying to restore my APPSET in development system.
Thank you,
Best regards,
Raquel Oliveira
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Srinivasan,
We dont restore the apshell. We just re-activate it using the program UJS_ACTIVATE_CONTENT. Are you using this?
Before activating, clean the apshell, first, using the same program.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I dont understand why would you want to restore the apshell. Its a standard appset and should not be changed at any time. So, you dont need to restore it, instead just re-activate the appset.
Since, apshell is standard, reactivating the apshell is similar to restoring it, unless you have made any changes to apshell, which is definitely not the right approach.
Hope this helps.
Hi Srinivasan,
Have you upgraded recently? As Nilanjan has suggested couple of times earlier, you just need to reactivate it. You think of restoration in case you are upgrading and still want to refer to the old appshell. I don't see any other reason of restoring the appshell. Please let us know the reason.
Hope it helps!!
Hi Expert,
I completed the all tasks in the Applicationset, for safe purpose i took backup.
After that we are not done any upgradations. Recently our Oracle Password is Expired we fixed that.
Now i want to restore the backup one.
Not only this i am unable to retore my earlier projects Bakups's also. I am getting the dump error.
Regards,
Srinivasan.
Hi Shrinivasan,
Was you able to resolve this issue?
I am getting the same error. We are trying to restore the environment (back up done from another system). It throws the error as given below -
Short text
Access using NULL object reference is not possible.
What happened?
Error in the ABAP application program.
The current ABAP program "CL_UJAA_APPSET================CP" had to be
interrupted because it contains
a statement that cannot be executed.
How to correct the error
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
please use the following search criteria:
"OBJECTS_OBJREF_NOT_ASSIGNED" "CX_SY_REF_IS_INITIAL"
"CL_UJAA_APPSET================CP" bzw.
"CL_UJAA_APPSET================CM00C"
"IF_UJA_APPSET_MANAGER~GET"
If you cannot solve the problem yourself, please send the
following documents to SAP:
Information on where terminated
Termination occurred in the ABAP program "CL_UJAA_APPSET================CP" -
in "IF_UJA_APPSET_MANAGER~GET".
The main program was "UJT_BACKUP_RESTORE_UI ".
In the source code you have the termination point in line 30
of the (Include) program "CL_UJAA_APPSET================CM00C".
The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
procedure "IF_UJA_APPSET_MANAGER~GET" "(METHOD)", but it was neither handled
locally nor declared
in the RAISING clause of its signature.
The procedure is in program "CL_UJAA_APPSET================CP "; its source
code begins in line
1 of the (Include program "CL_UJAA_APPSET================CM00C ".
Any suggestion?
Regards,
Rashmi
User | Count |
---|---|
10 | |
5 | |
4 | |
3 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.