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

Interactive ALV

Former Member
0 Likes
421

Hey guys....

In an Interactive ALV report, i want to put same header and logo to all detailed lists including basic list.But i will write Reuse_alv_commenteroy_write..only for first screen.It shold apply for all detailed screen...Is it possible?..

If not how can we do this?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
391

YOu should use the commentary write function module in the subroutine name thais passed to the parameter: I_CALLBACK_TOP_OF_PAGE

call function 'REUSE_ALV_GRID_DISPLAY'

exporting

I_CALLBACK_TOP_OF_PAGE = 'I_CALLBACK_TOP_OF_PAGE'

form I_CALLBACK_TOP_OF_PAGE.

call function 'REUSE_COMMENTARY_WRITE'...

endform.

Regards,

Ravi

2 REPLIES 2
Read only

Former Member
0 Likes
392

YOu should use the commentary write function module in the subroutine name thais passed to the parameter: I_CALLBACK_TOP_OF_PAGE

call function 'REUSE_ALV_GRID_DISPLAY'

exporting

I_CALLBACK_TOP_OF_PAGE = 'I_CALLBACK_TOP_OF_PAGE'

form I_CALLBACK_TOP_OF_PAGE.

call function 'REUSE_COMMENTARY_WRITE'...

endform.

Regards,

Ravi

Read only

0 Likes
391

Hi Thanks.

I know it.What i want is the same logo and header i want for all detail lists.

That means when i click on a perticular line in the first grid display it will show the next grid display...in that also i want display same logo and header.

But i dont want to use reuse_alv_commentory_write in the 2nd grid display.

How can we do this?