Application Development 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: 

Classical report display from an alv list

Former Member
0 Kudos

Hi,

I have an alv report displayed, and for this alv report have a user defined menu. Now when the Save button is clicked on the application bar then in the background we have a set of invoices which are generated for all the values selected from the alv list.

Now after this a list is to be displayed listing all the items which were selected from the alv(ie the check boxes for the alv selected and not a particular field for selection) for which the invoices were created. how do we display the list in a classical report format considering that the write statement will not work....???

1 ACCEPTED SOLUTION

former_member480923
Active Contributor
0 Kudos

Hi

Try thsi......

You write the code in some Zreport of your own and from your ALV program pass the values to this ZReport program. You can pass via 2 ways

a) Pass via Export to Memory and Import from Memory ID

b) Call Submit via Selection Screen and return

Hope thsi Helps

Anirban

4 REPLIES 4

former_member188685
Active Contributor
0 Kudos

Hi,

it is not possible to show that , But you can show that data in the Popup. using the alv popup fm.

Regards

vijay

former_member181962
Active Contributor
0 Kudos

YOu can use the FM POPUP_WITH_TABLE_DISPLAY to show the invoices that are properly created.

Regards,

Ravi

former_member480923
Active Contributor
0 Kudos

Hi

Try thsi......

You write the code in some Zreport of your own and from your ALV program pass the values to this ZReport program. You can pass via 2 ways

a) Pass via Export to Memory and Import from Memory ID

b) Call Submit via Selection Screen and return

Hope thsi Helps

Anirban

0 Kudos

Hi Anirban,

Thanks for the reply but how do we pass the internal table from one report to display data in another report ..

there is this statement submit <repname> and return exporting list to memory..but how do we pass the internal table to memory??