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: 

How to select multiple records in the ALV POP UP by using oops

P561888
Active Contributor
0 Kudos

Hi All,

We have a requirement of ALV POP UP by using the OOPS. How to select the multiple records in the POP UP and After selecting that i want do Inteactive ALV means again one more POP UP in ALV.

Thanks for help....

Regards,

Bharani

2 REPLIES 2

former_member320332
Contributor
0 Kudos

Hi Bharani,

You can refer below link for creating a ALV pop up using oops

http://wiki.sdn.sap.com/wiki/display/Snippets/ALVPOPUPLISTDISPLAYUSINGCLASScl_salv_table

And according to 2nd part of your question you have to call another ALV pop up from this so in this case you

can use cl_salv_events_table class for handling the events there are lots of example available for CL_SALV_TABLE

interactive ALV.

Regards,

Pawan

uwe_schieferstein
Active Contributor
0 Kudos

Hello Bharani

Displaying an ALV list in a popup is by no means different from a list displayed on a main screen. The only thing you need to consider is that you set the right screen level when creating the parent container for the ALV.

For more details refer to thread


...
" step 1: 
  CREATE OBJECT gr_spliter
    EXPORTING
      parent = cl_gui_container=>screen0 " For first popup use: =>screen1
      rows = 1
      columns = 2.
...

Regards

Uwe