<?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: Return code (SY-SUBRC) for the EXCEPTION will not be processed in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717217#M894827</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Extended syntax check expects to use the SY-SUBRC check immediately after the CALL FUNCTION command, if you are setting the EXCEPTION parameters. Hence the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if the programming logic is already working fine and needs no change, then you can eliminate this error by adding a &lt;EM&gt;"#EC FB_RC&lt;/EM&gt; at the line which contains the EXCEPTIONS parameter in the CALL FUNCTION interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 09:42:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-25T09:42:34Z</dc:date>
    <item>
      <title>Return code (SY-SUBRC) for the EXCEPTION will not be processed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717216#M894826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; when I was doing the EPC check i have approached this messgae.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Return code (SY-SUBRC) for the EXCEPTION will not be processed after CALL FUNCTION&lt;/P&gt;&lt;P&gt; 'CU_READ_RGDIR'&lt;/P&gt;&lt;P&gt;(You can turn off this check by setting all EXCEPTIONS to 0)&lt;/P&gt;&lt;P&gt;(The message can be hidden with "#EC *)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers on how to handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rohini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 08:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717216#M894826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T08:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Return code (SY-SUBRC) for the EXCEPTION will not be processed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717217#M894827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Extended syntax check expects to use the SY-SUBRC check immediately after the CALL FUNCTION command, if you are setting the EXCEPTION parameters. Hence the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if the programming logic is already working fine and needs no change, then you can eliminate this error by adding a &lt;EM&gt;"#EC FB_RC&lt;/EM&gt; at the line which contains the EXCEPTIONS parameter in the CALL FUNCTION interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 09:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717217#M894827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T09:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Return code (SY-SUBRC) for the EXCEPTION will not be processed</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717218#M894828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try doing something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS: hrpay.

DATA: w_pernr              TYPE          p0000-pernr ,
      w_buffer             TYPE          hrpay_buffer,
      w_no_authority_check TYPE          xfeld       ,
      w_molga              TYPE          t500l-molga ,

      t_in_rgdir           TYPE TABLE OF pc261.


CALL FUNCTION 'CU_READ_RGDIR'
  EXPORTING
    persnr             = w_pernr
    buffer             = w_buffer
    no_authority_check = w_no_authority_check
  IMPORTING
    molga              = w_molga
  TABLES
    in_rgdir           = t_in_rgdir
  EXCEPTIONS
    OTHERS             = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 14:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-code-sy-subrc-for-the-exception-will-not-be-processed/m-p/3717218#M894828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T14:45:36Z</dc:date>
    </item>
  </channel>
</rss>

