'(016).CALLFUNCTION'POPUP_TO_CONFIRM'EXPORTING*TITLEBAR = ' '*DIAGNOSE_OBJECT = ' 'text_question =p_msg*TEXT_BUTTON_1 = 'YES'(001)icon_button_1 ='YES'(017)*TEXT_BUTTON_2 = 'Nein'(002)icon_button_2 ='NO'(018) default_button='2'display_cancel_button=''*USERDEFINED_F1_HELP = ...
part2:设置条件,呼出POPUP_TO_CONFIRM。 at selection-screen.casesy-ucomm.when'COM1'.CALL FUNCTION'POPUP_TO_CONFIRM'EXPORTINGTITLEBAR='確認ダイアログ'TEXT_QUESTION='本当に削除しますか'TEXT_BUTTON_1='はい'TEXT_BUTTON_2='いええ'IMPORTINGANSWER=yesno.ifyesno='1'.username=''.endif.endcase...
POPUP_TO_CONFIRM in ECC600 have to be used instead of the obsolete function module: POPUP_FOR_INFO POPUP_TO_CONFIRM_LOSS_OF_DATA POPUP_TO_CONFIRM_STEP POPUP_TO_CONFIRM_WITH_MESSAGE POPUP_TO_CONFIRM_WITH_VALUE POPUP_TO_CONFIRM_WITH_VALUE_2 POPUP_TO_DECIDE POPUP_TO_DECIDE_WITH_MESSAGE...
POPUP_TO_CONFIRM_WITH_VALUE_2 POPUP_TO_DECIDE POPUP_TO_DECIDE_WITH_MESSAGE Even if most of these function modules are obsolete also in SAP 4.7, I would like to analyze it because are largely used. Below for each obsolete function module I give the new coding (default use) throughPOPUP_TO...
ABAP-弹出对话框函数-'POPUP_TO_CONFIRM'CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' '* DIAGNOSE_OBJECT = ' ' TEXT_QUESTION = * TEXT_BUTTON_1 = 'Ja'(001)* ICON_BUTTON_1
POPUP_TO_CONFIRM的使用方法CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TEXT_QUESTION = '是否要打印凭证!' TEXT_BUTTON_1 = '是'(001) TEXT_BUTTON_2 = '否'(002) DISPLAY_CANCEL_BUTTON = '' IMPORTING ANSWER = LC_ANSWER "接收点击按钮的参数点击是则为001 ,点击否则为002 * TABLES * PARAMETER =...
call function 'POPUP_TO_CONFIRM_WITH_MESSAGE' exporting * DEFAULTOPTION = 'Y' diagnosetext1 = 'Please Confirm' textline1 = text * TEXTLINE2 = ' ' titel = 'Confirm' importing answer = answer. * "J" for Yes, "N" for no. write:/ answer. Thread move to ABAP, General forum. ...
Use the Popup_to_confirm function module to confirm a user selection with a response. The pop-up dialog box has three elements, a title bar, the "text question" and the response. There are 3 and always three responses, normally "yes", "no" and "cancel." You will always pass a text...
I'm using POPUP_TO_CONFIRM FM to display a message to the user with a couple of action buttons. But I would want the message to displayed in multiple lines . Eg: lv_text1 = "There are multiple notifications". lv_text2 = "WARNING". lv_text3 = "Do you want to proceed". The mes...
I think the same thing has been discussed a few times in the forum & i dont think that we have any alternative way of doing this using POPUP_TO_CONFIRM. Will be happy if someone can provide a suitable alternative to this. Cheers, ...