Application Development 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: 

FM FOR THE POPUP MESSAGE

Former Member
0 Kudos

HI All,

I want to display a message in the popup with only one cancel button is there any FM for that if yes kindly let me know.

Thanks in advance.

sankar.

7 REPLIES 7

Former Member
0 Kudos

Use

C14A_POPUP_CANCEL

PB_POPUP_CANCEL

Former Member
0 Kudos

Hi,

Check Function module

POPUP_TO_CONFIRM_WITH_MESSAGE

POPUP_TO_CONFIRM_STEP

thanks,

Former Member
0 Kudos

POPUP_TO_CONFIRM

Former Member
0 Kudos

Hi,

POPUP_TO_INFORM

Regards,

Surinder

Former Member
0 Kudos

Hi,

You can also use POPUP_FOR_INTERACTION.

Put the Headline, Message u want to display in

Text1, give TICON and Button_1 as Cancel.

Hope that helps.

Regards,

Surinder

Former Member
0 Kudos

Hi Jaya,

Check this one:

Regards,

Chandra Sekhar

Former Member
0 Kudos

Hi jaya sankar,

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

titlebar = ''

text_question = ''

text_button_1 = 'YES'

icon_button_1 = 'ICON_YES'

text_button_2 = 'NO'

icon_button_2 = 'ICON_NO'

default_button = '1'

display_cancel_button = 'X' ---> cancel button

start_column = 25

start_row = 6

IMPORTING

answer =

EXCEPTIONS

text_not_found = 1.

Regards,

Sravanthi