text question
CALL FUNCTION 'POPUP_TO_CONFIRM'
EXPORTING
TITLEBAR = 'Save SOC '
DIAGNOSE_OBJECT = ' '
text_question = 'Sales Order Confirmation Will Be Archived in'
I have to use a message class in the text question, how is that possible?
Tags:
Manish Garg replied
move your call to inside the form save_file, and use single quote for msg_id and msg_no
FORM save_file.
CALL FUNCTION 'MESSAGE_PREPARE'
EXPORTING
MSG_ID = 'Z10493498'
MSG_NO = '002'
IMPORTING
MSG_TEXT = v_mess
.