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

Help in finding POPUP

Former Member
0 Likes
483

Hi Friends,

My requirement is that i need to print the message in the pop up window which can contain

the parameter or any values dynamically of a table.

Regards,

Rahul.

2 REPLIES 2
Read only

Former Member
0 Likes
467

hi..

I also worked with similar kind of requirement.

You can take help of FM's mentioned below:

          • POPUP_WITH_WARNING****

CALL FUNCTION 'POPUP_WITH_WARNING'

EXPORTING

TEXTLINE1 = v_item2

  • TEXTLINE2 = 'hello'

TITEL = 'Warnung'

*****POPUP_WITH_TABLE*****

*CALL FUNCTION 'POPUP_WITH_TABLE'

  • EXPORTING

  • ENDPOS_COL = 30

  • ENDPOS_ROW = 10

  • STARTPOS_COL = 1

  • STARTPOS_ROW = 1

  • TITLETEXT = 'mandeep'

  • IMPORTING

  • CHOICE = v_var

  • TABLES

  • VALUETAB = it_ekpo1

  • EXCEPTIONS

  • BREAK_OFF = 1

  • others = 2

  • .

*****POPUP_TO_DISPLAY_VALUE****

*CALL FUNCTION 'POPUP_TO_DISPLAY_VALUE'

  • EXPORTING

  • COLBEG = 2

  • COLEND = 20

  • ITEMTXT = 'ITEM'

  • TEXTLINE1 = 'LINE1'

  • TEXTLINE2 = 'LINE2'

  • TEXTLINE3 = 'LINE3'

  • TEXTLINE4 = 'LINE4'

  • TITLE = 'Item Numbers Mentioned below do not have FOC Marked'

I hope one of them can solve your purpose.

Plz reward points if useful.

Read only

0 Likes
467

Hi Rahul

Can u please explain your problem

Regards

Hitesh