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

report printing

Former Member
0 Likes
890

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
866

>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.

8 REPLIES 8
Read only

Former Member
0 Likes
867

>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.

Read only

0 Likes
866

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.

Read only

0 Likes
866

yes you can..

Read only

0 Likes
866

how

Read only

0 Likes
866

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.

Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
866

For two for exapmle use the key '|' ( one attached to the backslash)

Read only

Former Member
0 Likes
866

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

Read only

Former Member
0 Likes
866

write: / itab-field1,

/ itab-field2,

.

.

.

Regards,

Lalit Mohan Gupta.