<?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 Object oriented programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900877#M1792506</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; I am creating object oriented program with two internal table. So my requirement is i want header for that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i hope you understood my question and I'm waiting for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Thanks and regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Raj.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Dec 2013 06:26:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-10T06:26:47Z</dc:date>
    <item>
      <title>Object oriented programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900877#M1792506</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; I am creating object oriented program with two internal table. So my requirement is i want header for that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i hope you understood my question and I'm waiting for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Thanks and regards.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Raj.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2013 06:26:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900877#M1792506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-10T06:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900878#M1792507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No couldn't understand your point. kindly elaborate it in a nice manner.&lt;/P&gt;&lt;P&gt;Any OOP's program can use any no of Internal tables.&lt;/P&gt;&lt;P&gt;What do you actually desired &amp;amp; where are you facing trouble.&lt;/P&gt;&lt;P&gt;kindly correct your grammar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2013 06:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900878#M1792507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-10T06:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Object oriented programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900879#M1792508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Raj,&lt;/P&gt;&lt;P&gt;If you mean , you want title&amp;nbsp; text for the alv using oops . ..&lt;/P&gt;&lt;P&gt;Then declare a work are as below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ls_layo type lvc_s_layo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the subroutine of fill_layout … fill the grid title as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear ls_layo.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ls_layo-grid_title = ' HEADER DATA'. “ text u want here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass ls_layo in the set table for first display method.. as shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; call method vbak_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exporting&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is_layout&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = ls_layo&amp;nbsp; “layout filled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; changing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_outtab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_vbak[]&amp;nbsp;&amp;nbsp; “output internal table&lt;/P&gt;&lt;P&gt; it_fieldcatalog&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_fcat[].&amp;nbsp; “ field catalog..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this may help.&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Shravan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Dec 2013 07:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/object-oriented-programming/m-p/9900879#M1792508</guid>
      <dc:creator>former_member193512</dc:creator>
      <dc:date>2013-12-10T07:02:51Z</dc:date>
    </item>
  </channel>
</rss>

