Application Development and Automation 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: 
Read only

Output Quantity fields

Former Member
0 Likes
469

Hi!

Output Quantity fields with thousand position indicator .

How is it possible ?

THX

sas Erdem

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
452

Hi,

Try use

WRITE l_quantity TO l_char_quantity UNIT l_unit.

4 REPLIES 4
Read only

Former Member
0 Likes
453

Hi,

Try use

WRITE l_quantity TO l_char_quantity UNIT l_unit.

Read only

Former Member
0 Likes
452
DATA : v_dec TYPE p DECIMALS 2 VALUE '1000'.

WRITE v_dec  CURRENCY 'USD'.
Read only

Former Member
0 Likes
452

Hello,

what happens if I have the followings situation ?

gv_s_brgew is standing for Gross weight

data gv_s_brgew(10) type c

&gv_s_brgew& (sap script)

Regards

sas

Read only

Former Member
0 Likes
452

you can do it as follows:

gv_s_brgew type p decimals 3.

Regards

Ilhan