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

making horizontal line

Former Member
0 Likes
1,190

Hello!

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

Regards

Ilhan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,159

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

Hello!

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

Regards

Ilhan

8 REPLIES 8
Read only

Former Member
0 Likes
1,159

&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

Read only

Former Member
0 Likes
1,159

hi,

ULINE(n).

where n is the length.

Read only

Former Member
0 Likes
1,160

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

Read only

Former Member
0 Likes
1,159

Dear Mayank!

Which Format element is the correct one ?

/: uline(n). ????

or

= uline(n). ???

or

space uline(n). ???

Regards

Ilhan

Read only

0 Likes
1,159

I belive it is the "/:" one.

It means "command".

Read only

jaideeps
Product and Topic Expert
Product and Topic Expert
0 Likes
1,159

hi,

its

/:ULINE(n).

Read only

Former Member
0 Likes
1,159

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

Read only

Former Member
0 Likes
1,159

Hi llhan,

Use this syntax.

ULINE AT 10(115).

10 is starting position,

115 is total length

IF USEFULL REWARD