POPUP_TO_CONFIRM_LOSS_OF_DATA
通過 Function Module 彈出窗口快速提示數據丟失信息
所屬 Function Group : SPO1
所屬 Package : SZP
DATA:answer TYPE c LENGTH 1.
CALL FUNCTION ‘POPUP_TO_CONFIRM_LOSS_OF_DATA’
? EXPORTING
??? textline1???? = ‘textline1′ "maximum 70 characters
??? textline2???? = ‘textline2′ "maximum 70 characters
??? titel???????? = ‘titel’
??? start_column? = 25 "Start column of the dialog box
??? start_row???? = 6??? "Start line of the dialog box
??? defaultoption = ‘N’
? IMPORTING
??? answer??????? = answer.
CASE answer.
? WHEN ‘A’.
? WHEN ‘J’.
? WHEN ‘N’.
ENDCASE.
*The end-user’s decision is returned in ANSWER. ANSWER can contain the
*following values:
"A" = User chose Cancel
"J" = User confirmed the processing step
"N" = User withdrew from the processing step
結果:(點擊可看大圖)
?
————
注意:
1、R3 4.71中使用該 FM 會提示已過期。
總結
以上是生活随笔為你收集整理的POPUP_TO_CONFIRM_LOSS_OF_DATA的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: POPUP_TO_CONFIRM
- 下一篇: POPUP_TO_CONFIRM_STE