Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 19

Runtime Errors

Exception
Date and Time

BCD_ZERODIVIDE
CX_SY_ZERODIVIDE
20.02.2014 13:17:41

Short text
Division by 0 (type P) in program "ZPRD_CON_SUM"

What happened?
Error in the ABAP Application Program
The current ABAP program "ZPRD_CON_SUM" had to be terminated because it has
come across a statement that unfortunately cannot be executed.

What can you do?


Note down which actions and inputs caused the error.
To process the problem further, contact you SAP system
administrator.
Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.

Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_ZERODIVIDE', was not caught
and
therefore caused a runtime error.
The reason for the exception is:
In the current program "ZPRD_CON_SUM", an arithmetic operation ('DIVIDE',
'/', 'DIV' or 'MOD') with a type P operand attempted to divide
by 0.

How to correct the error


If the error occurred in your own ABAP program or in an SAP
program you modified, try to remove 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:

"BCD_ZERODIVIDE" "CX_SY_ZERODIVIDE"
"ZPRD_CON_SUM" or "ZPRD_CON_SUM"
"START-OF-SELECTION"
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:
1. The description of the current problem (short dump)
To save the description, choose "System->List->Save->Local File
(Unconverted)".
2. Corresponding system log
Display the system log by calling transaction SM21.
Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".
3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".
4. Details about the conditions under which the error occurred or which
actions and input led to the error.

System environment
SAP-Release 700
Application server... "ERPPRD"
Network address...... "10.10.92.12"
Operating system..... "Linux"
Release.............. "2.6.32.12-0.7-defaul"
Hardware type........ "x86_64"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 1
Shortdump setting.... "full"
Database
Database
Database
Database

server...
type.....
name.....
user ID..

"ERPPRD"
"DB6"
"ECP"
"SAPECP"

Terminal................. "Salman-PC"
Char.set.... "C"
SAP kernel....... 700
created (date)... "Apr 2 2009 20:36:06"

create on........ "Linux GNU SLES-9 x86_64 cc3.3.3"


Database version. "DB6_81 "
Patch level. 201
Patch text.. " "
Database............. "DB6 08.02.*, DB6 09.*"
SAP database version. 700
Operating system..... "Linux 2.6"
Memory consumption
Roll.... 16192
EM...... 16759392
Heap.... 0
Page.... 57344
MM Used. 6194136
MM Free. 6372408

User and Transaction


Client..............
User................
Language key........
Transaction.........
Transactions ID.....

100
"SALMAN"
"E"
"ZDPR "
"5305C634373A7D16E10000000A0A5C0C"

Program............. "ZPRD_CON_SUM"
Screen.............. "SAPMSSY0 1000"
Screen line......... 6

Information on where terminated


Termination occurred in the ABAP program "ZPRD_CON_SUM" - in
"START-OF-SELECTION".
The main program was "ZPRD_CON_SUM ".
In the source code you have the termination point in line 1706
of the (Include) program "ZPRD_CON_SUM".

Source Code Extract


Lin
e

SourceCde
LOOP AT RUNH.

167
6
167
7

DATA: LV_INDEX TYPE SY-TABIX.


MOVE SY-TABIX TO LV_INDEX.

167
8
167
9

CASE RUNH-ARBID.
WHEN '10000045'.

168
0
168
1

MOVE 8

TO RUNH-DISP_SEQ.

MOVE 'Packing Mahine No. 1' TO RUNH-DESCRIPTION.

168
2
168
3

MOVE ''

TO RUNH-CODE.

WHEN '10000046'.

168
4
168
5

MOVE 9

TO RUNH-DISP_SEQ.

MOVE 'Packing Mahine No. 2' TO RUNH-DESCRIPTION.

168
6
168
7

MOVE ''

TO RUNH-CODE.

WHEN '10000047'.

168
8
168
9

MOVE 10

TO RUNH-DISP_SEQ.

MOVE 'Packing Mahine No. 3' TO RUNH-DESCRIPTION.

169
0
169
1

MOVE ''

TO RUNH-CODE.

WHEN '10000048'.

169
2
169
3

MOVE 11

TO RUNH-DISP_SEQ.

MOVE 'Rotary Packer No. 1'

