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: 

Create a window with read only address bar (no address bar) in webdynpro

Former Member
0 Kudos
191

Hello All,

The client wants to open a webdynpro window in such a way that when a user clicks on the link and the new window opens up, it does not show the address bar or the address bar is uneditable. How do i do that?

Thanks,

Amina

1 ACCEPTED SOLUTION

Former Member
0 Kudos
89

Hi,

if your client is calling window through method CREATE_EXTERNAL_WINDOW of interface IF_WD_WINDOW_MANAGER, then you have a importing parameter HAS_LOCATION which you can set to false.

If you are calling through portal and u have application PCD then you can call it like this

lo_portal_manager->navigate_absolute(
    navigation_target   = lv_path
    navigation_mode     = if_wd_portal_integration=>co_show_external
    window_features     = 'toolbar=no,resizable=yes,scrollbars=yes'
    business_parameters = lv_tab_wd_param
         ).

lo_portal_manager is portal reference

here window _features parameter says no toolbar.

Regards

Manas Dua

3 REPLIES 3

Former Member
0 Kudos
90

Hi,

if your client is calling window through method CREATE_EXTERNAL_WINDOW of interface IF_WD_WINDOW_MANAGER, then you have a importing parameter HAS_LOCATION which you can set to false.

If you are calling through portal and u have application PCD then you can call it like this

lo_portal_manager->navigate_absolute(
    navigation_target   = lv_path
    navigation_mode     = if_wd_portal_integration=>co_show_external
    window_features     = 'toolbar=no,resizable=yes,scrollbars=yes'
    business_parameters = lv_tab_wd_param
         ).

lo_portal_manager is portal reference

here window _features parameter says no toolbar.

Regards

Manas Dua

0 Kudos
89

Hi Manas,

Thank you the information you provided. Unfortunately they do not want a pop-up which would be the external window call and we are not using a portal either. Any other ideas?

Hi Sai,

Either one would work. If I can hide the address bar or make it uneditable.

Thanks a lot!

Former Member
0 Kudos
89

Hi,

I'm a little bit confused. you don't want an address bar or your want it to be read only.

Thanks,

Sai