‎2006 Dec 21 9:31 AM
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?
‎2006 Dec 21 9:38 AM
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
‎2006 Dec 21 9:38 AM
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
‎2006 Dec 21 10:11 AM
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?