cancel
Showing results for 
Search instead for 
Did you mean: 

Formatting options

Former Member
0 Kudos

Hi,

How do I specify more than 1 formatting options for a program symbol

as in the decimal and the length and right justification.

&lv_rate(.2)(8R)& doesn't work. It works if I specify only one formatting option either (.2) or (8R).

Thanks,

Arthi

View Entire Topic
Former Member
0 Kudos

Hi Arthi,

Try

&lv_rate(R8.2)&, it will work definately....

Cheers,

Mandeep

Former Member
0 Kudos

Sorry Folks,

None of these formatting options seem to be valid.

I've done the formatting using a subroutine.

Thanks!

Former Member
0 Kudos

Hi Arthi,

I tried &lv_rate(R8.2)& in ECC 5 and its working fine.

Thanks,

Mandeep

Former Member
0 Kudos

Hi

&lv_rate(8.2R)&. Try this one. It will definitely works

Where 8 specifies the length of the variable

2 specifies the number of decimal places

R specifies the Right-Alignment.

Thanks

Sriiiiiiii(Srikanth)

Former Member
0 Kudos

Thank you. Both (R8.2) and (8.2R) seem to be working!