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

Regarding Vertical Line

Former Member
0 Likes
893

Hi,

I am Udaya kumar,

Any other way to use vertical line except sy-vline?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
862

Hi Uday,

For simple report, u can take a variable having value |(pipe).

u can print this pipe as vertivcal line.

data : v_pipe char c value '|'.

Write:/10 v_pipe , 21 itab-matnr , 40 v_pipe,41 itab_mtart,46v_pipe.

0000000000000001

FERT

If u r using SAP SCRIPT ,use this command.

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

Reward points if helpful.

Regards,

Hemant

Hi,

I am Udaya kumar,

Any other way to use vertical line except sy-vline?

6 REPLIES 6
Read only

Former Member
0 Likes
862

Hi

You can use the PIPE symbol '|' which is there in the key board in the loop such that it drwas a vertical line

Reward points if useful

Regards

Anji

Read only

kiran_k8
Active Contributor
0 Likes
862

Udaya,

what is the prob in using sy-vline?

K.Kiran.

Read only

Former Member
0 Likes
862

Hi Udaya,

What's problem with sy-vline,

Using sy-vline is best instead of

going for other.

If you getting some error, just

paste your coding and send, so

that we can try to solve it.

Thanks.

Read only

Former Member
0 Likes
862

Hi Udaya,

Why dont u use BOX and POSITION command instead of ULINE and VLINE?

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

For a frame of size WIDTH and HEIGHT at position [XPOS, YPOS] (left upper corner of the frame in relation to the values contained in the POSITION command). The FRAME addition determines what line thickness the frame has.

The INTENSITY addition shades the background area contained within the frame. Position, size, and frame thickness use appropriate units of measurement;

shading should be entered in percent.

•/: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]: To fix the source coordinates XORIGIN and YORIGIN for the XPOS and YPOS parameters in the BOX command. The WINDOW addition sets the values for the top and left margins to those of the current window. The PAGE addition sets the values for the top and left margins to those of the page currently being displayed.

Regards,

Jayant.

<b>Please award if helpful</b>

Read only

Former Member
0 Likes
862

u can use vline( ) function.

ex: vline (10)

Read only

Former Member
0 Likes
863

Hi Uday,

For simple report, u can take a variable having value |(pipe).

u can print this pipe as vertivcal line.

data : v_pipe char c value '|'.

Write:/10 v_pipe , 21 itab-matnr , 40 v_pipe,41 itab_mtart,46v_pipe.

0000000000000001

FERT

If u r using SAP SCRIPT ,use this command.

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

Reward points if helpful.

Regards,

Hemant