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

How to Maintain Gap between two variable in script

ram_sahoo
Participant
0 Likes
722

Hi Experts,

I have requirement in sap script to maintain gap between variables like

PR &ITAB-MATNR&&ITAB-MAKTX&


i am using PR &ITAB-MATNR&&SPACE(10)&&ITAB-MAKTX& like this type of its some time working and some time not working,So any one can suggest me how to maintain gap between variables.


Thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
667

Have you tried ,, which produces a tab?

Alternatively, I seem to remember using something like

PR &ITAB-MATNR(&SPACE(10)&)&&ITAB-MAKTX&


Neal

3 REPLIES 3
Read only

Former Member
0 Likes
668

Have you tried ,, which produces a tab?

Alternatively, I seem to remember using something like

PR &ITAB-MATNR(&SPACE(10)&)&&ITAB-MAKTX&


Neal

Read only

Former Member
0 Likes
667

Try using &ITAB-MATNR(18)&&ITAB-MAKTX(40)&

Thanks

Manik

Read only

Former Member
0 Likes
667

Two commas ,, should suffice.