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

VARIABLE FORMAT

Former Member
0 Likes
797

Hi ,

the variable is in decimal

5 REPLIES 5
Read only

bpawanchand
Active Contributor
0 Likes
752

So what is the issue use it????

Read only

Former Member
0 Likes
752

Hi,

Unable to interprete your question....

Thanks,

Krishna...

Read only

Former Member
0 Likes
752

Hi ,

zval is in decimal with lenth 20.

data:lv_val like ztab-zval.

varible formart is in decimal i.e lv_val = 65000.000000

how to change this into 65,000.0

thanks,

srii.

Read only

0 Likes
752

Hi Sridhar,

You declare a character variable with decimal part as 1 like

DATA : w_var TYPE p LENGTH 3 DECIMALS 1.

Now you can move your variable to w_var .

Hope this will work for you.

Regards,

Anand.

Read only

Former Member
0 Likes
752

done