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

Need function module to show pop up message

Former Member
0 Likes
2,908

HI ALL,

i have a requirement. when i select the checkbox and i click delete button it will delete the entry in alv lis as well as from ztable also. befor deleting i want to show a pop inside this pop up iwant to show somw test like entry will delete from ztable.

anybody can tell me which function module i have to use.

if possible send me some sample code for this function module.

thanks,

maheedhar.t

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
936

FM's :

POPUP_TO_CONFIRM_WITH_MESSAGE

POPUP_TO_CONFIRM_STEP

check

POPUP_TO_CONFIRM_*

5 REPLIES 5
Read only

Former Member
0 Likes
937

FM's :

POPUP_TO_CONFIRM_WITH_MESSAGE

POPUP_TO_CONFIRM_STEP

check

POPUP_TO_CONFIRM_*

Read only

Former Member
0 Likes
936

Hi,

Use the below function module

POP_TO_CONFIRM_LOSS_OF_DATA.

Regards

Sudheer

Read only

Former Member
0 Likes
936

.hi, if u nid a confirmation then u can use "POP_UP_TO_CONFIRM" but if u need to show the data of the selected row, u can create a screen with the same functionality as the above FM extending by displaying what data u need to display,

regards,

zry

Read only

Former Member
0 Likes
936

Hi Siri,

you can use the function module "POPUP_WITH_2_BUTTONS_TO_CHOOSE",. You can pass what are all the values that you want to pass, title, yes or no and this wil return 1 or 2 based on the button that you select. Make sure that your import parameter is character type other wise this function module will lead to run time error.

Read only

sonu_p2
Active Participant
0 Likes
936

Hello,

check out this one.

CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'

EXPORTING

ENDPOS_COL = 40

ENDPOS_ROW = 10

STARTPOS_COL = 1

STARTPOS_ROW = 1

TITLETEXT = 'Errors displayed'

  • IMPORTING

  • CHOISE =

TABLES

VALUETAB = it_err1

EXCEPTIONS

BREAK_OFF = 1.

<b>

Reward points if helpful.</b>

Thanks,

Sachin