cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Script Cheque Printing

Former Member
0 Kudos

Hi All,

i placed the variables variable1 and variable2 in the same window. Now i am going to print the values in the same line, variable1 should be extreme left and variable2 should be extreme right.

And if length of variable1 exceeds it should be printed in the next line but should not move the variable2 in the next line.

please suggest me how to do this.

will give the max reward points.

Thanks & Regards,

Nagarjuna.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

When its comes to allignment in an SAP script, its all about permutations and combinations.

When you try to print the values try this

&VARIABLE1(10R)&

&VARIABLE2(20L)&

This is just an example to show how it works.Try using diff values. IT would work.

Thanks

Former Member
0 Kudos

Hi..

Try to use two character formats eg. ER is extreme right and EL is Extrem Left..

let say D is default page format..

then you need to do like this

D <EL>&varible1&</EL><ER>&varible2&</ER>

Thats it will adjust automatically...

Regards,

Sg