cancel
Showing results for 
Search instead for 
Did you mean: 

Want window to open in full screen mode.

Former Member
0 Kudos

Hi

I am doing portal navigation on click of a button. The new window presently opens externally but not in full screen mode. Could anyone please help me acheive the functionality.

If it cannot open in full screen maximized mode. Can I place it in the center of the screen and adjust its size.

Thanks

Prashant

Accepted Solutions (1)

Accepted Solutions (1)

ChandraMahajan
Active Contributor
0 Kudos

Hi,

as per below method, you can pass correct values to parameter WINDOW_FEATURES.

call method lr_port_manager->navigate_absolute

exporting

navigation_target = navigation_data-target

navigation_mode = navigation_data-navigation_mode

window_features = navigation_data-window_features

window_name = navigation_data-window_name

history_mode = navigation_data-history_mode

target_title = navigation_data-target_title

context_url = navigation_data-context_url

post_parameters = ABAP_FALSE

use_sap_launcher = abap_true

business_parameters = bus_parameter_list

launcher_parameters = launcher_parameter_list.

It has values,

RESIZABLE- Windows can be resized

WIDTH- Width of the window

HEIGTH- Height of the window

I hope this will help you.

Thanks,

Chandra

Former Member
0 Kudos

Hi

By setting RESIZABLE, WIDTH, HEIGTH, I can make the window resizable. But I want it to open in the center of the page also. Without that It opens with the correct size with half of the new window not visible. I then have to click maximize button or drag it to the center.

I hope you understoon what I was trying to convey.

Regards

Prashant

ChandraMahajan
Active Contributor
0 Kudos

Hi,

May be you need to check the properties of iView like

Width of External Window (Pixels)

Window Features

Height Type

Height of External Window (Pixels)

Fixed Height (Pixels) etc etc.

Just check these properties of your WD Iview.

Thanks,

Chandra

Former Member
0 Kudos

Have you tried with

fullscreen=yes

call method lo_portal_manager->navigate_absolute
      exporting
        navigation_target   = lv_navigation_target
        navigation_mode     = if_wd_portal_integration=>co_show_external
        window_features     = `toolbar=no, resizable=yes, location=no, width=1120, height=900, fullscreen=yes`
*

Former Member
0 Kudos

Thanks a lot !!

Answers (0)