‎2011 Jun 23 12:43 PM
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
‎2011 Jun 23 2:43 PM
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
‎2011 Jun 23 8:08 PM
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.
‎2011 Jun 27 10:23 AM
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.