cancel
Showing results for 
Search instead for 
Did you mean: 

Need a character which can nullify a tab while printing a variable

Former Member
0 Kudos

My variable has data as vinod,,reddy,,g

When, I am passing to script it should print as it is, but it is printing as vinod reddy g

This is causing error to read the text as lot of space is coming inbetween...

I know ,, will act as tab in Script. But need some character which can be placed inbetween the data of ,, so that it gets nullified in sap script while printing and data prints as vinod,,reddy,,g

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

declare variable like data: lv_space type char10 value ' '

pass vinod &lv_space& reddy &lv_space& g.