<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412106#M198405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is way to make sure the container occupies the entire space available for it. So, if there is less or more space the container is automatically adjusted to occupy that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you need to do for that is place the customer control on the screen and drag it to the maximum both width wise and height wise. Double click on it and in the attributes, In that check the check box at the bottom of the attributes screen and give minimum numbers in the horizontal and vertical items there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will automatically shrink / expand the control according to the size of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers and close the thread if the issue is resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jun 2006 08:30:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-27T08:30:16Z</dc:date>
    <item>
      <title>CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412102#M198401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in SAP help the following is described:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SAP Dialog Box container allows you to display controls in an amodal dialog box or fullscreen.&lt;/P&gt;&lt;P&gt;Class: CL_GUI_DIALOGBOX_CONTAINER &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everytime I use the dialogbox container it will create an amodal window. What I have to do to create the container as fullscreen? Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Kay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 07:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412102#M198401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T07:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412103#M198402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. You can increase the height and width of the container in the constructur, however if you don't know the same for the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Else, you use a custom control on the screen, and show the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no way setting automatically to occupy the entire screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412103#M198402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412104#M198403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest  .
DATA: it001w TYPE TABLE OF t001w WITH HEADER LINE.
DATA: dialog_box  TYPE REF TO cl_gui_dialogbox_container,
      alv_bottom    TYPE REF TO cl_gui_alv_grid,
      alv_right     TYPE REF TO cl_gui_alv_grid,
      repid TYPE syrepid.
PARAMETERS: p_check TYPE c.

AT SELECTION-SCREEN OUTPUT.
  SELECT *
       INTO CORRESPONDING FIELDS OF
       TABLE it001w
       FROM t001w.
  CREATE OBJECT dialog_box
  EXPORTING   width = 700
              height  = 300.
  CREATE OBJECT alv_right
 EXPORTING
      i_parent = dialog_box.
  CALL METHOD alv_right-&amp;gt;set_table_for_first_display
    EXPORTING
      i_structure_name = 'T001W'
    CHANGING
      it_outtab        = it001w[].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this is calling as dialog box. but if you want it to be a full screen then you have to create a screen in that you to place the container and set the attributes height/width to make it a full screen. &lt;/P&gt;&lt;P&gt;and use that screen/container to place your controls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412104#M198403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412105#M198404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is not what I want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first way by giving height and width values a separate window will be created but not a fullscreen in the actual dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second way there is the problem that you don't know the size of the actual screen. But the size of the custom control is fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fullscreen means for me there is one SAPGUI window and the control is shown in the whole dynpro. If SAPGUI window is resized the control is resized, too. By the way there are no scrollbars. Only GUI controls they are placed in the fullscreen container should have scrollbars if neccessary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One posibility is to use the CL_GUI_DOCKING_CONTAINER with extension value = 10000. This creates a fullscreen. But the description of CL_GUI_DIALOGBOX_CONTAINER says the same: fullscreen mode is possible. But how it is? That's the question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412105#M198404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412106#M198405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is way to make sure the container occupies the entire space available for it. So, if there is less or more space the container is automatically adjusted to occupy that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you need to do for that is place the customer control on the screen and drag it to the maximum both width wise and height wise. Double click on it and in the attributes, In that check the check box at the bottom of the attributes screen and give minimum numbers in the horizontal and vertical items there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will automatically shrink / expand the control according to the size of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers and close the thread if the issue is resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412106#M198405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412107#M198406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the source code. But if I use values for height and width a new window is created, too.&lt;/P&gt;&lt;P&gt;Fullscreen means in my opinion that the container is shown in the actual or given dynpro; not in font of the dynpro.&lt;/P&gt;&lt;P&gt;Maybe my understanding of "fullscreen" is wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:32:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412107#M198406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412108#M198407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats right. But what you will get is a large screen with scrollbars. If the GUI control which is linked to the container is smaller then the screen the scrollbars are also there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls try using CL_GUI_DOCKING_CONTAINER like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create object gv_dock_cont&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    extension = 10000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create a resizable fullscreen as I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I'm looking for the same behaviour with CL_GUI_DIALOGBOX_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Kay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412108#M198407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T08:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412109#M198408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry no time to try: When creating the object, pass parameter Style = cl_gui_control=&amp;gt;WS_MAXIMIZEBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 08:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412109#M198408</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-06-27T08:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412110#M198409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nice to hear from you. How is life &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cl_gui_control=&amp;gt;WS_MAXIMIZEBOX means the box beside the close box is visible and can be used. But the container is in a separate window, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I have to use the docking container for fullscreen functionality again. Maybe I also missunderstood the SAP help describtion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 09:11:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412110#M198409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T09:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412111#M198410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the best ;-)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what you really want to do, but keep in mind that the dialogbox may look similar to a windows object, but it is SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if you set the dialogbox to fullscreen using the mouse, you can still resize it - which is not possible for a standard windows window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still you can try to play around with method SET_ALIGNMENT. I just did in SE80 test environment and by consecutive calls to SET_ALIGNMENT with alignments bottom, top, left,...  I could get quite a big box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnak you also for the info about WS_MAXIMIZEBOX - but as you see the function of maximizing a dialog box is not the same as in windows. If necessary, must CALL SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 10:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412111#M198410</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-06-27T10:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412112#M198411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted the same .&lt;/P&gt;&lt;P&gt;With this coding I am content - perhaps it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    data go_dialog            type ref to cl_gui_dialogbox_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data lv_alignment type i.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  lv_alignment = cl_gui_control=&amp;gt;align_at_left +&lt;/P&gt;&lt;P&gt;              cl_gui_control=&amp;gt;align_at_right +&lt;/P&gt;&lt;P&gt;              cl_gui_control=&amp;gt;align_at_top ."+&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             cl_gui_control=&amp;gt;align_at_bottom.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method go_dialog-&amp;gt;set_alignment&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      alignment         = lv_alignment&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      cntl_error        = 1&lt;/P&gt;&lt;P&gt;      cntl_system_error = 2&lt;/P&gt;&lt;P&gt;      others            = 3.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;               with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 17:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412112#M198411</guid>
      <dc:creator>martin_sonntag2</dc:creator>
      <dc:date>2010-12-13T17:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412113#M198412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want full screen, use a docking container with full extension. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although the documentation says so, I think you can only extend the dialog box control to full screen - hiding the screen where it is created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 19:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412113#M198412</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-12-13T19:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412114#M198413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the date of the OP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 19:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412114#M198413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-13T19:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: CL_GUI_DIALOGBOX_CONTAINER as fullscreen ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412115#M198414</link>
      <description>&lt;P&gt;Thanks, this code works perfect for maximize the window:&lt;BR /&gt;    data lv_alignment type i.&lt;BR /&gt;    lv_alignment = cl_gui_control=&amp;gt;align_at_left + l_gui_control=&amp;gt;align_at_right + cl_gui_control=&amp;gt;align_at_top + cl_gui_control=&amp;gt;align_at_bottom.&lt;BR /&gt;    call method go_dialog-&amp;gt;set_alignment  exporting  alignment = lv_alignment.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 08:12:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-gui-dialogbox-container-as-fullscreen/m-p/1412115#M198414</guid>
      <dc:creator>barrakus_1</dc:creator>
      <dc:date>2019-07-18T08:12:26Z</dc:date>
    </item>
  </channel>
</rss>

