abap弹出对话框

来源:互联网 发布:二维码识别软件 编辑:程序博客网 时间:2024/05/18 02:34
 

  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.