‎2010 Jun 30 8:45 AM
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.
‎2010 Jun 30 8:56 AM
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
‎2010 Jun 30 8:56 AM
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