‎2009 Apr 22 11:42 AM
hi all,
can i print horozontal values in abap report if yes how.
i use by not using '/' but i havsome requirement like this
name class roll_no
a II 10
b III 11
c IV 15
thanks.
‎2009 Apr 22 11:46 AM
>can i print horozontal values in abap report
what is your required format..??
'/' is used for New line or next line. Give more information on format etc.
‎2009 Apr 22 11:46 AM
>can i print horozontal values in abap report
what is your required format..??
'/' is used for New line or next line. Give more information on format etc.
‎2009 Apr 22 11:55 AM
i fill table ftab with few some 10 fields from which i want to print say ftab-name in one row ftab-class in second row and ftab-roll_no in 3rd row.
‎2009 Apr 22 11:56 AM
‎2009 Apr 22 12:09 PM
‎2009 Apr 22 12:22 PM
If you want to print one row into multiple rows based on column, try this:
loop at wa.
write : wa-logdate ,
/ wa-logtime,
/ wa-logid.
endloop.
‎2009 Apr 22 11:46 AM
For two for exapmle use the key '|' ( one attached to the backslash)
‎2009 Apr 22 11:51 AM
Hi
Please refer to the given below link, May be helpful for u...
http://help.sap.com/saphelp_scm50/helpdata/EN/9f/dba23035c111d1829f0000e829fbfe/content.htm
‎2009 Apr 22 4:41 PM
write: / itab-field1,
/ itab-field2,
.
.
.
Regards,
Lalit Mohan Gupta.