<?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 Can we split window using CL_SALV_TABLE class (ALV Object Model)? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040142#M965624</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we split window using CL_SALV_TABLE class (ALV Object Model)?&lt;/P&gt;&lt;P&gt;If yes then how to split it? &lt;/P&gt;&lt;P&gt;If no then how this class is more useful than ALV Grid (CL_GUI_ALV_GRID) since I have read on SDN that CL_SALV_TABLE  gives more collective interface to the ALV tools.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 13:44:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T13:44:15Z</dc:date>
    <item>
      <title>Can we split window using CL_SALV_TABLE class (ALV Object Model)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040142#M965624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we split window using CL_SALV_TABLE class (ALV Object Model)?&lt;/P&gt;&lt;P&gt;If yes then how to split it? &lt;/P&gt;&lt;P&gt;If no then how this class is more useful than ALV Grid (CL_GUI_ALV_GRID) since I have read on SDN that CL_SALV_TABLE  gives more collective interface to the ALV tools.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 13:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040142#M965624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T13:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can we split window using CL_SALV_TABLE class (ALV Object Model)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040143#M965625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create one container....&lt;/P&gt;&lt;P&gt;split it... using cl_gui_splitter_container&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use those containers for displaying the AVL using CL_SALV_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT v_custom_container1&lt;/P&gt;&lt;P&gt;    EXPORTING container_name = v_container1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT v_splitter&lt;/P&gt;&lt;P&gt;             EXPORTING parent  = v_custom_container1&lt;/P&gt;&lt;P&gt;                       rows    = 2&lt;/P&gt;&lt;P&gt;                       columns = 1.&lt;/P&gt;&lt;P&gt;    CALL METHOD v_splitter-&amp;gt;get_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        row       = 1&lt;/P&gt;&lt;P&gt;        column    = 1&lt;/P&gt;&lt;P&gt;      RECEIVING&lt;/P&gt;&lt;P&gt;        container = v_parent_html.&lt;/P&gt;&lt;P&gt;    CALL METHOD v_splitter-&amp;gt;get_container&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        row       = 2&lt;/P&gt;&lt;P&gt;        column    = 1&lt;/P&gt;&lt;P&gt;      RECEIVING&lt;/P&gt;&lt;P&gt;        container = v_custom_container1_g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD v_splitter-&amp;gt;set_row_height&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id     = 1&lt;/P&gt;&lt;P&gt;        height = 30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT v_grid1&lt;/P&gt;&lt;P&gt;      EXPORTING i_parent = v_custom_container1_g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_salv_table=&amp;gt;factory&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                 list_display   = IF_SALV_C_BOOL_SAP=&amp;gt;FALSE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                  r_container    = &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                 container_name = v_custom_container1_g.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                 r_salv_table   =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                CHANGING&lt;/P&gt;&lt;P&gt;                  t_table        =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amitava De on Jun 24, 2008 7:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 13:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040143#M965625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T13:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can we split window using CL_SALV_TABLE class (ALV Object Model)?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040144#M965626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For spliting the window you need to use first &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: g_docking_container_1 type ref to cl_gui_docking_container,

 create object g_docking_container_1
    exporting
      repid     = g_repid
      dynnr     = '300'
      extension = 190
      side      = cl_gui_docking_container=&amp;gt;dock_at_left.

 create object g_docking_container_2
    exporting
      repid     = g_repid
      dynnr     = '300'
      extension = 1200
      side      = cl_gui_docking_container=&amp;gt;dock_at_right.
....
....
....
try.
      call method cl_salv_table=&amp;gt;factory
        exporting
          r_container  = g_docking_container_2
        importing
          r_salv_table = gr_table
        changing
          t_table      = i_ysccalv4.
    catch cx_salv_msg.
  endtry.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; a®s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: a®s on Jun 24, 2008 9:52 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 13:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-split-window-using-cl-salv-table-class-alv-object-model/m-p/4040144#M965626</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-06-24T13:49:48Z</dc:date>
    </item>
  </channel>
</rss>

