2008 Apr 21 5:14 AM
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 ..
2008 Apr 25 10:08 AM
FM POPUP_TO_CONFIRM
this is a very well documented FM in SE37.
regards, Rob Dielemans
2008 Apr 25 10:08 AM
FM POPUP_TO_CONFIRM
this is a very well documented FM in SE37.
regards, Rob Dielemans
2008 Apr 25 10:15 AM
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.
2008 Apr 25 10:17 AM
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