cancel
Showing results for 
Search instead for 
Did you mean: 

Formatting in SAP Scriptsa

Former Member
0 Kudos

Hi ,

I'm woriking with Script in which one column contains values like 0.00 ,

if all are zeros like this , i don't wany to display any thing ,

can you please suggest me how to do this ,

Thanks in advance ,

Murali

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

HI,

Use the I option to suppress the output of symbols that still contain their initial values.

Syntax

&symbol(I)& example :&KNA1-UMSAT& -> 0,00 &KNA1-UMSAT(I)& -> __

and use a IF condition to not to print the variable ..

surya

Former Member
0 Kudos

Hi,

Then use all the fields like &table-field(I)& so that if the field is not initial then only display.

Regards,

Ram

Former Member
0 Kudos

Hi Ram,

Thanks for reply ,

previously i did same thing as you have given here ,

but i'm passing these values to some other variable ,like

edcess = table-EXAED_CR

while display i'm giving edcess (I) , in this case it's not working ,

is this applicable for only table-field(I) ?