cancel
Showing results for 
Search instead for 
Did you mean: 

confirmation message in powl

Former Member
0 Kudos

Hi Experts .

I am working on powl application .

if user selects any row in the table  and if he press delete button i have to show confirmation message and  selected row details in the popup .

please  tell me how to do this .

Thanks & regards

Sundeep

Accepted Solutions (1)

Accepted Solutions (1)

bhushan_ghule
Active Participant
0 Kudos

Hi Sundeep.

To show confirmation message in powl .

In IF_POWL_FEEDER~GET_ACTION_CONF  we have parameter E_conf_message it is internal table.

In your case just read the value of selected row and append the required values in E_conf_message .

and in HANDLE_ACTION method write the code like this .

IF I_ACTIONID = 'DELETE'.

     IF I_ACTION_CONF = 'Y'.

** write the code to delete row

     ENDIF.

   ENDIF.

Hope this helps.

Thanks & regards

Bhushan Ghule

Former Member
0 Kudos

Hi Bhusha .

Thanks for the help . its working .

Thanks & regards

Sundeep

Answers (0)