‎2006 Nov 08 9:55 AM
Hi,
how can we make columns. in simple classical report output .
Hemant
‎2006 Nov 08 9:56 AM
Using WRITE statement.
Please be more specific on your requirement...
Kind Regards
Eswar
‎2006 Nov 08 9:57 AM
‎2006 Nov 08 9:58 AM
You can use positioning addition to write statement:
http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db9e3035c111d1829f0000e829fbfe/content.htm
‎2006 Nov 08 10:16 AM
hi
good
no it is not possible,you have to use ALV concept for this.
thanks
mrutyun^
‎2006 Nov 08 10:17 AM
Hi,
use sy-vline to draw vertical lines in between to have a look of columns.
write:/ var1,sy-vline,var2.
to display at soecific positions specify the offset like this
write:/ '50',10 sy-vline,30 '100'.
at 10th column vertical line is displayed,next field is displayed at 30th position.
Message was edited by: sowjanya s
‎2006 Nov 08 10:28 AM
hi,
using write statement we can do......
using this statement we can insert colour under columns
formate colour intensified
using this sy-vline(system variable) we can drow line....
‎2006 Nov 08 10:37 AM
Hi,
See the example code as follows:
WRITE: / sy-vline, text-001 ,10 sy-vline,12 text-002,30 sy-vline,
32 text-003, 50 sy-vline,
52 text-004, 68 sy-vline,
70 text-005, 85 sy-vline.
LOOP AT itab.
ULINE AT (85).
format color off.
WRITE: / sy-vline,itab-werks UNDER text-001, 10 sy-vline,
itab-lgort UNDER text-002,30 sy-vline,
itab-mtart UNDER text-003,50 sy-vline,
itab-value under text-004,68 sy-vline,
itab-labst UNDER text-005,85 sy-vline.
Hope it helps.
reward if helpful.
Regards,
Sipra