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 MSG

Former Member
0 Likes
630

Hi,

I need to pop up a message..just as an Information/Warning only..

This popup msg box should have only OK button and not help and Cancel buttons.

I tried using POPUP_DISPLAY_MESSAGE..This has both OK,CANCEL and help buttons. How to avaoi this ?

I sthere any other functions which i can use.

Pls help

Thanks

Ram

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
587

Hi,

Use FM <b>POPUP_TO_INFORM</b>.

Cheers...

Santosh.

3 REPLIES 3
Read only

Former Member
0 Likes
588

Hi,

Use FM <b>POPUP_TO_INFORM</b>.

Cheers...

Santosh.

Read only

Former Member
0 Likes
587

hi Prabha,

try the FM ->


POPUP_TO_INFORM
 
or POPUP_FOR_INFORMATION 

CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
TITEL = 'ERROR'
TXT1 = 'Enter the message using the input lines at the bottom'.

Santosh

Read only

0 Likes
587

FUNCTION POPUP_TO_INFORM.

*"----


*"Lokale Schnittstelle:

*" IMPORTING

*" TITEL

*" TXT1

*" TXT2

*" TXT3 DEFAULT SPACE

*" TXT4 DEFAULT SPACE

*"----


RSTABL-TITLE = TITEL.

RSTABL-TXT1 = TXT1.

RSTABL-TXT2 = TXT2.

RSTABL-TXT3 = TXT3.

RSTABL-TXT4 = TXT4.

CALL SCREEN 201 STARTING AT 1 3

ENDING AT 80 8.

ENDFUNCTION.