cancel
Showing results for 
Search instead for 
Did you mean: 

INCLUDE TEXT (header notes)

Former Member
0 Kudos

I'm trying to write a header note in a sapscript form (using SE71).

I am not allowed to write code outside the form, so I can't use FM <b>READ_TEXT</b> and pass the obtained text to a variable.

I've been trying:

INCLUDE &VAR& OBJECT VBBK ID 0002

where

&VAR&

contains the delivery number. But nothing appears.

What am I doing wrong?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

You wants to add the Header text which is there in the delivery doc header, then

Double click on that text and goes to text ediotr

Goto _>header

see the parameters like OBJECTNAME,OBJECT,ID and Language

you have to use all this 4 parameters in the text in the include statement see the sample

/: INCLUDE &VBDKL-TDNAME& OBJECT VBBK ID 0001 NEW-PARAGRAPH HT

Here

&VBDKL-TDNAME& is the OBJECTNAME (nothing but delivery doc number)

VBBK = Object

0001 = ID

HT = paragraph

So write as above and see

<b>Reward points for useful Answers</b>

Regards

Anji

Former Member
0 Kudos

Thanks, Anji. I'm trying, but I haven't succeeded so far...

Where do you get the new-paragraph info from?

Former Member
0 Kudos

Hi

Create your Own Paragraph in the script and use it.

It is just for displaying that text in your own font, which you will give in that Paragraph format.

This paragraph format is not related to that text

it is with reference to the script.

<b>Reward points for useful Answers</b>

Regards

Anji

devrajsinghr
Active Participant
0 Kudos

/: INCLUDE &VBDKL-TDNAME& OBJECT VBBK ID 0001 NEW-PARAGRAPH HT

hi u told that vbbk is a object ..but which kind a object it is

i mean

in this

INCLUDE &VBDKL-TDNAME& OBJECT TEXT ID ST NEW-PARAGRAPH HT

object is TEXT and we can find it in se10

but where we can find vbbk

Answers (0)