<?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 need a function module to get alv information in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802217#M1587223</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement of developing a FM in which importing parameter will be the program name( Zprogram) ( can be any ) the output parameter should be the internal table contents and fieldcatalogue .Is this requirement possible .Experts please throw some light on this requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Mar 2011 12:38:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-21T12:38:23Z</dc:date>
    <item>
      <title>need a function module to get alv information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802217#M1587223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement of developing a FM in which importing parameter will be the program name( Zprogram) ( can be any ) the output parameter should be the internal table contents and fieldcatalogue .Is this requirement possible .Experts please throw some light on this requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 12:38:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802217#M1587223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T12:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: need a function module to get alv information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802218#M1587224</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;Looks like a difficult functionality, but can you elaborate your question please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to get the field catalog used and the final internal tables used for the display for a report, we can do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Pass the report name to the FM. Inside the FM - search for the strings like 'reuse_alv_grid_display' or list_display.&lt;/P&gt;&lt;P&gt;2. If found, then try to capture the final internal table name of that.&lt;/P&gt;&lt;P&gt;3. The one discrepancy i see here is the returning parameter ( like the final internal table) should be modified to the type of our table that is being returned to the FM.&lt;/P&gt;&lt;P&gt;4. We can actually brainstorm on this and get some more ideas if this is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 12:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802218#M1587224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T12:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: need a function module to get alv information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802219#M1587225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi GuruCharan ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U got my requirement , i need exactly the internal table(output ) and field catalogue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 12:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802219#M1587225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T12:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: need a function module to get alv information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802220#M1587226</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;We can try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Pass the program name that we want to read.&lt;/P&gt;&lt;P&gt;2. Search for strings like field_catalgue_merge to get the structure of the field catalog used.&lt;/P&gt;&lt;P&gt;3. Search for strings like reuse_alv_grid/list_display to get the final internal table,&lt;/P&gt;&lt;P&gt;4. Get the structures to our FM from which we are calling. &lt;/P&gt;&lt;P&gt;5. It requires some tricky coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 13:38:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802220#M1587226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T13:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: need a function module to get alv information</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802221#M1587227</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;&lt;STRONG&gt;need a function module to get alv information&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For these follow below link, It is solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="258606"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 17:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-a-function-module-to-get-alv-information/m-p/7802221#M1587227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-25T17:45:28Z</dc:date>
    </item>
  </channel>
</rss>

