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

Regarding ALV Header

Former Member
0 Likes
438

Can Any send me how to add second line in ALV Header ...

Like ....

i have heading like ABCDEFGH

but i need to have ABCDEFGH

IJKLMNOPQ

Thanx & Regards,

Phaninder

Can Any send me how to add second line in ALV Header ...

Like ....

i have heading like ABCDEFGH

but i need to have ABCDEFGH

IJKLMNOPQ

Thanx & Regards,

Phaninder

2 REPLIES 2
Read only

Former Member
0 Likes
425

hi,

try liek this

FORM build_header USING temp_list TYPE slis_t_listheader.

CLEAR st_line.

st_line-typ = 'H'.

st_line-info = 'Material Info'.

APPEND st_line TO temp_list.

CLEAR st_line.

st_line-typ = 'H'. or st_line-typ = 'S'. or st_line-typ = 'A'.

st_line-info = 'Material Info1'.

APPEND st_line TO temp_list.

ENDFORM. "build_header

reward if usefull

Read only

Former Member
0 Likes
425

Hi,

Please refer to the link below :

http://www.sapdev.co.uk/reporting/alv/alvgrid_rephead.htm

Thanks,

Sri,