TO RUNH-DESCRIPTION.

MOVE ''

TO RUNH-CODE.

169
4
169
5

WHEN '10000049'.

169
6
MOVE 12

TO RUNH-DISP_SEQ.

169
7
MOVE 'Rotary Packer No. 2'

TO RUNH-DESCRIPTION.

MOVE ''

TO RUNH-CODE.

169
8
169
9
170
0

WHEN '10000050'.
MOVE 13

TO RUNH-DISP_SEQ.

MOVE 'Rotary Packer No. 3'

TO RUNH-DESCRIPTION.

MOVE ''

TO RUNH-CODE.

170
1
170
2
170
3
170
4
170
5
>>>
>>
170
7

ENDCASE.
IF RUNH-TONHR_DAY NE 0 OR RUNH-DAY NE 0.
RUNH-TONHR_DAY

= RUNH-TONHR_DAY

RUNH-DAY.

ENDIF.
RUNH-TONHR_MONTH

= RUNH-TONHR_MONTH /

RUNH-MONTH .

RUNH-TONHR_YEAR

= RUNH-TONHR_YEAR

RUNH-YEAR.

170
8
170
9
171
0
171
1

MODIFY RUNH INDEX LV_INDEX TRANSPORTING


DESCRIPTI

CODE TONHR_DAY TONHR_MONTH TONHR_YE

CLEAR RUNH.
ENDLOOP.

171
2
171
3

SORT RUNH BY DISP_SEQ.

171
4
171
5
171

********************************************************************************
**

**

Running Hours & Power Generation

***

171
7
171
8

********************************************************************************
**
DATA:

171
9
BEGIN OF GI_MOVES OCCURS 0,

172
0

AUFNR LIKE MSEG-AUFNR,

172
1
MBLNR LIKE MSEG-MBLNR,

172
2

MATNR LIKE MARA-MATNR,

172
3
BUDAT LIKE MKPF-BUDAT,

172
4

RSNUM LIKE MSEG-RSNUM,

172
5

Contents of system fields


Name

Val.

SYSUBRC
SYINDEX
SYTABIX
SYDBCNT
SYFDPOS
SYLSIND
SYPAGNO
SYLINNO
SYCOLNO
SYPFKEY
SYUCOMM

0
0
12
19940
0
0
0
1
1

SYTITLE
SYMSGTY
SYMSGID
SYMSGNO
SYMSGV1
SYMSGV2
SYMSGV3
SYMSGV4
SYMODNO
SYDATUM
SYUZEIT
SYXPROG
SYXFORM

CCCL- Production -

Consumption Summary

I
SF
616
ZPRD_CON_SUM
RE
EN

0
20140220
131602
SAPCNVE
CONVERSION_EXIT

Active Calls/Events
No.

Ty.
Name

Program

1 EVENT
ZPRD_CON_SUM
START-OF-SELECTION

Chosen variables
Name

Val.

No.
Nam
e

Ty.

EVENT

START-OF-SELECTION

SY-REPID
ZPRD_CON_SUM
5554544455542222222222222222222222222222
A024F3FEF35D0000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
RUNH-DESCRIPTION
Packing Mahine No. 1

Include
ZPRD_CON_SUM

56666662466666246223222222222222222
013B9E70D189E50EFE01000000000000000
00000000000000000000000000000000000
00000000000000000000000000000000000
RUNH-CODE
22222222
00000000
00000000
00000000
SY-XFORM
CONVERSION_EXIT
444545544454545222222222222222
3FE65239FEF5894000000000000000
000000000000000000000000000000
000000000000000000000000000000
RUNH-ARBID
10000045
3333333322
1000004500
0000000000
0000000000
MAT-CONSM
########
00000000
0000000C
SPACE
2
0
0
0
SY

###############################################################################

00000000000000000000E00000000000000000A000000000100000000000000000000000000020A000100

0000C0C0000000000000400010001000000000C000000000600000000000000000000000000030E000600

0000000000000000000040000000000000000000000000000000000000000000000000000000000000000

00000000000000000000D0000000000000000000000000000000000000000000000000000000000000000
RUNH-DISP_SEQ
8
22232
00080
00000
00000
RSJOBINFO
00000000000000
##
2222222222222222222222222222222233333333333333222222222222222222222222222222222200
0000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000

