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

write clarification

Former Member
0 Likes
918

Hi,

Could you pleas help me in this.

What is this write statments are doing.Please help me.

******************************

WRITE :/(1) sy-vline,

(10) ''(100),

(1) sy-vline,

(10) ''(200),

(1) sy-vline,

(10) ''(101),

(1) sy-vline,

(25) ''(102),

(1) sy-vline,

(12) ''(202),

(1) sy-vline,

(10) ''(103),

(1) sy-vline,

(13) ''(104),

(1) sy-vline,

(13) ''(105),

(1) sy-vline,

(13) ''(106),

(1) sy-vline.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
892

hi

sy-vline means it writes the vertical line

paveen

7 REPLIES 7
Read only

Former Member
0 Likes
892

Hi Ali,

These write statements are used to display a vertical line on each line number given.

SY-VLINE is used to display a vertical line on the output screen.

Thanks,

Message was edited by:

Pritha Agrawal

Read only

0 Likes
892

In this ' '100 means,

Please tell me

Thanks

Read only

0 Likes
892

Hi,

In any line of ur code ,if u write " it means that the further words are commented.

Means they are just for the information of the user.

For ex. Write: / 'emp code'. "Employee Code

Here employee code is commented and is just for information.

Read only

0 Likes
892

Please check this.

WRITE :/(1) sy-vline,

(10) ''(100),

In this what is second line does please let me know.

Thanks

Read only

0 Likes
892

Hi Ali,

The second line (10) "100 shows the cursor position.

i.e. the cursor will be placed after leaving 10 coloumns from the position (1).

"100 means 100 is for some information. it has no use in the code

Read only

Former Member
0 Likes
893

hi

sy-vline means it writes the vertical line

paveen

Read only

Former Member
0 Likes
892

Hi,

Hi,

It is displaying vertical lines at specified columns.

You can check output by writing sample report

Sandeep