<?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 using perform statement in function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130181#M447709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can I create a subroutine inside the function module. if possible where should the code for the form should be written.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 11:15:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T11:15:48Z</dc:date>
    <item>
      <title>using perform statement in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130181#M447709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can I create a subroutine inside the function module. if possible where should the code for the form should be written.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130181#M447709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: using perform statement in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130182#M447710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jenibalet S ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, You can create a subroutine inside the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION  XXXXXX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform sub1.&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;The form ... endform of the subroutine should be in an include under the same function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130182#M447710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: using perform statement in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130183#M447711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Subroutines cld be created in FM's. they go in the includes of fM.&lt;/P&gt;&lt;P&gt;Check the link for info ;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130183#M447711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: using perform statement in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130184#M447712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES IN SOURCE CODE OF FN MODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM P_FORM.&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;FORM P_FORM&lt;/P&gt;&lt;P&gt;&amp;lt;SOME CODE&amp;gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR YOU CAN WRITE THE FORM IN SOME INCLUDE PROG ALSO..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;SHIBA DUTTA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 11:22:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130184#M447712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T11:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: using perform statement in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130185#M447713</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;You sholud not(can not) write Sunroutine definition in source code of function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform sub1 in source code of function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Double click on subroutine name&amp;lt;/b&amp;gt; then a dialog box appears press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Top-include name(L followed by Function group name folloed bt TOP ,For  example if your FG name is FG1 then click on LFG1TOP which is called TOP INCLUE) and Press Enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There write your subroutine code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can perfectly go forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Award points if it helps you.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Rama.Pammi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 12:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-perform-statement-in-function-module/m-p/2130185#M447713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T12:23:21Z</dc:date>
    </item>
  </channel>
</rss>

