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: 

PO quantities & prices

Former Member
0 Kudos

Hi all.

A serious problem...

We try to print PO layout with few quantities and prices base on decimal format which was defined to user master data (or vendor's land).

There is a problem with the format of these fields from different sites (Germany & Switz are decimals ',' and US is '.', for example).

Is there any function in SAP std to convert from format to another ? Any note ? Is this a BUG of SAP std?

Thanks all,

Rebeka

1 REPLY 1

Former Member
0 Kudos

Hi...

Before printing, declare a temporary variable of data type character.

Ex: v_temp is the temporary field of type character and v_rate is actual field.

Then move v_rate into v_temp using below syntax.

Write v_rate to v_temp currency <curr key>

This <curr key> we need to populate from document.

Now display this temporary field.

Hope this may helps u.

Regards,

KP.