<?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: Function module to list out a report's input/output parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962289#M1337882</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, they're not input/output parameters, and really you shouldn't refer to them as such.  A variable is simple what it says - a variable.  You could, I suppose, refer to data sources.  But then, the report could be getting data from a set of function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my assumption is correct, you are talking about a where-used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Check out tables like CROSS. To find other useful tables, put an SQL trace on, do the where used, and see what tables are hit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Aug 2009 10:19:24 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2009-08-10T10:19:24Z</dc:date>
    <item>
      <title>Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962281#M1337874</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;I'd like to know if there is a function module which can list out all the input and output parameters (variables, tables, etc.) by giving the report name as input.&lt;/P&gt;&lt;P&gt;If not, please suggest a way to find out the input/output parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962281#M1337874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T06:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962282#M1337875</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;One of the ways is to write a custom program, with report name as input.&lt;/P&gt;&lt;P&gt;1)You can read the source code using key word READ REPORT report name, into a internal table.&lt;/P&gt;&lt;P&gt;2)SEARCH the itab for stmts like TABLES,DATA etc..&lt;/P&gt;&lt;P&gt;3) Display the SEARCH results as your report output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962282#M1337875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T06:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962283#M1337876</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;Goto SE80 and give the report name selecting the program option and give display. You will get a list of all tables (data dictionary) and variables (fields) used in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962283#M1337876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T06:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962284#M1337877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The below FM gives list of parameters of all the Function modules in the Function Group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RS_FUNCTION_POOL_PARAMETERS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also Check this too&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_REPORTSELECTIONS_INFO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mahesh Reddy on Aug 10, 2009 8:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962284#M1337877</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-08-10T06:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962285#M1337878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the info. Just like how SAP lists out / seggregates the various fields, dictionary structures, etc in SE80 when you give the report program name, I'd like to know if I can get such a list as output programmatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962285#M1337878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T06:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962286#M1337879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mahesh.&lt;/P&gt;&lt;P&gt;The function module RS_REPORTSELECTIONS_INFO has helped me get the input parameters.&lt;/P&gt;&lt;P&gt;Now I also want to know how to find all exporting parameters too. Including tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 06:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962286#M1337879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T06:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962287#M1337880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your question doesn't make much sense.  There are no "input/output" parameters for reports.  Please clarifiy what &lt;STRONG&gt;you&lt;/STRONG&gt; mean by "input/output parameter".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean you want a where used list?  Check out tables like CROSS.  To find other useful tables, put an SQL trace on, do the where used, and see what tables are hit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 07:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962287#M1337880</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-08-10T07:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962288#M1337881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By input/output parameters, i mean all the variables, internal tables etc. in the report that can be used for passing data.&lt;/P&gt;&lt;P&gt;If not function module, I'd like to know if there's a database table or some form of code that can be used to fetch these parameters.&lt;/P&gt;&lt;P&gt;For eg. If you give a program name in SE80, the repository displays these fields in the FIELDS folder. Can you tell me how this is being fetched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 08:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962288#M1337881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T08:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962289#M1337882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, they're not input/output parameters, and really you shouldn't refer to them as such.  A variable is simple what it says - a variable.  You could, I suppose, refer to data sources.  But then, the report could be getting data from a set of function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my assumption is correct, you are talking about a where-used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Check out tables like CROSS. To find other useful tables, put an SQL trace on, do the where used, and see what tables are hit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 10:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962289#M1337882</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-08-10T10:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962290#M1337883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No your assumption isnt correct. I wasnt talking abt where-used list.&lt;/P&gt;&lt;P&gt;I found the answer myself.&lt;/P&gt;&lt;P&gt;Check out the Function Module RS_PROGRAM_INDEX. The TABLES parameter COMPO returns all components of the program object. If you give the type as D, it will list out all the global data used in the program for exchange of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 10:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962290#M1337883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-10T10:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to list out a report's input/output parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962291#M1337884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see.  You want the &lt;EM&gt;internal&lt;/EM&gt; information about the program.If &lt;EM&gt;raghavendra ay&lt;/EM&gt; had gone one stage further, and mentioned the use of SCAN, he'd have given you all that you needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take care to post your questions clearly in future, using technically accurate words.  All that talk of input/output parameters was not exactly clear &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2009 12:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-list-out-a-report-s-input-output-parameters/m-p/5962291#M1337884</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-08-10T12:15:26Z</dc:date>
    </item>
  </channel>
</rss>