C_ALV_HEAD_HEADER
H
4
8
0
0
RUNH-TONHR_DAY
#####P##
00000500
0000500C
SYST-REPID
ZPRD_CON_SUM
5554544455542222222222222222222222222222
A024F3FEF35D0000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
RUNH-DAY
########
00000000
0000000C
LV_INDEX
12
0000
C000
RUNH[]
Table IT_42[12x172]
\PROGRAM=ZPRD_CON_SUM\DATA=RUNH[]
Table reference: 35
TABH+ 0(20) = 50B4CBC0477F000070C9CAC0477F000000000000
TABH+ 20(20) = 230000002A0000000C000000AC00000000000000
TABH+ 40(16) = 04000000F00E00001000C93080010000
store
= 0x50B4CBC0477F0000
ext1
= 0x70C9CAC0477F0000
shmId
= 0
(0x00000000)
id
= 35
(0x23000000)
label
= 42
(0x2A000000)
fill
= 12
(0x0C000000)
leng
= 172
(0xAC000000)
loop
= 0
(0x00000000)
xtyp
= TYPE#000065
occu
= 16
(0x10000000)
access
= 1
(ItAccessStandard)
idxKind
= 1
(ItIndexLinear)
uniKind
= 2
(ItUniqueNon)
keyKind
= 1
(default)
cmpMode
= 8
(cmpManyEq)
occu0
= 1
groupCntl
= 0
rfc
= 0
unShareable = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId = 0
gcKind
= 0

isUsed
= 1
isCtfyAble
= 1
>>>>> Shareable Table Header Data <<<<<
tabi
= 0x5074DFC0477F0000
pgHook
= 0x0000000000000000
idxPtr
= 0x40E4D0C0477F0000
shmTabhSet
= 0x0000000000000000
id
= 35
(0x23000000)
refCount
= 0
(0x00000000)
tstRefCount = 0
(0x00000000)
lineAdmin
= 16
(0x10000000)
lineAlloc
= 16
(0x10000000)
shmVersId
= 0
(0x00000000)
shmRefCount = 1
(0x01000000)
>>>>> 1st level extension part <<<<<
regHook
= 0x0000000000000000
collHook
= 0x0000000000000000
ext2
= 0x0000000000000000
>>>>> 2nd level extension part <<<<<
tabhBack
= Not allocated
delta_head
= Not allocated
pb_func
= Not allocated
pb_handle
= Not allocated
RUNH

8
Packing Mahine No. 1
#######

#### 1000
2223222222222566666624666662462232222222222222222222000000010000000000200070333333
0008000000000013B9E70D189E50EFE010000000000000000000000000060021005000100030100000
0000000000000000000000000000000000000000000000000000000000200030005000500040000000
0000000000000000000000000000000000000000000000000000000C005C000C000C009C011C000000
SAL-SEQNO
########
00000000
0000020C
<%_L00A>
???
??????
??????
<%_L009>
???
??????
??????
<%_L009>-MATNR
???
??????
??????
<%_TABLE_AFRU>
???
??????
??????

Internal notes

The termination was triggered in function "ab_jcald"


of the SAP kernel, in line 1884 of the module
"//bas/700_REL/src/krn/runt/abextri.c#13".
The internal operation just processed is "ccqd".
Internal mode was started at 20140220131559.

Active Calls in SAP Kernel


Lines of C Stack in Kernel (Structure Differs on Each Platform)
(CTrcStack2+0x78)[0x6c3618]
(CTrcStack+0xb)[0x6c3c1b]
(ab_rabax+0x365b)[0xb6ea6b]
(_Z21ab_bcderr_compute_bcdPKtiiS0_Pv+0xa5)[0x8af4c5]
(_Z9QuickCaldv+0x366)[0x89d4d6]
(_Z8ab_extriv+0x4c5)[0x8a2765]
(_Z9ab_xeventPKt+0x1c1)[0xa03651]
(_Z8ab_triggv+0x9c)[0xa03dac]
(ab_run+0x97)[0xbbee27]
(N_ab_run+0x9)[0x72a739]
(dynpmcal+0x630)[0x727820]
(dynppai0+0x8ea)[0x7291ba]
(dynprctl+0x3e9)[0x7281d9]
(dynpen00+0x46a)[0x71c14a]
(Thdynpen00+0x35f)[0x53e0af]
(TskhLoop+0xc39)[0x5498f9]
(ThStart+0x20f)[0x55714f]
(DpMain+0x2fa)[0x4bab0a]
(nlsui_main+0x9)[0x490889]
(main+0x2b)[0x4908bb]
/lib64/libc.so.6(__libc_start_main+0xe6)[0x7f48d0422bc6]

