ABAP弹窗确认POPUP_TO_CONFIRM
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
data lv_answer type c. call function 'POPUP_TO_CONFIRM' exporting titlebar = '操作确认:' text_question = '请先确认已下发数据?' display_cancel_button = ' ' importing answer = lv_answer. case lv_answer. when '1'. "执行操作. perform frm_delete_item using gt_output. when '2'. "do nothing. when others. "3:取消 endcase. |
如若转载,请注明出处:https://www.gavindong.com/3139.html