Application Development 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: 

Output CURR/QUAN ERROR

Former Member
0 Kudos
97

please suggest the solution to correct Output CURR/QUAN ERROR in EPC

1 ACCEPTED SOLUTION

Former Member
0 Kudos
55

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

1 REPLY 1

Former Member
0 Kudos
56

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