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

help in sap script

Former Member
0 Likes
300

Hi i'm very new to this SAP Script i'm very much confused by seeing this script so can anyone help me the problem is

If there is a voucher and in that i have to change the spacing and lines of a particular data so how can i do that as i have seen in the script as ,,.. like this symbols and when i tried to remove the spacing and activate the program the spaces has gone so like this is there any code for ' & * like this symbols if so please give medetails of each and every thing how to do please suggest me what ever it may be the suggestion

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
280

Hi, the & sign should be wrap the variable

&some_field&

The best way to set up spacing in the line of data is to use tabs. Tabs are setup on the paragraph format level, check the paragraph format that is being used and set tabs according. Then in the line of code use ,, to specify the tabs.

&some_field1&,,&some_field2&,,&some_field3&,,&some_field4&

Regards,

Rich Heilman

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
281

Hi, the & sign should be wrap the variable

&some_field&

The best way to set up spacing in the line of data is to use tabs. Tabs are setup on the paragraph format level, check the paragraph format that is being used and set tabs according. Then in the line of code use ,, to specify the tabs.

&some_field1&,,&some_field2&,,&some_field3&,,&some_field4&

Regards,

Rich Heilman