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

Popup window required

Former Member
0 Likes
719

Hi all,

Is their any class where we can generate a popup window ...

just like Function Module - CJWI_POPUP_TO_CONFIRM_STEP

Thanks in advance ..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
692

FM POPUP_TO_CONFIRM

this is a very well documented FM in SE37.

regards, Rob Dielemans

Hi all,

Is their any class where we can generate a popup window ...

just like Function Module - CJWI_POPUP_TO_CONFIRM_STEP

Thanks in advance ..

3 REPLIES 3
Read only

Former Member
0 Likes
693

FM POPUP_TO_CONFIRM

this is a very well documented FM in SE37.

regards, Rob Dielemans

Read only

Former Member
0 Likes
692

report zalv_sample .

tables vbak.

data it_vbak like vbak occurs 0 with header line.

select * from vbak

into corresponding fields of table it_vbak

up to 10 rows.

call function 'REUSE_ALV_POPUP_TO_SELECT'

exporting

i_title = 'SALES ORDER INFO'

i_zebra = 'X'

i_tabname = 1

i_structure_name = 'vbak'

tables

t_outtab = it_vbak

exceptions

program_error = 1

others = 2.

if sy-subrc <> 0.

message id sy-msgid type sy-msgty number sy-msgno

with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

endif.

regards,

venkat.

Read only

Former Member
0 Likes
692

I just read you're searchin for a class not a fm.

Why does it have to be a class, because SAP uses the FM's in the end in their own methods, check for instance CL_PTU_PROGRESS_INDICATOR method show_progress.

Kind regards, Rob Dielemans