Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

unicode error

Former Member
0 Likes
383

Hi,

while doing unicode conversion I am facing dump error i following code.How it can be removed.

TABLES:ANLCV ,TABWN.

DATA: POSITIONEN(1360) TYPE C.

DATA: BEGIN OF APOS OCCURS 80,

GITZL LIKE TABWN-GITZL,

GITSP LIKE TABWN-GITSP,

BETRAG LIKE ANLCV-KANSW,

END OF APOS.

POSITIONEN = '0101#############'.

MOVE POSITIONEN+0(2) TO APOS-GITZL.

MOVE POSITIONEN+2(2) TO APOS-GITSP.

MOVE POSITIONEN+4(13) TO APOS-BETRAG. " dump error statement

APPEND APOS.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
346

It will obvously dump when you try to move a junk or hexadecimal value to a field of currency type. Identify what the # means and try to convert that into a numeric value and check

Vikranth

1 REPLY 1
Read only

Former Member
0 Likes
347

It will obvously dump when you try to move a junk or hexadecimal value to a field of currency type. Identify what the # means and try to convert that into a numeric value and check

Vikranth