Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

POPUP

Former Member
0 Likes
464

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
437

hi

<b>POPUP_TO_INFORM

POPUP_TO_DISPLAY</b>

regards

ravish

<b>plz dont forget to reward points if helpful</b>

3 REPLIES 3
Read only

Former Member
0 Likes
438

hi

<b>POPUP_TO_INFORM

POPUP_TO_DISPLAY</b>

regards

ravish

<b>plz dont forget to reward points if helpful</b>

Read only

Former Member
0 Likes
437

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

  • .

Read only

Former Member
0 Likes
437

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