<?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: functional moduls in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335342#M799314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;all the function modules are available in se37&lt;/P&gt;&lt;P&gt;if u want to use function module in se38  then go to the pattern &lt;/P&gt;&lt;P&gt;give the function module name press enter key &lt;/P&gt;&lt;P&gt;you can use function module in se 38&lt;/P&gt;&lt;P&gt;here exporting parameter are parameter which u pass it to function module&lt;/P&gt;&lt;P&gt;importing parametrs are parameters which u get data from function module &lt;/P&gt;&lt;P&gt;exception should be handle explicitly&lt;/P&gt;&lt;P&gt;we can also test function module in se37 also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2008 06:00:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-07T06:00:37Z</dc:date>
    <item>
      <title>functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335335#M799307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me how to us function moduls &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:44:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335335#M799307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335336#M799308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: line(80) TYPE c LENGTH 80, 
      text_tab LIKE STANDARD TABLE OF line, 
      fleng    TYPE i. 

... 

CALL FUNCTION 'GUI_DOWNLOAD' 
  EXPORTING 
    filename         = 'c:\temp\text.txt' 
    filetype         = 'ASC' 
  IMPORTING 
    filelength       = fleng 
  TABLES 
    data_tab         = text_tab 
  EXCEPTIONS 
    file_write_error = 1 
    invalid_type     = 2 
    no_authority     = 3 
    unknown_error    = 4 
    OTHERS           = 10. 

CASE sy-subrc. 
  WHEN 1. 
    ... 
  ... 
ENDCASE. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335336#M799308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335337#M799309</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;You can view the function modules thru transaction code SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the documentation and analyse whether it is of your use or not. If suitable then you can use in your program by pressing Control+F6 or there is a button for calling a POP-UP in which you will mention the function module you want to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass all the parameters that are mandaory to pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Always keep in mind that while passing the parameters it should be type compatibel with the parameters defined in the function module definition (in SE37).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jayant Sahu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335337#M799309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335338#M799310</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 SE37 and search for the desired function module as per you requiremnt.&lt;/P&gt;&lt;P&gt;In the program where uwant to use it. click on pattern, write the name of the function module.&lt;/P&gt;&lt;P&gt;the impportinga dn exporting parameters will appear. u cna use them just as the variables and internal tables used in the program. the input to the function module will be the exporting parameters in the program and its output will be the importing parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward appropriate points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mansi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335338#M799310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335339#M799311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;       In ur report program go to pattern button above click on it whenever u need a fm TO BE USED....GIVE THE NECESSARY INPUTS ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Was this ur requirement??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaveri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335339#M799311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335340#M799312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Modules are Glopbal ABAP programs created by SAP for reusable purpose.they have IMPORT,EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.&lt;/P&gt;&lt;P&gt;You can create them from TCode SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following doc:&lt;/P&gt;&lt;P&gt;Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder. &lt;/P&gt;&lt;P&gt;Function Module Interfaces &lt;/P&gt;&lt;P&gt;The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;... IMPORTING parameters &lt;/P&gt;&lt;P&gt;EXPORTING parameters &lt;/P&gt;&lt;P&gt;CHANGING parameters &lt;/P&gt;&lt;P&gt;TABLES table_parameters &lt;/P&gt;&lt;P&gt;{RAISING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with CLASS-METHODS. The additional option of defining table parameters using TABLES is obsolete. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interface parameters &lt;/P&gt;&lt;P&gt;The interface parameters are defined on the relevant tab pages in the Function Builder. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module. &lt;/P&gt;&lt;P&gt;EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called. &lt;/P&gt;&lt;P&gt;CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter. &lt;/P&gt;&lt;P&gt;TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement. &lt;/P&gt;&lt;P&gt;Exceptions &lt;/P&gt;&lt;P&gt;The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure. &lt;/P&gt;&lt;P&gt;The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error. &lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is a technology which is used to access a functions (Modules) from&lt;/P&gt;&lt;P&gt;the remote systems.&lt;/P&gt;&lt;P&gt;If a function module is set as remote enabled which can be access from&lt;/P&gt;&lt;P&gt;the remote system via RFC.Eg: U can access the Remote enabled function modules in ur VB,Webdynpro,Java,Visual composer program.&lt;/P&gt;&lt;P&gt;A function module can be set as remote enabled by SE37-&amp;gt;Go to ur FM-&amp;gt;click the option Button "remote enabled".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Normal function modules can not accessd from the remote system.&lt;/P&gt;&lt;P&gt;Good Example for RFC enabled function module is : BAPI(Business Application Programming Interface)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: All BAPIs are Remote enabled but not all remote enabled function modules are BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALLING A FUNCTION MODULE:&lt;/P&gt;&lt;P&gt;1)In U ABAP Editor --&amp;gt; Click "Patter" ---&amp;gt; Selection Option Button "Call Function"&lt;/P&gt;&lt;P&gt;--&amp;gt; Write the Corresponding FM name --&amp;gt; Hit Enter&lt;/P&gt;&lt;P&gt;2)The appropriate import ,export Parameters will be displayed in ur editor&lt;/P&gt;&lt;P&gt;3)Pass the Values Here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check these links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;See the following links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can go to Se37 and see the documentation of each of the desired funciton modules seeing the IMPORT, EXPORt, CHANGING AND TABLES paramters adn code accordingly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here are few links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_46c/helpdata/en/d1/801ee8454211d189710000e8322d00/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://www.erpgenie.com/abap/functions.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward poits if useful&lt;/P&gt;&lt;P&gt;Rohan malik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:53:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335340#M799312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335341#M799313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;in u r report program keep the cursor at a particular position where u want the function module to be triggered and click ctrl+f6 or there is a tab called patterns click on that then in that u can give the function module name and click on continue.&lt;/P&gt;&lt;P&gt;now uncomment the exporting and inporting parameters and exceptions.&lt;/P&gt;&lt;P&gt;the values which u r passing to the function module are importing to FM and the values which u r getting as output are exporting to FM.&lt;/P&gt;&lt;P&gt;the exporting parameters of FM are importing parameters to report .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335341#M799313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: functional moduls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335342#M799314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;all the function modules are available in se37&lt;/P&gt;&lt;P&gt;if u want to use function module in se38  then go to the pattern &lt;/P&gt;&lt;P&gt;give the function module name press enter key &lt;/P&gt;&lt;P&gt;you can use function module in se 38&lt;/P&gt;&lt;P&gt;here exporting parameter are parameter which u pass it to function module&lt;/P&gt;&lt;P&gt;importing parametrs are parameters which u get data from function module &lt;/P&gt;&lt;P&gt;exception should be handle explicitly&lt;/P&gt;&lt;P&gt;we can also test function module in se37 also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 06:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/functional-moduls/m-p/3335342#M799314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T06:00:37Z</dc:date>
    </item>
  </channel>
</rss>

