<?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: ALV SPLITTER REPORT PROBLEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580891#M23016</link>
    <description>&lt;P&gt;Yes U are right , First time doing with object oriented got a little confused But finally did it .&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2018 09:37:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-02-06T09:37:53Z</dc:date>
    <item>
      <title>ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580885#M23010</link>
      <description>&lt;P&gt;Hi Experts!!&lt;/P&gt;
  &lt;P&gt;I have made a simple interactive alv report using fm REUSE_ALV_POPUP_TO_SELECT .&lt;/P&gt;
  &lt;P&gt;But now the problem is user don't want popup now they want me to diplay the 2nd internal table(or the 2nd ALV) in the right hand side in the same screen.&lt;/P&gt;
  &lt;P&gt;So I have to use splitter container but I m not good with OOPS.&lt;/P&gt;
  &lt;P&gt;Can anyone provide a sample code for alv splitter container&lt;/P&gt;
  &lt;P&gt;where after 1st display user would click a specific field and the 2nd alv will show in the right hand side&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 11:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580885#M23010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-02-04T11:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580886#M23011</link>
      <description>&lt;P&gt;You didn't explain how you built the first ALV (dynpro container, full screen, ALV framework used, etc.), so we can't even tell you for sure what is the simplest thing to do.&lt;/P&gt;
  &lt;P&gt;But if you search "alv splitter 2 screens", you'll find lots of examples: &lt;A href="https://wiki.scn.sap.com/wiki/display/ABAP/Display%20two%20or%20more%20ALVs%20on%20one%20screen%20using%20Splitter%20Control"&gt;Display two or more ALVs on one screen using Splitter Control&lt;/A&gt;, etc.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 15:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580886#M23011</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-02-04T15:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580887#M23012</link>
      <description>&lt;P&gt;"but I m not good with OOPS."&lt;/P&gt;
  &lt;P&gt;That makes no sense. Seems that you are not good in SAP GUI controls. Search for documentation and examples about that. ABAP Objects should be common knowledge anyway if you work with ABAP nowadays.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 17:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580887#M23012</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-02-04T17:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580888#M23013</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
  &lt;P&gt;see below sample code for ur req.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/112526-img.jpg" /&gt;&lt;/P&gt;
  &lt;P&gt;REPORT ZDEMO2.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; DATA:GO_CON TYPE REF TO CL_GUI_CUSTOM_CONTAINER,&lt;BR /&gt; GO_SPLT TYPE REF TO CL_GUI_SPLITTER_CONTAINER,&lt;BR /&gt; GO_CON1 TYPE REF TO CL_GUI_CONTAINER,&lt;BR /&gt; GO_CON2 TYPE REF TO CL_GUI_CONTAINER,&lt;BR /&gt; GO_ALV1 TYPE REF TO CL_GUI_ALV_GRID,&lt;BR /&gt; GO_ALV2 TYPE REF TO CL_GUI_ALV_GRID.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; START-OF-SELECTION.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CREATE OBJECT GO_CON&lt;BR /&gt; EXPORTING&lt;BR /&gt; CONTAINER_NAME = 'CON'&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; CNTL_ERROR = 1&lt;BR /&gt; CNTL_SYSTEM_ERROR = 2&lt;BR /&gt; CREATE_ERROR = 3&lt;BR /&gt; LIFETIME_ERROR = 4&lt;BR /&gt; LIFETIME_DYNPRO_DYNPRO_LINK = 5&lt;BR /&gt; OTHERS = 6.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CREATE OBJECT GO_SPLT&lt;BR /&gt; EXPORTING&lt;BR /&gt; PARENT = GO_CON&lt;BR /&gt; ROWS = 1&lt;BR /&gt; COLUMNS = 2&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; CNTL_ERROR = 1&lt;BR /&gt; CNTL_SYSTEM_ERROR = 2&lt;BR /&gt; OTHERS = 3.&lt;BR /&gt; &lt;BR /&gt; CALL METHOD GO_SPLT-&amp;gt;GET_CONTAINER&lt;BR /&gt; EXPORTING&lt;BR /&gt; ROW = 1&lt;BR /&gt; COLUMN = 1&lt;BR /&gt; RECEIVING&lt;BR /&gt; CONTAINER = GO_CON1.&lt;BR /&gt; &lt;BR /&gt; CALL METHOD GO_SPLT-&amp;gt;GET_CONTAINER&lt;BR /&gt; EXPORTING&lt;BR /&gt; ROW = 1&lt;BR /&gt; COLUMN = 2&lt;BR /&gt; RECEIVING&lt;BR /&gt; CONTAINER = GO_CON2.&lt;BR /&gt; &lt;BR /&gt; CREATE OBJECT GO_ALV1&lt;BR /&gt; EXPORTING&lt;BR /&gt; I_PARENT = GO_CON1&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; ERROR_CNTL_CREATE = 1&lt;BR /&gt; ERROR_CNTL_INIT = 2&lt;BR /&gt; ERROR_CNTL_LINK = 3&lt;BR /&gt; ERROR_DP_CREATE = 4&lt;BR /&gt; OTHERS = 5.&lt;BR /&gt; &lt;BR /&gt; CREATE OBJECT GO_ALV2&lt;BR /&gt; EXPORTING&lt;BR /&gt; I_PARENT = GO_CON2&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; ERROR_CNTL_CREATE = 1&lt;BR /&gt; ERROR_CNTL_INIT = 2&lt;BR /&gt; ERROR_CNTL_LINK = 3&lt;BR /&gt; ERROR_DP_CREATE = 4&lt;BR /&gt; OTHERS = 5.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; END-OF-SELECTION.&lt;BR /&gt; &lt;BR /&gt; CALL SCREEN 100.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 04:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580888#M23013</guid>
      <dc:creator>former_member241258</dc:creator>
      <dc:date>2018-02-06T04:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580889#M23014</link>
      <description>&lt;P&gt;If you already used an old FM to display some tree or displayed some classic dynpro/selection-screen, you can create a new container with class &lt;A href="https://launchpad.support.sap.com/#/solutions/scnwiki/?q=CL_GUI_DOCKING_CONTAINER"&gt;CL_GUI_DOCKING_CONTAINER&lt;/A&gt; attached to the right side of the FM provided dynpro, and display an OO ALV class like CL_SALV_TABLE or CL_GUI_ALV_GRID in this container. (Search the forum, there are already many samples and discussions on this subject)&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;NB: This solution remains valid whatever the technique used to develop the main screen container / OO or classic dynpro or selection-screen ...&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 06:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580889#M23014</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-02-06T06:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580890#M23015</link>
      <description>&lt;P&gt;Thanks all of U...Its resolved now&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 09:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580890#M23015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-02-06T09:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SPLITTER REPORT PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580891#M23016</link>
      <description>&lt;P&gt;Yes U are right , First time doing with object oriented got a little confused But finally did it .&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 09:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-splitter-report-problem/m-p/580891#M23016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-02-06T09:37:53Z</dc:date>
    </item>
  </channel>
</rss>

