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

Standard text sapscript issue - new line

Former Member
0 Likes
1,837

Hi experts,

I am trying to print the address in sap script using standard text. But the output is coming in continuation and line feed command is not working fine.

Sample

Standard Text

/ Charter Apt,

/ 100 Kelvin ave,

/ California,

/ USA.

Actual o/p

Charter Apt, 100

Kelvin ave, California,

USA.

Expected:

Charter Apt,

100 Kelvin ave,

California,

USA

Please help.

Hi experts,

I am trying to print the address in sap script using standard text. But the output is coming in continuation and line feed command is not working fine.

Sample

Standard Text

/ Charter Apt,

/ 100 Kelvin ave,

/ California,

/ USA.

Actual o/p

Charter Apt, 100

Kelvin ave, California,

USA.

Expected:

Charter Apt,

100 Kelvin ave,

California,

USA

Please help.

3 REPLIES 3
Read only

Former Member
0 Likes
752

Hi Harshada,

You can use your own paragraph format and give that instead of Line Feed. In the paragraph format, you can specify Left,Right Margin etc

For Ex: if P1 is your paragraph format then

P1 Charter Apt,

P1 100 Kelvin ave,

P1 California,

P1 USA.

Hope this helps

Read only

Former Member
0 Likes
752

Hi Harshada,

Can you please check your So10 Text in Print Preview mode.

Also Please check the paragraph format being used in include text , if used try using the left aligned or center alogned.

Hope this helps.

Regards,

Amit

Read only

Former Member
0 Likes
752

Thanks for your replies

I have tried all the options which you both have mentioned. But it did not work.

But now it is working fine. I did it by tab (,,)

Thanks again.