‎2007 Nov 05 4:01 PM
Hi Experts,
I have doubt with pop up message.
I have one variable like,
PO = '3000000014'.
So I want to display the popup msg like,
"For all details see the Purchase document number : 3000000014"
So how can I pass the Parameter PO to Pop up Message.
Thanks in Advance,
Points Assured.
‎2007 Nov 05 4:05 PM
Hi
check this FM..
DATA : ans.
CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE'
EXPORTING
defaultoption = 'Y'
diagnosetext1 = 'Caution!!'
diagnosetext2 = 'For all details see the Purchase document number '
diagnosetext3 = itab-ponum "PO number
textline1 = ' '
titel = 'Confirmation'
IMPORTING
answer = ans "Returns user action
EXCEPTIONS
OTHERS = 1.
Message was edited by:
Perez C
‎2007 Nov 05 4:05 PM
Hi
check this FM..
DATA : ans.
CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE'
EXPORTING
defaultoption = 'Y'
diagnosetext1 = 'Caution!!'
diagnosetext2 = 'For all details see the Purchase document number '
diagnosetext3 = itab-ponum "PO number
textline1 = ' '
titel = 'Confirmation'
IMPORTING
answer = ans "Returns user action
EXCEPTIONS
OTHERS = 1.
Message was edited by:
Perez C
‎2007 Nov 05 4:06 PM
Hi,
Please try this and create text element 001 with values 'For all details see the Purchase document number :'.
DATA: WA_TEXT(50) TYPE C.
CONCATENATE TEXT-001 WA_PO INTO WA_TEXT SEPARATED BY SPACE.
MESSAGE WA_TEXT TYPE 'I'.
Regards,
Ferry Lianto
‎2007 Nov 05 4:06 PM
Hi,
sure!
message i000(000) with 'For all details see the Purchase document number :' po.rgs