cancel
Showing results for 
Search instead for 
Did you mean: 

sap script - please use meaningfull subject titles....

Former Member
0 Kudos

Hi,

My requirement is to print theree texts in theree different lines.So I declared the texts in SAP script with the command "/".

Buut in spool I am getting all the three texts in one single line.Can anyone suggest how to get the texts in three different line?

Thanks in advance.

Edited by: Julius Bussche on Jan 22, 2009 2:30 PM

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Half answered can be closed.

Former Member
0 Kudos

Hi ginger,

These are few lines in help.sap.com.For more information check the below link.

/( raw line with line feed

This line is treated just as ( (raw line), but when formatting for output, the subsequent text appears on a new line.

[Structure TLINE|http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db72b494511d182b70000e829fbfe/content.htm]

Regards,

Sravanthi

Former Member
0 Kudos

Hi,

Declare a Paragraph Format say P1 and do

P1 Text1

P1 Text2

P1 Text3

It will come in 3 diff lines

Regards,

Neha

former_member217316
Contributor
0 Kudos

Ginger

One solution to this can be creating 3 separate windows and displaying text in each one of them separately. Make sure the allignment of these windows is exactly in the way you require the text to get displayed.

The other way can be by declaring a new character format and going about it. Like for paragraph format XX, you can use it like,

XX ALL THE BEST.

XX GOOD JOB.

XX WELL DONE.

Hope this is useful.

Regards

Harsh

Edited by: Harsh Talesra on Jan 22, 2009 2:13 PM

Edited by: Harsh Talesra on Jan 22, 2009 2:27 PM

Former Member
0 Kudos

you can pass three texts in 3 different lines...

/:text1

/:text2

/:text3