‎2007 Jul 19 11:45 AM
I need to show a very long message, with an indeterminate number of vars, in a popup window.
Like:
Transport order <i>TO1</i> created for delivery <i>dl1</i>.
Transport order <i>TO2</i> created for delivery <i>dl2</i>.
...
Transport order <i>TOn</i> created for delivery <i>dln</i>.
Is there some FM doing this?
Thanks.
‎2007 Jul 19 11:46 AM
hi
<b>POPUP_TO_INFORM
POPUP_TO_DISPLAY</b>
regards
ravish
<b>plz dont forget to reward points if helpful</b>
‎2007 Jul 19 11:46 AM
hi
<b>POPUP_TO_INFORM
POPUP_TO_DISPLAY</b>
regards
ravish
<b>plz dont forget to reward points if helpful</b>
‎2007 Jul 19 11:47 AM
CONCATENATE
'Contract End Date:' l_enddt INTO l_txt2 SEPARATED BY space.
CLEAR it_veda.
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
EXPORTING
TITEL = 'Contract data'
textline1 = l_txt1
TEXTLINE2 = l_txt2
START_COLUMN = 20
START_ROW = 6
.
‎2007 Jul 19 11:49 AM
Hi,
You have to use function modules for that. Use DOCU_GET function module and pass ID = NA, LANGU = SY-LANGU, OBJECT = <value obtained by calling another function module DOCU_OBJECT_NAME_CONCATENATE and passing DOCU_ID = NA, ELEMENT = MESSAGE CLASS and ADDITION = MESSAGE NUMBER
<b>Reward points</b>
Regards