<?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: Syntax Error after creating enhancements for subroutine in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653097#M1445224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Thomas too!&lt;/P&gt;&lt;P&gt;To be sure to understand, does that mean this line:&lt;/P&gt;&lt;P&gt;&amp;gt; ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL .&lt;/P&gt;&lt;P&gt;has to be replaced with this one:&lt;/P&gt;&lt;P&gt;&amp;gt; ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL STATIC.&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;Thx &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Mar 2010 14:32:02 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2010-03-31T14:32:02Z</dc:date>
    <item>
      <title>Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653090#M1445217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem:&lt;/P&gt;&lt;P&gt;Creating enhancement sections gives a syntax error when creating enhancement options and implementations for a subroutine and then ceating enhancement options and implementations for the call to that same subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;Syntax Error:&lt;/P&gt;&lt;P&gt; "Different number of parameters in FORM and PERFORM (routine: SET_LAYOUT, number of formal parameters: 2, number of actual parameters: 1)&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;Here's the following scenario:&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;A subroutine is defined in a program.&lt;/P&gt;&lt;P&gt;The subroutine is called within the same program.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;I then executed these steps:&lt;/P&gt;&lt;P&gt;&amp;lt;br&amp;gt;	1. Defined an enhancement section around the subroutine definition&lt;/P&gt;&lt;P&gt;&amp;lt;br&amp;gt;	2. Defined an enhancement section around the subroutine call.&lt;/P&gt;&lt;P&gt;&amp;lt;br&amp;gt;	3. Implemented the enhancement section around the subroutine definition and add an additional parameter.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;	Currently, this gives a syntax error as expected, since the call to the subroutine needs 1 more parameter.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;	4. Implemented the enhancement section for the subroutine call.  I change the call in the implementation so it passes the new parameter.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;A syntax check to this gives an error.  The syntax checker is not only checking the new implementation, but also the original subroutine that should have been overwritten.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;The enhancement sections use the same enhancement spot, and the enhancement implementations use the same implementation.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;I tried various combinations of using different enhancement spots and/or implementations, but all give the same syntax error.  I tried separating the subroutine in a different include and  retried my testing, but it still gave the same syntax error.&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;Here's the sample code I first created to try troubleshooting the problem:&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;pre&amp;gt;&lt;/P&gt;&lt;P&gt;ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL .&lt;/P&gt;&lt;P&gt;	PERFORM set_layout&lt;/P&gt;&lt;P&gt;		CHANGING&lt;/P&gt;&lt;P&gt;		wa_layout.&lt;/P&gt;&lt;P&gt;END-ENHANCEMENT-SECTION.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-Start: ZEP_Z_MICHAEL_02----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;$&lt;STRONG&gt;$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENHANCEMENT 2  ZEI_TEST_SECTIONS.&lt;/P&gt;&lt;P&gt;	"inactive version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	PERFORM set_layout&lt;/P&gt;&lt;P&gt;	using 'X'&lt;/P&gt;&lt;P&gt;		CHANGING&lt;/P&gt;&lt;P&gt;		wa_layout.&lt;/P&gt;&lt;P&gt;ENDENHANCEMENT.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-End:   ZEP_Z_MICHAEL_02----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&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;ENHANCEMENT-SECTION ZEP_Z_MICHAEL_01 SPOTS ZES_Z_MICHAEL STATIC .&lt;/P&gt;&lt;P&gt;FORM set_layout&lt;/P&gt;&lt;P&gt;CHANGING p_wa_layout TYPE slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_wa_layout-zebra = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; wa_layout-no_colhead = 'X'..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;p_wa_layout-colwidth_optimize ='X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; wa_layout-window_titlebar = 'Woot'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. "set_layout&lt;/P&gt;&lt;P&gt;END-ENHANCEMENT-SECTION.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-Start: ZEP_Z_MICHAEL_01----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;$&lt;STRONG&gt;$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENHANCEMENT 1  ZEI_TEST_SECTIONS.&lt;/P&gt;&lt;P&gt;	"inactive version&lt;/P&gt;&lt;P&gt;FORM set_layout&lt;/P&gt;&lt;P&gt;using p_test type boolean&lt;/P&gt;&lt;P&gt;CHANGING p_wa_layout TYPE slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_wa_layout-zebra = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; wa_layout-no_colhead = 'X'..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;p_wa_layout-colwidth_optimize ='X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; wa_layout-window_titlebar = 'Woot'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. "set_layout&lt;/P&gt;&lt;P&gt;ENDENHANCEMENT.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$-End:   ZEP_Z_MICHAEL_01----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;$&lt;STRONG&gt;$&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/pre&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;Please let me know if you think I am doing something wrong.  &lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks, &amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;P&gt;&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Michael Herman on Mar 8, 2010 8:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 18:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653090#M1445217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T18:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653091#M1445218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Howdy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you've found, when you create an enhancement, both enhancements get compiled/executed.  In effect you've overloaded the subroutine (as opposed to overriding it), which is not supported in ABAP, hence the compiler just uses the first subroutine with that name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Personally I like Sandra's option of passing via ABAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 23:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653091#M1445218</guid>
      <dc:creator>alex_cook</dc:creator>
      <dc:date>2010-03-08T23:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653092#M1445219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By the way, using a static attribute of a custom class will do the trick too. With that, it's easier to determine where "this memory" is used via the where-used list, though consumes more memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 08:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653092#M1445219</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-09T08:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653093#M1445220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that's the issue.  If 2 forms contain the same name, the syntax error would be: A FORM already exists with the name "SET_LAYOUT".  Besides, the syntax checker doesn't give an error after enhancing the defintion of the subroutine.  It gives an error for the call to the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 15:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653093#M1445220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T15:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653094#M1445221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Last solution, and maybe the best one, pass parameter via ABAP memory: you'll avoid duplicate code or the custom static class.&lt;/P&gt;&lt;P&gt;These are definitely a good solutions, especially since the parameter itself is optional(in my situation). (The actual standard code contains 2 subroutines and both are called by about 14 standard and nonstandard programs, but only a few need to pass a variable with a value).  I would only have to mod the standard code that needs to pass the variable to the subroutine instead of all the code that calls the subroutine.  Thanks Sandra!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would still like to know why enhancing a subroutine interface and calling it gives a syntax error, or if it's simply not supported.  If anyone can answer that question, that would be great.  The tutorials, blogs, forums, and other information on the web doesn't seem to address this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 15:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653094#M1445221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T15:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653095#M1445222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution in this case is to use static enhancement options in both cases. Dynamic options are resolved in IF-clauses that contain also the original source. Hence we get a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thomas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 08:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653095#M1445222</guid>
      <dc:creator>thomas_decker</dc:creator>
      <dc:date>2010-03-31T08:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653096#M1445223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's it!  I was pretty sure I had tried this, but apparently I hadn't.  Thanks Thomas!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 13:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653096#M1445223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T13:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653097#M1445224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Thomas too!&lt;/P&gt;&lt;P&gt;To be sure to understand, does that mean this line:&lt;/P&gt;&lt;P&gt;&amp;gt; ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL .&lt;/P&gt;&lt;P&gt;has to be replaced with this one:&lt;/P&gt;&lt;P&gt;&amp;gt; ENHANCEMENT-SECTION ZEP_Z_MICHAEL_02 SPOTS ZES_Z_MICHAEL STATIC.&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;Thx &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 14:32:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653097#M1445224</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-31T14:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653098#M1445225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Sandra.  That is what did and it worked with no syntax errors!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure if this is getting off topic or not, but the SAP documentation(taken from the SAP help after pressing F1 on the keyword static in ERP6) seems misleading:&lt;/P&gt;&lt;P&gt;"The STATIC addition is intended for the enhancement of data declarations, while the statement ENHANCEMENT-POINT without the STATIC addition is designed for the enhancement of executable coding."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would think the enhancement section ZEP_Z_MICHAEL_02 would fall under the category of executable code, while the enhancement section ZEP_Z_MICHAEL_01 would fall under the category of declarative code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, all the SAP enhancement sections I come accross are dynamic.  The SAP help explains the reasoning for this:&lt;/P&gt;&lt;P&gt;"In contrast to the statement ENHANCEMENT-POINT, the addition STATIC of the statement ENHANCEMENT-SECTION can only be used with maximum caution for changes of data declarations, because a replacement and no completion is carried out. Especially application development within SAP should not use the addition STATIC at all with ENHANCEMENT-SECTION as the change will be active in the entire customer system. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not know what the word "completion" means in the previous quote, so I can't determine why it would matter.  Regardless, if a developer wanted to change a standard subroutine declaration, they would also have to mod an enhancement section to change it to static.  This seems to defeat the purpose of using enhancements, but maybe this scenario is not what enhancements were intended for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 15:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653098#M1445225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-31T15:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error after creating enhancements for subroutine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653099#M1445226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for the references. I prefer Thomas explanation, it's really much more short and simple to understand! &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Mar 2010 16:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-after-creating-enhancements-for-subroutine/m-p/6653099#M1445226</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-03-31T16:21:23Z</dc:date>
    </item>
  </channel>
</rss>

