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 to display

Former Member
0 Kudos

Hi all,

I am working in Alv interactive. Iam updating the multiple records at a time.

at last i want ti show the popup with 'howmay records actullay processed' and 'howmany got successfully updated' and 'How many got error'.

anybody suggesst me on this.

its urgent.

best regards,

Ajay

2 REPLIES 2

Former Member
0 Kudos

Use this function Module to display the Summary.

POPUP_WITH_TABLE_DISPLAY

Or

POPUP_WITH_TABLE

Amandeep

former_member194669
Active Contributor
0 Kudos

Hi,

May be another way is using

LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.


MODULE call_list_500 OUTPUT.
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
SET PF-STATUS space.
SUPPRESS DIALOG.
write : / 'Updated Records' v_uprec.
write : / 'Error Records' v_errec.
ENDMODULE.