‎2007 Apr 23 7:34 AM
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.
‎2007 Apr 23 7:38 AM
‎2007 Apr 23 7:37 AM
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
‎2007 Apr 23 7:47 AM
‎2007 Apr 23 7:50 AM
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.
‎2007 Apr 23 7:52 AM
Please check this.
WRITE :/(1) sy-vline,
(10) ''(100),
In this what is second line does please let me know.
Thanks
‎2007 Apr 23 7:59 AM
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
‎2007 Apr 23 7:38 AM
‎2007 Apr 23 7:47 AM
Hi,
Hi,
It is displaying vertical lines at specified columns.
You can check output by writing sample report
Sandeep