<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687458#M887935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Function modules are single functions that are managed by the SAP Function Builder (transaction SE37) and developed in SAP's own programming language, ABAP. The function module should have the attribute Remote Enabled to be called from outside the SAP system via the RFC protocol. &lt;/P&gt;&lt;P&gt;Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program.  All functions can be found at transaction code 'SE37'.  &lt;/P&gt;&lt;P&gt;Every function module provides import and export parameters. These parameters are either given to or from the function module. Besides these scalar parameters, there can be also an exchange of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the data from the table to the function module is used&lt;/P&gt;&lt;P&gt;to the by using the import and export parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import: is used to the transfer the data from the table to&lt;/P&gt;&lt;P&gt;the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export: is used to the transfer the data from the function&lt;/P&gt;&lt;P&gt;module to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://abaplovers.blogspot.com/2008/02/creating-function-module-in-sap-abap.html" target="test_blank"&gt;http://abaplovers.blogspot.com/2008/02/creating-function-module-in-sap-abap.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2008 10:09:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-28T10:09:10Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687452#M887929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wat is the meaning of exporting and importing parameters in function module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 10:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687452#M887929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T10:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687453#M887930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMPORT : data going into the function module, that it will perform some action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT : data returned by the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 10:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687453#M887930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T10:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687454#M887931</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;Import parameters correspond to the formal input parameter of subroutines.  They pass data from the calling program to the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameters correspond to the formal output parameters of subroutines.  They pass data from the function module back to the calling program (which his not possible in subroutines)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 10:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687454#M887931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T10:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687455#M887932</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;exporting&lt;/STRONG&gt; : these pass data from the function module back to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;importing&lt;/STRONG&gt; : These must be supplied with data when you call the function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 13:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687455#M887932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T13:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687456#M887933</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;Function modules can have the following interface parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·         IMPORTparameters. These must be supplied with data when you call the function module, unless they are flagged as optional. You cannot change them in the function module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·         EXPORTparameters. These pass data from the function module back to the calling program. EXPORT parameters are always optional. You do not have to receive them in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·         CHANGING parameters. These must be supplied with data when you call the function module, unless they are flagged as optional. They can be changed in the function module. The changed values are then returned to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·         Tables parameters. You use these to pass internal tables. They are treated like CHANGING parameters. However, you can also pass internal tables with other parameters if you specify the parameter type appropriately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 10:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687456#M887933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T10:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687457#M887934</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;Practically speaking: Function module is a reusable component apart from resuability. the main functionality is to take some Input and Get the results back.&lt;/P&gt;&lt;P&gt;Some thing Like this&lt;/P&gt;&lt;P&gt;        INPUT -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;   Function module( Process with help of Input Values) ---&amp;gt; OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Technically:&lt;/P&gt;&lt;P&gt;Similarly In a function Module we call the Input Variables As IMPORT parameters&lt;/P&gt;&lt;P&gt;And Output Variable as EXPORT parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More simply Import values are the values that are comming into function module and after processing the export values are the values that are going out of function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In technical terms we also call these IMPORT and EXPORT parameters as Interface parameters ie.. through these parameters we will be able to call a function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is one more parameter called CHANGING which is designed in cases wer we ma use that variable as both import or  export parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this gave u a brief idea abt these parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 11:28:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687457#M887934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-23T11:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687458#M887935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Function modules are single functions that are managed by the SAP Function Builder (transaction SE37) and developed in SAP's own programming language, ABAP. The function module should have the attribute Remote Enabled to be called from outside the SAP system via the RFC protocol. &lt;/P&gt;&lt;P&gt;Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program.  All functions can be found at transaction code 'SE37'.  &lt;/P&gt;&lt;P&gt;Every function module provides import and export parameters. These parameters are either given to or from the function module. Besides these scalar parameters, there can be also an exchange of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the data from the table to the function module is used&lt;/P&gt;&lt;P&gt;to the by using the import and export parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import: is used to the transfer the data from the table to&lt;/P&gt;&lt;P&gt;the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export: is used to the transfer the data from the function&lt;/P&gt;&lt;P&gt;module to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://abaplovers.blogspot.com/2008/02/creating-function-module-in-sap-abap.html" target="test_blank"&gt;http://abaplovers.blogspot.com/2008/02/creating-function-module-in-sap-abap.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 10:09:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3687458#M887935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T10:09:10Z</dc:date>
    </item>
  </channel>
</rss>

