<?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: Error while creating Function Model in Sap Abap. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655663#M2015341</link>
    <description>&lt;P&gt;Typo: it's function &lt;STRONG&gt;MODULE&lt;/STRONG&gt;, not function MODEL.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 20:06:03 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2023-04-06T20:06:03Z</dc:date>
    <item>
      <title>Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655654#M2015332</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I try to create simple function model but I have this error which says " the statement "function" is not allowed in the current environment. However, the similar statement "function-ball" is allowed"&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2161759-agetest.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 09:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655654#M2015332</guid>
      <dc:creator>mahmood_hammood</dc:creator>
      <dc:date>2023-04-05T09:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655655#M2015333</link>
      <description>&lt;P&gt;sorry, function-pool  not function-ball&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 09:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655655#M2015333</guid>
      <dc:creator>mahmood_hammood</dc:creator>
      <dc:date>2023-04-05T09:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655656#M2015334</link>
      <description>&lt;P&gt;Hi Shakir,&lt;/P&gt;&lt;P&gt;To resolve the error, you can create a function pool by following these steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Open the ABAP Editor (SE38) and create a new program.&lt;/LI&gt;&lt;LI&gt;In the "Attributes" tab of the program, set the "Type" to "Function pool".&lt;/LI&gt;&lt;LI&gt;Save and activate the program.&lt;/LI&gt;&lt;LI&gt;In the editor, use the "FUNCTION" statement to define your function module.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here's an example of how to define a simple function module in a function pool:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION ZMH_FM_AGETEST.
*"----------------------------------------------------------------------
*"*"Local interface:
*"  TABLES
*"      ET_EMPLOYEES STRUCTURE  ZMH_SOPRAA
*"  IMPORTING
*"     MIN_AGE TYPE I
*"----------------------------------------------------------------------
  SELECT *
    FROM zmh_sopraa
    INTO TABLE et_employees
    WHERE age GT min_age.
ENDFUNCTION.
&lt;/CODE&gt;&lt;/PRE&gt;Note that in the correct syntax, you need to define the input/output 
parameters of the function module in the local interface section. 
Additionally, the table parameter ET_EMPLOYEES should be defined using 
the keyword TABLES.&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 05 Apr 2023 10:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655656#M2015334</guid>
      <dc:creator>RAHEEL_BABAR</dc:creator>
      <dc:date>2023-04-05T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655657#M2015335</link>
      <description>&lt;P&gt;Typo: it's function MODULE.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 11:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655657#M2015335</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-05T11:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655658#M2015336</link>
      <description>&lt;P&gt;Activate all the includes of the function group &lt;STRONG&gt;at the same time&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 11:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655658#M2015336</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-05T11:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655659#M2015337</link>
      <description>&lt;P&gt;Hi Babar,&lt;/P&gt;&lt;P&gt;I have already function group "function pool" created and when I have created the function module , I put it in the function group , which I have created.&lt;/P&gt;&lt;P&gt;And with SE38 when I set the "Type" to "Function pool" is not allowed !!!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 08:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655659#M2015337</guid>
      <dc:creator>mahmood_hammood</dc:creator>
      <dc:date>2023-04-06T08:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655660#M2015338</link>
      <description>&lt;P&gt;sorry I did not understand the first comment, and the second comment how I made it ? maybe you have a blog&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 08:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655660#M2015338</guid>
      <dc:creator>mahmood_hammood</dc:creator>
      <dc:date>2023-04-06T08:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655661#M2015339</link>
      <description>&lt;P&gt;Go to SE37. Enter the name you want for your function module. Click on "CREATE".&lt;/P&gt;&lt;P&gt;In Eclipse, go to File-&amp;gt;New and choose function module.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 15:37:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655661#M2015339</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-04-06T15:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655662#M2015340</link>
      <description>&lt;P&gt;You use SE37 to create a FM. Not SE38.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 15:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655662#M2015340</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2023-04-06T15:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655663#M2015341</link>
      <description>&lt;P&gt;Typo: it's function &lt;STRONG&gt;MODULE&lt;/STRONG&gt;, not function MODEL.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 20:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655663#M2015341</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-06T20:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655664#M2015342</link>
      <description>&lt;P&gt;I became the answer, thank you all&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 07:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/12655664#M2015342</guid>
      <dc:creator>mahmood_hammood</dc:creator>
      <dc:date>2023-04-11T07:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating Function Model in Sap Abap.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/13750371#M2028891</link>
      <description>&lt;P&gt;this worked for me, thanks&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 14:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-function-model-in-sap-abap/m-p/13750371#M2028891</guid>
      <dc:creator>vladST</dc:creator>
      <dc:date>2024-07-03T14:28:19Z</dc:date>
    </item>
  </channel>
</rss>

