Application Development 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: 

making horizontal line

Former Member
0 Kudos

Hello!

How can I make horizontal line (drawn through ) in Sap Script ?

Regards

Ilhan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Use

line with variable position

ULINE(N)

where N is number of characters.

line with fixed postion

/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]

here height should be zero

Vijai

rewrd pnts if useful

8 REPLIES 8

Former Member
0 Kudos

&uline(n)&.

where n indicates the length of the line.

also write this infront of any paragraph format.

Reward points if helpful

Message was edited by:

Mayank Agarwal

Former Member
0 Kudos

hi,

ULINE(n).

where n is the length.

Former Member
0 Kudos

Use

line with variable position

ULINE(N)

where N is number of characters.

line with fixed postion

/: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]

here height should be zero

Vijai

rewrd pnts if useful

Former Member
0 Kudos

Dear Mayank!

Which Format element is the correct one ?

/: uline(n). ????

or

= uline(n). ???

or

space uline(n). ???

Regards

Ilhan

0 Kudos

I belive it is the "/:" one.

It means "command".

0 Kudos

hi,

its

/:ULINE(n).

Former Member
0 Kudos

Hi,

/: position xorigin '0.01' CH yorigin '4.5' LN

/: box height '0' LN frame 10 TW

In this change x-position & y-position according to your requirement.

Hope this helps.

Reward if helpful.

Regards,

Sipra

Former Member
0 Kudos

Hi llhan,

Use this syntax.

ULINE AT 10(115).

10 is starting position,

115 is total length

IF USEFULL REWARD