2008 Apr 03 5:07 AM
please suggest the solution to correct Output CURR/QUAN ERROR in EPC
2008 Apr 03 6:44 AM
Hi ,,
the error mentioned is shown like this in EPC
Example :
"Use addition UNIT when outputting TA_RLDRI-VSOLM" and in statement
WRITE TA_RLDRI-VSOLM.
u need to define the quantity/currency field associated with field VSOLM from the corresponding table it is fetched.
Here in this case
DATA: TA_RLDRI LIKE RLDRI OCCURS 0 WITH HEADER LINE.
if u check in RLDRI ,field MEINS is quantity/currency field associated with field VSOLM.
define & use it in write statement with addition 'UNIT' as below.
data : MEINS LIKE RLDRI-MEINS.
WRITE : TA_RLDRI-VSOLM UNIT MEINS .
Reward if useful
2008 Apr 03 6:44 AM
Hi ,,
the error mentioned is shown like this in EPC
Example :
"Use addition UNIT when outputting TA_RLDRI-VSOLM" and in statement
WRITE TA_RLDRI-VSOLM.
u need to define the quantity/currency field associated with field VSOLM from the corresponding table it is fetched.
Here in this case
DATA: TA_RLDRI LIKE RLDRI OCCURS 0 WITH HEADER LINE.
if u check in RLDRI ,field MEINS is quantity/currency field associated with field VSOLM.
define & use it in write statement with addition 'UNIT' as below.
data : MEINS LIKE RLDRI-MEINS.
WRITE : TA_RLDRI-VSOLM UNIT MEINS .
Reward if useful