<?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: Using the perform statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953747#M65741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM conglomerated_data IN PROGRAM saplz_fs_inbound.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Aug 2005 18:26:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-10T18:26:29Z</dc:date>
    <item>
      <title>Using the perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953744#M65738</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 have a function called &lt;/P&gt;&lt;P&gt;Z_FS_FUSED_BUSINESS_OBJ_DATA,&lt;/P&gt;&lt;P&gt;I have also defined a form in this function called &lt;/P&gt;&lt;P&gt;FORM conglomerated_data&lt;/P&gt;&lt;P&gt;All of this is in one function group called z_fs_inbound&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have another function, in another function group, what is the syntax for calling the form in the first function group ; i tried &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PERFORM conglomerated_data in program&lt;/P&gt;&lt;P&gt;                  Z_FS_FUSED_BUSINESS_OBJ_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this did not work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 18:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953744#M65738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-10T18:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using the perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953745#M65739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would not sure the function module name as the program name, you would use the function group main program.  In your case is would be something like SAPL&amp;lt;Your_Function_Group_Name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

PERFORM conglomerated_data in program 
                            SAPL&amp;lt;function_group_name&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 18:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953745#M65739</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-08-10T18:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using the perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953746#M65740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Create an include program in the main program of the function pool. Save the form subroutine in this include. Then you can call it directly from each function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"For each function group &amp;lt;fgrp&amp;gt; there is a main program, generated by the system, called SAPL&amp;lt;fgrp&amp;gt;.&lt;/P&gt;&lt;P&gt;The main program contains INCLUDE statements for the following programs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L&amp;lt;fgrp&amp;gt;TOP. This contains the global data for the function group. &lt;/P&gt;&lt;P&gt;L&amp;lt;fgrp&amp;gt;UXX. These includes contain the function modules themselves. The numbering XX indicates the chronological order in which the function modules were created. This includes L&amp;lt;fgrp&amp;gt;U01 and L&amp;lt;fgrp&amp;gt;U02 contain the first two function modules in the function group.&lt;/P&gt;&lt;P&gt;L&amp;lt;fgrp&amp;gt;F01, L&amp;lt;fgrp&amp;gt;F02... These includes can be used to write subroutines (forms) that can be called as internal forms by all function modules in the group. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Svetlin Rusev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 18:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953746#M65740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-10T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using the perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953747#M65741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM conglomerated_data IN PROGRAM saplz_fs_inbound.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 18:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953747#M65741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-10T18:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using the perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953748#M65742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If these answers have been helpful, please award points accordingly and mark this post as solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Aug 2005 19:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-the-perform-statement/m-p/953748#M65742</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-08-10T19:37:43Z</dc:date>
    </item>
  </channel>
</rss>

