0
点赞
收藏
分享

微信扫一扫

abap弹出对话框

飞空之羽 2023-09-18 阅读 49

data x_ans type c.
  call function 'POPUP_TO_CONFIRM_STEP'
  exporting
   DEFAULTOPTION        = 'Y'
    textline1            = 'this is a dog'
   TEXTLINE2            = ' '
    titel                = 'that is a cat'
   START_COLUMN         = 25
   START_ROW            = 6
   CANCEL_DISPLAY       = ''
  IMPORTING
    ANSWER               = X_ANS.
 write x_ans.

举报

相关推荐

弹出对话框

0 条评论