<?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: Calling a FORM in a different program from a Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270608#M781780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dipesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call the form routine like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PERFORM routine1( function_group_name ) ...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;routine1 is the form routine in the program (function group in this case) that you want to access which is external to the current program (your new function group) from where you want to access it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program name in parantheses can be an include program if the form rouitne resides in the include program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sanjeev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sanjeev Kumar on Jan 9, 2008 11:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 16:11:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T16:11:40Z</dc:date>
    <item>
      <title>Calling a FORM in a different program from a Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270606#M781778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i really hope someone can help asap. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a function module in a different function group to an existing function module. Problem is that i need to access a form that is accessed in the existing FM, but of course i can not from my new FM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know there is something simple to do in my FM but can not think correctly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could someone please help??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 16:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270606#M781778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T16:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a FORM in a different program from a Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270607#M781779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM GET_DATA IN PROGRAM 'SAPLZTEST' IF FOUND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, SAPLZTEST is the main program of the FG ZTEST which holds the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 16:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270607#M781779</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-01-09T16:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a FORM in a different program from a Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270608#M781780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dipesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call the form routine like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PERFORM routine1( function_group_name ) ...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;routine1 is the form routine in the program (function group in this case) that you want to access which is external to the current program (your new function group) from where you want to access it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program name in parantheses can be an include program if the form rouitne resides in the include program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sanjeev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sanjeev Kumar on Jan 9, 2008 11:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 16:11:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270608#M781780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T16:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a FORM in a different program from a Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270609#M781781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 15:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270609#M781781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T15:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a FORM in a different program from a Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270610#M781782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While it is great that you are closing your old posts, please do not add unnecessary comments. It simply drags old posts to the top of the forum (and pushes current ones down).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 15:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-form-in-a-different-program-from-a-function-module/m-p/3270610#M781782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T15:39:20Z</dc:date>
    </item>
  </channel>
</rss>

