<?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: switch off/on  ( Docking container ) help experts in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301925#M1635741</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;&lt;/P&gt;&lt;P&gt;visible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD container-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;visible = 'X'   -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&amp;gt; for visible pass 'X'&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;Invisible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD container-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;visible = ' '  -&lt;/P&gt;&lt;HR originaltext="-------------" /&gt;&lt;P&gt;&amp;gt; For invisible pass space ' '&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;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;rajeshvadde&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 Dec 2011 06:36:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-03T06:36:20Z</dc:date>
    <item>
      <title>switch off/on  ( Docking container ) help experts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301922#M1635738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your help i have main screen on the left side there is navigation area ( Docking container ) i added 2 buttons in &lt;/P&gt;&lt;P&gt;in main screen tool-bar which I can switch /on and other button to switch off the navigation area ( Docking container ),  I didnt start with logic yet and i want the button to show ' off ' &lt;STRONG&gt;only&lt;/STRONG&gt; when navigation area is showing and 'ON' when the navigation area isn't showing :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should I use the following METHOD?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'ON'&lt;/P&gt;&lt;P&gt;????&lt;/P&gt;&lt;P&gt;WHEN 'OFF'&lt;/P&gt;&lt;P&gt;CALL METHOD container -&amp;gt;free &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2011 05:42:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301922#M1635738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-03T05:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: switch off/on  ( Docking container ) help experts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301923#M1635739</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;you need to call  method "set_visible" of cl_gui_docking_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;For visible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL METHOD container-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      visible           = 'X'&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;&lt;/P&gt;&lt;P&gt;For invisible pass exporting parameter as '  '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2011 06:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301923#M1635739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-03T06:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: switch off/on  ( Docking container ) help experts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301924#M1635740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the solution and its workin fine &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;logic :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STATICS:&lt;/P&gt;&lt;P&gt;    sf_visible TYPE seu_bool VALUE cl_gui_control=&amp;gt;visible_true.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CHECK NOT L_DOCKING IS INITIAL.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  IF sf_visible = cl_gui_control=&amp;gt;visible_false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  show list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD L_DOCKING-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;             visible = cl_gui_control=&amp;gt;visible_true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD cl_gui_container=&amp;gt;resize.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  hide list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD L_DOCKING-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;             visible = cl_gui_control=&amp;gt;visible_false.&lt;/P&gt;&lt;P&gt;    sf_visible = cl_gui_control=&amp;gt;visible_false.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2011 06:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301924#M1635740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-03T06:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: switch off/on  ( Docking container ) help experts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301925#M1635741</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;&lt;/P&gt;&lt;P&gt;visible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD container-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;visible = 'X'   -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&amp;gt; for visible pass 'X'&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;Invisible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD container-&amp;gt;set_visible&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;visible = ' '  -&lt;/P&gt;&lt;HR originaltext="-------------" /&gt;&lt;P&gt;&amp;gt; For invisible pass space ' '&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;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;rajeshvadde&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Dec 2011 06:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/switch-off-on-docking-container-help-experts/m-p/8301925#M1635741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-03T06:36:20Z</dc:date>
    </item>
  </channel>
</rss>

