cancel
Showing results for 
Search instead for 
Did you mean: 

Changing Popup Window Title.

Former Member
0 Kudos

We are using Launchpad(ABAP) to create roles and display it in portal. Is ther any possiblity to overwrite the separate external window name when a service launch is happen in a separate window. We tried achiving this by setting lpd_cust for an application we set External headerless window and pass the value "WINDOW_TITLE=XXXXX" for " Windowfeatures". But it does not work...Please can anyone specify the correct "window feature" parameter name.

Regards,

Dhinesh Kumar

Accepted Solutions (0)

Answers (1)

Answers (1)

Chaitanya_Priya
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

When you create an external window .

the follwoing code is used.

.

lo_window = lo_window_manager->create_window(

window_name = 'REASON_FOR_REJ'

title = 'Reason For Rejection' this paramter helps you i guess

  • close_in_any_case = abap_true

message_display_mode = if_wd_window=>co_msg_display_mode_selected

  • close_button = abap_true

button_kind = if_wd_window=>co_buttons_ok

message_type = if_wd_window=>co_msg_type_none

default_button = if_wd_window=>co_button_ok

).

lo_window->open( ).

Priya