<?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 in Dialog program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465745#M1251934</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;For your requirement use OOP concept to display the data on ALv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Call one Screen for your requirement it is subscreen on Tab then place on custom container and name   it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create Objects reference to CL_GUI_ALV_GRID AND CL_GUI_CUSTOM_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.then Connect Custom container and Custom cotrol on screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Provide parent child relation ship between custom container and alv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. display data on grid by calling SET_TABLE_FOR_FIRST_DISPLAY method of alv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for reference see program starting with BC_ALV*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Apr 2009 08:15:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-23T08:15:54Z</dc:date>
    <item>
      <title>ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465741#M1251930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks ,&lt;/P&gt;&lt;P&gt;    I have tab strip in which in the first three tabs I'm displaying table controls. I have a requirement to display a alv when I click on the fourth tab. The alv has to be displayed on the subscreen related to the fourth tab.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;Thank &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;    Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 07:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465741#M1251930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T07:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465742#M1251931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Place a custom container on the subscreen where you want to display the ALV. Give it a appropriate name.&lt;/P&gt;&lt;P&gt;call the custom container in your program, declare the alv grid controller and then it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Suvendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 07:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465742#M1251931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T07:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465743#M1251932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well not sure but you cannot call a report in a subscreen. Try to pass parameter by using submit and calling the report program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 07:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465743#M1251932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T07:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465744#M1251933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the fourth tab  follow the standard ways of creating display in alv using ABAPobjects&lt;/P&gt;&lt;P&gt;e.g. -&lt;/P&gt;&lt;P&gt;1. Custom container in the Subscreen&lt;/P&gt;&lt;P&gt;2. Create Container Object&lt;/P&gt;&lt;P&gt;3.Create Grid Object&lt;/P&gt;&lt;P&gt;4. Build Field Ctalog&lt;/P&gt;&lt;P&gt;5. Call method set_table_for_first_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find lot of links in SDN and check standard programs for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_EDIT_01/BCALV_EDIT_02/BCALV_EDIT_03/.... etc  for different requirements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 07:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465744#M1251933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T07:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465745#M1251934</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;For your requirement use OOP concept to display the data on ALv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Call one Screen for your requirement it is subscreen on Tab then place on custom container and name   it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create Objects reference to CL_GUI_ALV_GRID AND CL_GUI_CUSTOM_CONTAINER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.then Connect Custom container and Custom cotrol on screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Provide parent child relation ship between custom container and alv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. display data on grid by calling SET_TABLE_FOR_FIRST_DISPLAY method of alv grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for reference see program starting with BC_ALV*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 08:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465745#M1251934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T08:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465746#M1251935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suvendu,&lt;/P&gt;&lt;P&gt;    Could you please give me some idea how to call the custom container and how to display the alv on it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 08:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465746#M1251935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T08:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465747#M1251936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: grid TYPE REF TO cl_gui_alv_grid,&lt;/P&gt;&lt;P&gt;      container TYPE REF TO cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;      mycontainer TYPE scrfname VALUE 'ALV1',&lt;/P&gt;&lt;P&gt;      gs_layout TYPE lvc_s_layo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT container&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      container_name = mycontainer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT grid&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_parent          = container&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      error_cntl_create = 1&lt;/P&gt;&lt;P&gt;      error_cntl_init   = 2&lt;/P&gt;&lt;P&gt;      error_cntl_link   = 3&lt;/P&gt;&lt;P&gt;      error_dp_create   = 4&lt;/P&gt;&lt;P&gt;      OTHERS            = 5.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gs_layout-grid_title = 'Purchase Order'(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD GRID-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_structure_name              = 'EKKO'&lt;/P&gt;&lt;P&gt;      is_layout                     = gs_layout&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   is_print                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_outtab                     = i_ekko&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_fieldcatalog               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_sort                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_filter                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   invalid_parameter_combination = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   program_error                 = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   too_many_lines                = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   others                        = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 08:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465747#M1251936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T08:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: ALV in Dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465748#M1251937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the program would be helpful to you and would solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Suvendu Swain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 08:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-in-dialog-program/m-p/5465748#M1251937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T08:49:52Z</dc:date>
    </item>
  </channel>
</rss>

