HI Experts.
I'm learning the English language so I apologize for possible grammatical errors.
I'm working with NWBC.
I created a button on the screen.
I created a FPM event for this button.
The function of this button is to call my web dynpro program.
I used this code within the class:
IF iv_event_id->mv_event_id = 'ZCALL_ZCLIENTES'.
IMPORT lv_click TO lv_click FROM MEMORY ID 'ZMEMO_CLICK'.
lv_click = lv_click + 1.
IF lv_click = 1.
* Get Web Dynpro Appplication URL
CALL METHOD cl_wd_utilities=>construct_wd_url
EXPORTING
application_name = 'ZWD_TM_CLIENTES' " Application Name
IMPORTING
out_absolute_url = lv_url.
DATA lo_navigate_to TYPE REF TO if_fpm_navigate_to.
lo_navigate_to = mo_fpm->get_navigate_to( ).
lv_launch-url = lv_url.
lv_launch-header_text = 'header text'.
ls_params-window_features = 'directories=yes,location=yes,menubar=yes,status=yes,titlebar=yes,toolbar=yes'.
lo_navigate_to->launch_url( is_url_fields = lv_launch is_additional_parameters = ls_params ).
lv_click = lv_click + 1.
EXPORT lv_click FROM lv_click TO MEMORY ID 'ZMEMO_CLICK'.
ENDIF.
ENDIF.
The code worked correctly and the web dynpro show correctly:
My problem is:
The screen displays no option to expand the screen (see picture)
What I need to change in my code or what parameter should I fill out to enable the option and expand the screen?
Thanks experts.