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: 

error in extended program check

Former Member
0 Kudos

while doing extended program check, got an error like:

use addition CURRENCY when outputting wa_itab_final-netpr,

how to resolve this error .

regards

chandrakanth

1 ACCEPTED SOLUTION

Former Member
0 Kudos

By putting the currenct addtion to the write statement, this error is removed from extended program check.

4 REPLIES 4

Former Member
0 Kudos

Hi,

While writing currency use the following addition:

DATA int TYPE i VALUE 12345678.

WRITE int CURRENCY 'EUR'.

Thanks & Regards,

Navneeth K.

Former Member
0 Kudos

By putting the currenct addtion to the write statement, this error is removed from extended program check.

Former Member
0 Kudos

WRITE wa_itab_final-netpr CURRENCY 'USD'. ->replace u r currency type inplace of USD

Former Member
0 Kudos

Hi chandrakanth,

while doing extended program checkwhere youi got an error u201Cuse addition CURRENCY when outputting wa_itab_final-netpru201D

use the function module 'CONVERT_TO_LOCAL_CURRENCY'. To convert the currency in to the required format

For further reference please go through

link:[]

link:[]

Thanks & Regards

Lakshmi Narayana