Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.50 KB | None | 0 0
  1. FORM zf_confirm_execution USING p_titlebar
  2.                                 p_text_question
  3.                        CHANGING p_resposta.
  4.  
  5.   CALL FUNCTION 'POPUP_TO_CONFIRM'
  6.     EXPORTING
  7.       titlebar              = p_titlebar
  8.       text_question         = p_text_question
  9.       text_button_1         = 'Sim'(003)
  10.       text_button_2         = 'Não'(004)
  11.       display_cancel_button = space
  12.     IMPORTING
  13.       answer                = p_resposta.
  14.  
  15. ENDFORM.                    " ZF_CONFIRM_EXECUTION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement