cancel
Showing results for 
Search instead for 
Did you mean: 

how to print more than 70 characters per line in SAP Script Layout

Former Member
0 Kudos

Hi,

Can any please let me know how to print more than 70 characters per line in SAP Script Layout.(i,e how to extend more than its maximum limit)

Thanks in advance,

rajesh.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

The extended line tag '=' is used when line with wariables is being split across several lines in script source, but must print on single line.

For plain text, just type it in on consecutive lines with no paragraph format on any line except the first and the text will be automatically wrapped on lines within the window. Number of characters on each line will then depend on font attributes - size, proporional font, bold, etc for more per line - make the font on the paragraph format smaller.

Andrew

varma_narayana
Active Contributor
0 Kudos

Hii Rajesh..

You can use the Extended line Tag (=) in this case.

Eg:

  • This is my text --------------------------------------------------------------------------------

= Continued in Same line

<b>Reward if Helpful</b>

former_member196280
Active Contributor
0 Kudos

Right click on the line where you want to add text and click page left or right from the list.

Or define variables and pass your text to the variable and display the variable.

a = 'This line contain'.

b = 'more than 70 character'.

display variable A & B.

Regards,

SaiRam

Former Member
0 Kudos

Hi Rajesh,

You can extend to text to next line using <b>=</b> in the script editor.

<b>*</b> 'type a text up to few characters'

<b>= </b> 'scrolling into next line'

Thanks,

Vinay