List of ABAP programs affected


Inde
x

0
1
2
3
4

T
y
p

Program

P
r
g
P
r
g
P
r
g
P
r
g
P
r

ZPRD_CON_SUM
SAPMSSY0

Grou
p

Date

Time

Size

20.02.20
14

13:15:
33

245760

17.12.20
07

15:41:
05

92160

12.09.20
06

11:33:
31

21504

09.09.20
04

14:18:
32

7168

05.11.20
09

12:08:
20

254976

SAPMSSYD
SAPFSYSCALLS
RSDBRUNT

5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

g
T
y
p
P
r
g
P
r
g
T
y
p
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
T
y
p
T
y
p
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
P
r
g
T
y
p
T
y

RSSCR
RSDBSPBL

30.03.20
05

10:21:
45

5120

30.03.20
05

10:21:
58

72704

30.03.20
05

10:22:
01

19456

12.05.19
97

16:51:
30

4096

13.05.19
97

12:54:
26

5120

30.03.20
05

10:21:
45

35840

05.11.20
09

12:04:
29

133120

07.05.19
97

13:07:
49

2048

12.09.20
06

11:25:
01

79872

03.09.19
97

03:05:
16

4096

07.05.19
97

13:10:
38

2048

10.04.19
95

09:58:
38

2048

17

17.12.20
07

16:04:
40

27648

17

17.12.20
07

16:04:
39

107520

12.09.20
06

11:25:
01

2048

20

09.09.20
04

14:18:
36

12288

21

17.12.20
07

15:31:
45

87040

14.10.19
99

22:01:
03

3072

13.08.19
97

12:52:
57

2048

SAPDB__S
VARID
SSCRFIELDS
%_CSYDB0
RSDBSPVA
RSVAMEMKEY
RSDBSPMC
DDSHDESCR
SPPARAMS
RSPARINT
SAPLICON
%_CICON
ICONT
SAPLSABE
SAPLSECU
RSSUBINFO
RSEXFCODE

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

p
P
r
g
P
r
g
T
y
p
P
r
g
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
P
r
g
P
r
g
P
r
g
P
r
g
P
r
g
T
y
p
P
r

SAPLDSYA
SAPFSDS1

24

17.12.20
07

15:37:
01

45056

24

30.03.20
05

10:22:
01

52224

02.11.19
98

09:51:
35

5120

27

05.11.20
09

11:51:
16

45056

12.05.19
97

16:46:
17

3072

29

09.09.20
04

14:36:
10

8192

30

10.09.20
07

14:53:
12

10240

10.09.20
07

14:53:
12

2048

09.09.20
04

14:18:
32

14336

33

18.02.20
05

14:16:
06

30720

20.08.19
98

11:16:
53

3072

35

05.11.20
09

12:04:
23

28672

36

17.12.20
07

15:41:
05

84992

37

05.07.20
05

13:10:
18

69632

38

17.12.20
07

15:30:
54

44032

39

28.02.20
05

21:00:
46

49152

39

18.02.20
05

14:15:
08

15360

14.02.19
98

08:30:
43

2048

42

05.11.20
09

11:51:
16

74752

TDCLD
SAPLSDOD
DOKIL
SAPCNVE
SAPLLANG
T002
SAPFSPOR
SAPLSCNT
DYCBOX
SAPLSVSM
SAPLSGUI
SAPLSTTM
SAPLSBDC
CL_DATAPROVIDER===============CP
%_CCNTL
OBJ_RECORD
SAPLSTUP

43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

g
P
r
g
P
r
g
T
y
p
T
y
p
P
r
g
P
r
g
P
r
g
P
r
g
T
y
p
P
r
g
T
y
p
T
y
p
T
y
p
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
P
r

