<?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 Return Values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465240#M1416221</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;Where the sy-subrc values get stored?&lt;/P&gt;&lt;P&gt;can anyone explain me??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;arsgh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2010 03:56:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-05T03:56:26Z</dc:date>
    <item>
      <title>Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465240#M1416221</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;Where the sy-subrc values get stored?&lt;/P&gt;&lt;P&gt;can anyone explain me??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;arsgh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 03:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465240#M1416221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T03:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465241#M1416222</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;sy-subrc is the variable which have the return value and we use directly in our program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search SDN on system variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also , check SYST database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 04:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465241#M1416222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T04:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465242#M1416223</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;&lt;EM&gt;I want to know what is the meaning when sy-subrc = 4, 8 ,16,etc....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;and where i can get???&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can check SAP help document , to know the sy-subrc values a keyword it returns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For success , it is 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Harsh Bhalla on Jan 5, 2010 9:51 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 04:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465242#M1416223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T04:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465243#M1416224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After each statement, ABAP returns a Return Code that is stored in global variable SY-SUBRC. If it equals zero, then the statement was succesful; otherwise, an error occured. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a very important thing in ABAP programming; you should always check SY-SUBRC to make sure that there were no errors during the execution of statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this wiki.&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/ABAP/Different" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/ABAP/Different&lt;/A&gt;&lt;EM&gt;RETURN&lt;/EM&gt;(sy-subrc)+values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 04:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465243#M1416224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T04:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465244#M1416225</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;Thanks for the replies.&lt;/P&gt;&lt;P&gt;I want to know what is the meaning when sy-subrc = 4, 8 ,16,etc....&lt;/P&gt;&lt;P&gt;and where i can get???&lt;/P&gt;&lt;P&gt;SYST is not table its a structure....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;arsgh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 04:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465244#M1416225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T04:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Return Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465245#M1416226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are not stored in any database table. The sy-subrc values are populated in the runtime in the structure SYST and if you want to know the meaning of what each value of sy-subrc of a particular statement, hit F1 and check the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 04:20:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-values/m-p/6465245#M1416226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T04:20:56Z</dc:date>
    </item>
  </channel>
</rss>

