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

print some text before include in sapscript

Former Member
0 Likes
439

Helllo Friends,

There is one standard include in sap script for example

INCLUDE &VBDKA-TDNAME& OBJECT VBBK ID 0001 PARAGRAPH HT

i want to print text before this like

'packsize ' INCLUDE &VBDKA-TDNAME& OBJECT VBBK ID 0001 PARAGRAPH HT

pls tell how is it possible

Regards,

Sunny

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
390

try like this by specifying character format..

<c1>'packsize '<c1> <c2>INCLUDE &VBDKA-TDNAME& OBJECT VBBK ID 0001 PARAGRAPH HT<c2>

2 REPLIES 2
Read only

Former Member
0 Likes
391

try like this by specifying character format..

<c1>'packsize '<c1> <c2>INCLUDE &VBDKA-TDNAME& OBJECT VBBK ID 0001 PARAGRAPH HT<c2>

Read only

Former Member
0 Likes
390

ns