SAPLCNDP
SAPSHDTV

43

05.11.20
09

12:08:
08

197632

33

05.01.20
05

16:26:
16

33792

14.12.19
98

23:15:
34

2048

14.12.19
98

23:15:
34

2048

18.02.20
05

14:15:
08

24576

48

05.11.20
09

12:07:
20

96256

49

05.11.20
09

12:08:
12

260096

50

09.09.20
04

14:18:
36

8192

13.02.20
05

18:20:
24

6144

52

13.02.20
05

18:20:
25

16384

15.11.20
00

17:55:
11

3072

04.04.19
95

16:02:
20

2048

04.04.19
95

16:02:
19

2048

03.09.19
97

03:12:
33

3072

57

05.11.20
09

11:54:
01

29696

58

05.11.20
09

12:03:
44

394240

06.11.20
03

20:28:
08

8192

60

18.02.20
05

14:15:
28

37888

61

05.07.20
05

13:10:
15

75776

SHDSTU
SHDSTCIU
SAPFGUICNTL
SAPLOLEA
SAPLSFES
SAPLSPLUGIN
ARFCRDATA
SAPLGRFC
SWCBCONT
OLE_VERBS
OLE_PA
SSCRTEXTS
CL_GUI_PROPS_CONSUMER=========CP
SAPLTHFB
EUDB
CL_DYNAMIC_GUI_EXTENSIONS=====CP
CL_GUI_DATAMANAGER============CP

62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

g
P
r
g
P
r
g
T
y
p
T
y
p
P
r
g
P
r
g
T
y
p
P
r
g
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y

CL_ABAP_CHAR_UTILITIES========CP
RSDBSPVD

62

05.07.20
05

13:10:
15

13312

10.09.20
07

14:59:
01

88064

30.03.19
98

09:40:
50

4096

04.04.19
95

16:12:
54

2048

66

25.08.20
05

22:03:
16

15360

67

07.06.20
01

18:27:
03

13312

20.11.20
07

11:21:
00

13312

69

28.04.20
05

10:33:
51

59392

01.06.19
92

11:17:
16

2048

28.08.19
97

09:04:
19

2048

20.02.19
98

09:01:
22

2048

11.07.20
06

14:07:
50

37888

11.11.20
09

17:49:
55

31744

25.08.20
05

22:02:
19

7168

14.09.20
10

18:53:
53

3072

28.08.19
97

08:52:
19

2048

14.09.20
10

18:53:
53

3072

25.08.20
05

22:00:
24

24576

03.07.20
06

16:10:
48

39936

RVARI
RSVARIVDAT
SAPLF047
SAPLFACSCORE
T001
SAPLADAT
T009
T009T
T009B
MARA
MSEG
MKPF
ZGRD
MAKT
ZSAL
AFRU
CAUFV

81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99

p
T
y
p
T
y
p
T
y
p
T
y
p
P
r
g
T
y
p
P
r
g
P
r
g
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
T
y
p
P
r
g
T
y
p
P
r

ZENGY
QALS

24.09.20
10

16:23:
59

3072

25.08.20
05

22:02:
42

40960

24.01.20
02

20:24:
49

15360

24.01.20
02

20:24:
49

25600

85

15.06.20
05

11:38:
46

44032

01.02.20
00

09:28:
23

2048

87

13.11.20
00

16:26:
04

8192

88

09.09.20
04

14:18:
36

17408

05.04.20
11

16:49:
49

3072

22.11.20
10

16:52:
49

27648

07.06.20
10

15:09:
52

41984

25.08.20
05

22:01:
33

12288

24.09.20
10

16:23:
59

3072

25.07.20
11

12:08:
16

11264

16.09.20
10

21:23:
31

3072

03.07.20
06

16:10:
17

19456

97

06.11.20
03

21:14:
56

10240

18.05.20
04

14:07:
11

2048

99

05.07.20
05

13:10:
16

10240

QAMR
QAMV
SAPLQSS4
OPTIPOS
CL_ABAP_MATH==================CP
SAPLSCFL
ZMAT
EKKO
EKPO
EKET
ZPWR
Z_DOC_GOODS_MOV
ZRUNH
AUFK
CX_SY_ZERODIVIDE==============CP
SCX_SRCPOS
CX_SY_ARITHMETIC_ERROR========CP

