<?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 example needed for function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823371#M351632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kindly provide me an example for function module &amp;amp; let me how to use this function in a report program..Thnaks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jan 2007 07:27:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-11T07:27:19Z</dc:date>
    <item>
      <title>example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823371#M351632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kindly provide me an example for function module &amp;amp; let me how to use this function in a report program..Thnaks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823371#M351632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T07:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823372#M351633</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;GO to Tcode SE80.Create fucntion group.Name should start with z or y.&lt;/P&gt;&lt;P&gt;GO to Tcode SE37.Create function module.Assign it to function group created above.Name should start with z or y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In change mode,you can top include.This is the place you should put the declarations.&lt;/P&gt;&lt;P&gt;In F01,you need to write the form and U01 you should write the main program.Best way is to take any function module(z*) and follow it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 3 types of fm.&lt;/P&gt;&lt;P&gt;1.Normal fm&lt;/P&gt;&lt;P&gt;2.RFC enabled&lt;/P&gt;&lt;P&gt;3.Update task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for RFC.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/22/0425f2488911d189490000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/22/0425f2488911d189490000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823372#M351633</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-11T07:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823373#M351634</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;    Declare PARAMETERS:  P_FILE LIKE RLGRAP-FILENAME. in your program..&lt;/P&gt;&lt;P&gt;No write this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN  ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            PROGRAM_NAME  = SYST-CPROG&lt;/P&gt;&lt;P&gt;            DYNPRO_NUMBER = SYST-DYNNR&lt;/P&gt;&lt;P&gt;            FIELD_NAME    = 'P_FILE'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            FILE_NAME     = P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will browse thru the directories to pick a name when U press F4 on the &lt;/P&gt;&lt;P&gt;P_FILE  ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GSR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823373#M351634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T07:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823374#M351635</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;First, go to SE80, select from the listbox, "Function Group", enter the name of your function group, Hit enter. SYstem will ask if you want to create it, say yes. Once the function group is created, then righ-click on the node in the tree structure and select create-&amp;gt;function module. Name it and give description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add your IMPORT and EXPORT parameters in the appropriate tab, add the source code in the appropriate tab. SAve and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some addtional reading.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_470/helpdata/en/d1/801ee8454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_470/helpdata/en/d1/801ee8454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823374#M351635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T07:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823375#M351636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;Function modules are ABAP routines that are administered in a central function library. They apply across applications and are available throughout the system. You must assign function modules to a function pool that is called a function group. A function group is nothing but a container for the function modules. Now create a function group and then a function module, which you can use for the next exercise steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this step by step exercies.&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;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:40:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823375#M351636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T07:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: example needed for function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823376#M351637</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;for using fm in report look:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d1/801aaf454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d1/801aaf454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 07:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/example-needed-for-function-module/m-p/1823376#M351637</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-01-11T07:43:07Z</dc:date>
    </item>
  </channel>
</rss>

