<?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: Regarding ALV using OOPS Concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351705#M1540724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check BCALV_EDIT_03.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Oct 2010 11:30:42 GMT</pubDate>
    <dc:creator>former_member225631</dc:creator>
    <dc:date>2010-10-15T11:30:42Z</dc:date>
    <item>
      <title>Regarding ALV using OOPS Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351704#M1540723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can abody explain to me how can i disable some settings in the tool bar of ALV Grid using oops concept??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 10:57:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351704#M1540723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T10:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALV using OOPS Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351705#M1540724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check BCALV_EDIT_03.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 11:30:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351705#M1540724</guid>
      <dc:creator>former_member225631</dc:creator>
      <dc:date>2010-10-15T11:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALV using OOPS Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351706#M1540725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello friend i am too learing abap oops i found a oops alv demo program during search hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/Snippets/Tutorial" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/Snippets/Tutorial&lt;/A&gt;&lt;EM&gt;ABAP&lt;/EM&gt;ALV&lt;EM&gt;Through&lt;/EM&gt;OOPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Chitta Ranjan Mahato&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Oct 2010 03:57:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351706#M1540725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-19T03:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALV using OOPS Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351707#M1540726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can perform this step, before you call set_table_for_first_display and pass that to this call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Exculude all unnecessary standard function in ALV&lt;/P&gt;&lt;P&gt;  PERFORM exclude_tb_functions CHANGING &lt;STRONG&gt;lt_exclude&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL METHOD g_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;  is_layout            = gs_layout&lt;/P&gt;&lt;P&gt;      is_variant           = l_variant&lt;/P&gt;&lt;P&gt;      i_save               = 'A'&lt;/P&gt;&lt;P&gt;      it_toolbar_excluding = &lt;STRONG&gt;lt_exclude&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_fieldcatalog      = gt_fieldcat&lt;/P&gt;&lt;P&gt;      it_sort              = gt_sort[]&lt;/P&gt;&lt;P&gt;      it_outtab            = it_final[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can exclude all unwanted function in the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FORM exclude_tb_functions  CHANGING pt_exclude TYPE ui_functions.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  DATA ls_exclude TYPE ui_func.&lt;/P&gt;&lt;P&gt;  ls_exclude = cl_gui_alv_grid=&amp;gt;mc_fc_loc_copy_row.&lt;/P&gt;&lt;P&gt;  APPEND ls_exclude TO pt_exclude.&lt;/P&gt;&lt;P&gt;  ls_exclude = cl_gui_alv_grid=&amp;gt;mc_fc_loc_delete_row.&lt;/P&gt;&lt;P&gt;  APPEND ls_exclude TO pt_exclude.&lt;/P&gt;&lt;P&gt;  ls_exclude = cl_gui_alv_grid=&amp;gt;mc_fc_loc_append_row.&lt;/P&gt;&lt;P&gt;  APPEND ls_exclude TO pt_exclude.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDFORM.                    " exclude_tb_functions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you complete the solution for your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Oct 2010 22:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351707#M1540726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-19T22:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding ALV using OOPS Concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351708#M1540727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Lakshmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thanks for your answer.It was very helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Alexander&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alexander1 on Oct 21, 2010 7:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2010 05:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alv-using-oops-concept/m-p/7351708#M1540727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-21T05:47:27Z</dc:date>
    </item>
  </channel>
</rss>