g
P
r
g
P
r
g
P
r
g
T
y
p
T
y
p

100
101
102
103
104

CX_DYNAMIC_CHECK==============CP
CX_ROOT=======================CP

100

05.07.20
05

13:10:
16

10240

101

11.09.20
07

13:15:
56

11264

102

05.07.20
05

13:10:
16

10240

09.09.20
04

14:18:
12

31744

29.04.19
92

14:52:
25

3072

CX_NO_CHECK===================CP
SYST
RSJOBINFO

Directory of Application Tables


Name

Date

Val.

Progra
m

Time

Lngth

ZPRD_CON_SUM

SYST

09.09.20
14:18:12
04
\0\0\0\0\x000C\0\x000C\0\0\0\0\0\0\0\0\0\0\0\0\0\\0\0
RSJOBINFO
. .
: :
00000000000000
SSCRFIELDS
09.09.20
14:18:02
04

00004612

SSCRTEXTS
Progra
m

TDCLD
RE

00000742

00000252

00000130

00000098

SAPLICON

ICONT
Progra
m

00001708

RSDBRUNT

VARID
Progra
m

00000164

SAPFSDS1

DOKU

. .
8R XX XXLIMUDOKUX \x001EXR3TRPROGX

Progra
m

SAPLSDOD

DOKIL

00000152

00000010

SHDSTU

00000106

SHDSTCIU

00000100

00004068

Progra
m

SAPLLANG

T002

ES1
EN

Progra
m

SAPSHDTV

Progra
m

CL_GUI_PROPS_CONSUMER=========CP

EUDB
%C53053FBFA6317D15E10000000A0A5C0C
Progra
m

\0\0\0

SAPLFACSCORE

T001

100CCCLCherat Cement Company LtdKarachi


Progra
m

SAPLADAT

T009

100Z1
01204

ABAP Control Blocks (CONT)


Ind
ex
613
9
614
1
614
2
614

00000492
P

Na
me

F
l

PA
R0

PA
R1

PA
R2

MO
VL

0
0

00
02

01
D2

00
11

BR
AX

0
0

00
0B

WH
EN

0
0

00
02

BR
AN

0
2

00
02

PA
R3

PA
R4

PA
R5

PA
R6

Source Code
ZPRD_CON_SUM
ZPRD_CON_SUM

02
05

01
76

ZPRD_CON_SUM
ZPRD_CON_SUM

00000024

4
614
5
614
6
614
8
615
0
615
2
615
4
615
5
615
7
>>>
>>
616
2
616
6
617
0
617
2
617
3
617
4
617
5

BR
AX

0
0

00
07

ZPRD_CON_SUM

MO
VE

F
F

00
0A

01
D8

01
53

ZPRD_CON_SUM

MO
VL

0
0

00
02

01
D9

01
7F

ZPRD_CON_SUM

MO
VL

0
0

00
02

01
D2

00
11

ZPRD_CON_SUM

cp
8z

0
0

00
3A

01
EE

00
05

ZPRD_CON_SUM

BR
AT

0
5

00
03

cp
8z

0
0

00
3A

BR
AF

0
5

00
05

cc
qd
cc
qd

0
E
0
E

73
73
73
73

00
00
00
00

18
40
18
48

00
00
00
00

18
28
18
30

00
00
00
00

18
40
18
48

ZPRD_CON_SUM

cc
qd

0
E

73
73

00
00

18
50

00
00

18
38

00
00

18
50

ZPRD_CON_SUM

TM
OD

2
C

02
0F

00
63

00
64

PA
R1

8
9

00
D1

ZPRD_CON_SUM

PA
R1

8
1

00
D2

ZPRD_CON_SUM

PA
R1

8
1

00
D3

ZPRD_CON_SUM

PA
R1

8
1

00
D4

ZPRD_CON_SUM

ZPRD_CON_SUM
01
ED

00
05

ZPRD_CON_SUM
ZPRD_CON_SUM

ZPRD_CON_SUM

ZPRD_CON_SUM

You might also like