<?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: how to call the function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116737#M107658</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;try this.....CALL FUNCTION FUNCTIONNAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Feb 2006 11:21:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-17T11:21:24Z</dc:date>
    <item>
      <title>how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116735#M107656</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;i am working on reports, i need to call a function module directly. i have used a subroutine to call the function module but how to call the fuction module without giving the subroutine.&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;anitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116735#M107656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116736#M107657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI aNITHA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can the Function module in the program like you did in the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function &amp;lt;function name&amp;gt;&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;importing...&lt;/P&gt;&lt;P&gt;tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for exd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTESTFUNC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB LIKE ZMATTAB OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR LIKE zmattab-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZMATF'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    MATNR                = P_MATNR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MATDESCRIPTION       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COUNTRYNAME          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MDATE                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    ZMAT                 = ITAB&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Harikishore Sreenivasulu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116736#M107657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116737#M107658</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;try this.....CALL FUNCTION FUNCTIONNAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116737#M107658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116738#M107659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Place the cursor where U want the FM&lt;/P&gt;&lt;P&gt;Press the Pattern push button .(Ctrl+F6)&lt;/P&gt;&lt;P&gt;In the Popup give the FM name U want to use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116738#M107659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116739#M107660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;click on the pattern above and give ur fn module name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116739#M107660</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-17T11:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116740#M107661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;Use the Function Control to call the function module.&lt;/P&gt;&lt;P&gt;this link may help you...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_webas630/helpdata/en/63/5d4f82c4a411d194ae00a0c94260a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_webas630/helpdata/en/63/5d4f82c4a411d194ae00a0c94260a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116740#M107661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116741#M107662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just click on the 'pattern' in the toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enter the function name in CALL FUNCTION.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the function module is automatically added to the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116741#M107662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116742#M107663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;To call function module directly from the abap editor goto PATTERN.&lt;/P&gt;&lt;P&gt;from there you can call any function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to create your own function mudule and use go to se37.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116742#M107663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to call the function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116743#M107664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Are u talking about normal se38 reports.&lt;/P&gt;&lt;P&gt;   Then u can directly call the FM&lt;/P&gt;&lt;P&gt;   just as u call in subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If uare talking about sapscript layouts,&lt;/P&gt;&lt;P&gt;   then it cannot be done directly.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-the-function-module/m-p/1116743#M107664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:46:51Z</dc:date>
    </item>
  </channel>
</rss>

