cancel
Showing results for 
Search instead for 
Did you mean: 

SAPscript: Header Window : Title Prinitng Issue

Former Member
0 Kudos

Hi all

I am modifying SAPscripting(Z-version).

On the Header Window, we are printing our Company Name with address.

Snapshot of the code in this window which I feel not working(was working before) was :

Z5 <b>Invoice</>

Z5

Z7 <b>myCompany<zs>#</> (China) Co., Ltd</>

/: INCLUDE ZHEX-MACRO-WWW-XNA_CO_LTD OBJECT TEXT ID ST

The stmt on Z7 has to print the Company Name with R on the top right of the comp name. The first Z5 is getting executed and INCLUDE also executes but the stmt of Z7 doesnot.

I need your help in fixing this issue !

Cheers

RJ

null

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Z7 is your paragraph format, zs is your character format.

Z7 will set your text's position in the window, zs is presumably set to display the font as superscript. It would be worth checking in the SAPscript that both of these are defined as you need.

Regards,

Nick

Former Member
0 Kudos

Yes ! Both are defiend and Scripting was printing the content as ordered !

Former Member
0 Kudos

So when you say "but the stmt of Z7 doesnot" does it leave a blank line or go directly to the text element? If you take out the superscript part does it work? Are you printing to a different printer?

Former Member
0 Kudos

Control go directly to the next line of Z7. (Next Line is INCLUDE ....)

Thanks