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

List display

former_member423024
Participant
0 Likes
462

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.

2 REPLIES 2
Read only

Pawan_Kesari
Active Contributor
0 Likes
428

You need handle TOP_OF_PAGE event from that FM .

For sample code see program BALVSD01

Read only

0 Likes
428

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.