<?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: runtime error in functional module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451787#M829244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;before am gone to se80 to activate the function group , am  activate the function module only  not activate the function group .&lt;/P&gt;&lt;P&gt;now am activate the function group they could not be depict the error .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 10:03:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T10:03:10Z</dc:date>
    <item>
      <title>runtime error in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451785#M829242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;they given below program is a &lt;STRONG&gt;function module calling program&lt;/STRONG&gt;.while am execute this program they could display the message like as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What happened?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;Error in ABAP application program.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;The current ABAP program "YSUSFUN1" had to be terminated because one of the&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;statements could not be executed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;This is probably due to an error in the ABAP program.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;In program "SAPLYGROUP3 ", the following syntax error occurred&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;in the Include "LYGROUP3U01 " in line 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;"The main program of the function "Y_INTERNAL1" does not begin with "FU"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;"NCTION-POOL"."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;Author and last person to change the Include are:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;Author "BASIS "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;Last changed by "BASIS "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error analysis&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;In program "SAPLYGROUP3 ", the following syntax error occurred:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;"The main program of the function "Y_INTERNAL1" does not begin with "FU"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;"NCTION-POOL"."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;" "&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YSUSFUN1.&lt;/P&gt;&lt;P&gt;TABLES YSUSTAB1.&lt;/P&gt;&lt;P&gt;DATA IT1 LIKE YSUSTAB1 OCCURS 2 .&lt;/P&gt;&lt;P&gt;SELECT * FROM YSUSTAB1 INTO TABLE IT1.&lt;/P&gt;&lt;P&gt;LOOP AT IT1 INTO YSUSTAB1.&lt;/P&gt;&lt;P&gt;WRITE: / YSUSTAB1-NAME, YSUSTAB1-ROLLNO,YSUSTAB1-PHONENO.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Y_INTERNAL1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    IT4           =  IT1  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT IT1 INTO YSUSTAB1.&lt;/P&gt;&lt;P&gt;    WRITE: / YSUSTAB1-NAME, YSUSTAB1-ROLLNO, YSUSTAB1-PHONENO.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) &lt;/P&gt;&lt;P&gt;the given below program is function module definition. while at that time of execution they could display the message as &lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Syntax error in program&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------------" /&gt;*&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Source code   LYGROUP3U01                                    Line     1&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  *&lt;STRONG&gt;The main program of the function "Y_INTERNAL1" does not begin with&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;  *&lt;STRONG&gt;"FUNCTION-POOL".&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;**&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION Y_INTERNAL1.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      IT4 STRUCTURE  YSUSTAB1&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;LOOP AT IT4.&lt;/P&gt;&lt;P&gt;WRITE : IT4-name, it4-phoneno, it4-rollno.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 09:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451785#M829242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T09:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: runtime error in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451786#M829243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;activate the function group and try again.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 09:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451786#M829243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T09:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: runtime error in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451787#M829244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;before am gone to se80 to activate the function group , am  activate the function module only  not activate the function group .&lt;/P&gt;&lt;P&gt;now am activate the function group they could not be depict the error .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:03:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451787#M829244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: runtime error in functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451788#M829245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-functional-module/m-p/3451788#M829245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:05:54Z</dc:date>
    </item>
  </channel>
</rss>

