cancel
Showing results for 
Search instead for 
Did you mean: 

PO Print out problem

Former Member
0 Kudos

Hi All,

I am facing a problem which has history of nearly one year... when i make an <b>import</b>

PO the values for the P&FO condition are shwon wrong. Ex if we put p&fo as 10000.00 JPY

(Japanese Yen) the print preview is seen as only 100.00 JPY.

This problem is only with a particular plant and particularly JPY... If I make the PO in

USD or EUR the PO shows correct values.

One more unique thing is that even when we have corrected the problem in all quality servers and having correct values... when we transported it to the production it is showing wrong again.

Thanks in advance.,

Deepak

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI Deepak

Please make use of <b>CURRENCY</b> to override the problem.

Check this example for some understanding:

data: amt type wrbtr value '1234.56',
      cur type waers.

cur = 'USD'.
write:/ amt currency cur.

cur = 'JPY'.
write:/ amt currency cur.

Kind Regards

Eswar

Former Member
0 Kudos

check the table TCURX for enter JPY, in this table you can see how many decimals are allowed for a currency.

There is zero decimals for JPY, so 10,0000 are stored as 1000.00.