cancel
Showing results for 
Search instead for 
Did you mean: 

in script

Former Member
0 Kudos

wat is the difference between the

1) = extended line

2) / line feed......

Accepted Solutions (0)

Answers (4)

Answers (4)

prasanth_kasturi
Active Contributor
0 Kudos

= EXTENDED LINE : It appends the line directly to its preceeding one

/ LINE FEED : It prints the line in a new line. it retains formatting attributes of previous one

Former Member
0 Kudos

Hi,

'extend line' will give you the output as continuous text.

'/' is used for line feed. i.e., you will get an empty line.

Former Member
0 Kudos

hi,

= Extended line

This line is not subject to the line formatting in the SAPscript editor. The text contained in this line is appended directly to the character of the preceding text line which was output last. If this is not required, there must be at least one blank at the beginning of the extended line.

/ line feed......

But the subsequent text is placed in a new line during output formatting.

Regards,

Rajyalakshmi.A

Former Member
0 Kudos

hi!!

with extended line you will get the whole output in the same line..and the paragraph format is also the same as in the prior line.

Where as in the second case,it displays in the scond line.

The extended line is used when the code is more,but the output should print in single line.

Regards,

Srihari.