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

2 consequent include statements in sapscript

former_member537489
Participant
0 Likes
399

Dear experts,

I have 2 include statements in a sapscript, but I need them to be displayed in the same line.

Currently I do:

/:INCLUDE &I_VGBEL& OBJECT VBBK ID 9007 LANGUAGE EL

/:INCLUDE &NAME& OBJECT KNVV ID Z003 LANGUAGE EN

but the get writen in 2 lines.

Is there a way to write them in one line?

Thank you,

Roxani

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
352

actually no, theres no way to achieve this in SAP script. at least not in one window.

what you can do is:

- read both texts using FM READ_TEXT

- concatenate each lines to a new line line (making a new text).

- saving your new text using FM SAVE_TEXT

- including your new text.

Edited by: Florian Kemmer on Apr 7, 2009 11:19 AM

1 REPLY 1
Read only

Former Member
0 Likes
353

actually no, theres no way to achieve this in SAP script. at least not in one window.

what you can do is:

- read both texts using FM READ_TEXT

- concatenate each lines to a new line line (making a new text).

- saving your new text using FM SAVE_TEXT

- including your new text.

Edited by: Florian Kemmer on Apr 7, 2009 11:19 AM