cancel
Showing results for 
Search instead for 
Did you mean: 

Remove Icon in the pop up window

former_member226203
Active Contributor
0 Kudos

Hi,

I have displayed a popup with two buttons upon clicking a button in a view.

But by default a red icon with exclamation mark on it is also displayed on the popup.

I am looking if there is a way of removing this icon and display the popup only with the buttons.

Any idea or inputs on how to solve this, please let me know.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

saravanan_narayanan
Active Contributor
0 Kudos

Hello Kalyan,

Are you using popup_to_confirm? If so then pass the message_kind value as 0 while creating the popup.

BR, Saravanan

Answers (4)

Answers (4)

Former Member
0 Kudos

Hello Narayanan,

Can you please explain message_kind in popup_to_confirm function module.

Br

Vamsi

former_member226203
Active Contributor
0 Kudos

solved.

Former Member
0 Kudos

Hello Kalyan,

While you create the pop-up give the message_type as

For ex you can try doing this...

lr_popup = lr_window_manager->create_window(

MODAL = ABAP_TRUE

window_name = " "Name of the

TITLE = 'Pop_up'

CLOSE_BUTTON = ABAP_TRUE

BUTTON_KIND = if_wd_window=>CO_BUTTON_YES_NO

MESSAGE_TYPE = if_wd_window=>CO_MSG_TYPE_NONE

CLOSE_IN_ANY_CASE = ABAP_TRUE

*MESSAGE_DISPLAY_MODE = MESSAGE_DISPLAY_MODE

).

Hope this helps...

Thanks & regards

Shravan

Former Member
0 Kudos

Hi,

Can you tell which popup your using??

Regards,

Vino..