Application Development and Automation 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: 
Read only

Screen Maximize button not coming

Former Member
0 Likes
1,775

Hi all,

I am having a problem in Normal Screen I am not getting Maximize and Minimize button when I am calling second screen when the user presses a button on first screen. the code I have written is as follows.

*---Call the Screen for the Log Display

CALL SCREEN 101 STARTING AT 10 5. Is it because of Starting at addition?

I am getting the Close button at top end X but before that I should get minimize - and Maximize [] buttons.

Please advice how to get these options.

Thanks,

Neel

3 REPLIES 3
Read only

Kiran_Valluru
Active Contributor
0 Likes
1,100

Hi,

For Pop Up windows ( Call Screen with addition of starting at end at ) Only Close button will be there..

you can check Standard programs too.. ( for example check BCALV_GRID_03 program ).

hope this helps u.,

Thanks & Regards,

Kiran

Read only

Former Member
0 Likes
1,100

If you want the Minimize & Maximize button for popup window, you are looking for Amodal window and the one you are getting is a Modal window. Refer to the below code and code within the FM for AModal popup.


  CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD'
       EXPORTING
            DOKLANGU         = LANGUAGE
            CALLED_FOR_TAB   = L_TABNAME
            CALLED_FOR_FIELD = L_FIELDNAME. 

Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,100

Hi Neel,

As said by other we cannot get a maximize and minimize buttons in the popup screen of type normal.

Instead if you need them then make the screen as a Modal dialog screen and then change the properties of the screen.

Else you can always create a new screen.

Thanks,

Bhargav.