‎2009 Dec 21 3:02 PM
Hi Gurus,
I'm working on 4.6c(classical reporting).
In the output I want to display some fixed text, and then display some list output from final internal table.
eg: Natasha(Fixed Text),
SAP ABAP(Fixed Text),,
Next List(from an internal table).
I tried by some write statements followed by 'REUSE_ALV_LIST_DISPLAY'
It's showing the list only, not the fixed text.
COuld any post the solution for printing both the text and the list as well.
Thanks
G Natasha.
‎2009 Dec 21 3:23 PM
You need handle TOP_OF_PAGE event from that FM .
For sample code see program BALVSD01
‎2009 Dec 21 8:11 PM
I think u want classical report so why r u using REUSE_ALV_LIST_DISPLAY.
u can simple write some write stat for fixed values and use loop at and endloop for lT values.
If u want ALV report for this, then create a it like slis_t_listheader and
wa like slis_listheade and fill the table with the fixed values
I thnk this will help u
Thnks U
Anmol.
Replay to this...................................
Hi Gurus,
I'm working on 4.6c(classical reporting).
In the output I want to display some fixed text, and then display some list output from final internal table.
eg: Natasha(Fixed Text),
SAP ABAP(Fixed Text),,
Next List(from an internal table).
I tried by some write statements followed by 'REUSE_ALV_LIST_DISPLAY'
It's showing the list only, not the fixed text.
COuld any post the solution for printing both the text and the list as well.
Thanks
G Natasha.