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: 

POPUP ALV to Select Using OOPS Concepts ?

Former Member
0 Kudos

Hi Friends,

i need out put as POPUP ALV, these can be achived using REUSE_ALV_POPUP_TO_SELECT but i need the same functionality by using OOPS Concepts.

Is there any class available to achive this functionality ?

Thanks in Advance.

Regards,

Kumar M

3 REPLIES 3

Former Member
0 Kudos

Hi,

You can use the Class CL_MSS_POPUP_ALV - simple abstraction for an ALV in dialogbox

which does the same work of poping up an ALV.

Regards,

Subhashini

david_lees
Participant
0 Kudos

See program SALV_DEMO_TABLE_POPUP or as a simple example:

data: lo_table type ref to cl_salv_table,

lt_data type table of mara.

  • -Construct quick ALV and display in a popup

try.

cl_salv_table=>factory(

importing

r_salv_table = lo_table

changing

t_table = lt_data ).

catch cx_salv_msg. "#EC NO_HANDLER

endtry.

*... §4.1 set the size and position of the Popup via coordinates

lo_table->set_screen_popup(

start_column = 1

end_column = 60

start_line = 1

end_line = 3 ).

*... §5 display the table

lo_table->display( ).

Former Member
0 Kudos

Hi,

Please can you update the status of this question.

Regards,

Subhashini