<?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: to call a standered function module. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836214#M355884</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;when i implemented the above code  compilation error : &amp;lt;b&amp;gt;"." expected after T_DETAILS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; is coming.if i make some modifications like using - : importing T_DETAILS :ERROR is&lt;/P&gt;&lt;P&gt; there is " wrong use of import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ashutosh.r&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 Feb 2007 08:09:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-03T08:09:07Z</dc:date>
    <item>
      <title>to call a standered function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836212#M355882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap experts..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I am xi consultant, In my scenario i need to create &amp;lt;b&amp;gt;Remote Function module&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;( suppose FM1) which will call another function (for ex. a BAPI ,or any function module).&lt;/P&gt;&lt;P&gt;The issue is that :-  the BAPI take 1 input parameter and return a output of tabular format.&lt;/P&gt;&lt;P&gt;                            now how i will pass the input first through FM1 and than pass the input    to the called  BAPI.&lt;/P&gt;&lt;P&gt;the final output of tabular format return by FM1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    input -&amp;gt;FM1-&amp;gt;BAPI-&amp;gt; output-&amp;gt;FM1-&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: FM1 is any imaginary name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body share me some codes in forum... or&lt;/P&gt;&lt;P&gt;mail me at : ashutosh.rawat83@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ashutosh.r&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 17:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836212#M355882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T17:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: to call a standered function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836213#M355883</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;Check this example&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE37..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the function module name FM1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press create..Give the function group and description..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the import parameters, table parameters with the same type of the BAPI or any function moduel that you are going to call..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION FM1.&lt;/P&gt;&lt;P&gt;***IMPORTING IM1 TYPE MATNR  &lt;/P&gt;&lt;P&gt;***TABLES T_DETAILS STRUCTURE BAPI....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI....'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;         IM1 = IM1&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;         T_DETAILS = T_DETAILS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Feb 2007 17:20:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836213#M355883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-02T17:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: to call a standered function module.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836214#M355884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;when i implemented the above code  compilation error : &amp;lt;b&amp;gt;"." expected after T_DETAILS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; is coming.if i make some modifications like using - : importing T_DETAILS :ERROR is&lt;/P&gt;&lt;P&gt; there is " wrong use of import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ashutosh.r&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Feb 2007 08:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-call-a-standered-function-module/m-p/1836214#M355884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-03T08:09:07Z</dc:date>
    </item>
  </channel>
</rss>

