<?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: what is the difference between syntax error runtime error? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486551#M838285</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;Syntax error:&lt;/P&gt;&lt;P&gt;A syntax error refers to an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language.&lt;/P&gt;&lt;P&gt;If a syntax error is encountered during compilation it must be corrected if the source code is to be successfully compiled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error:&lt;/P&gt;&lt;P&gt;An error that occurs during the execution of a program. In contrast, Syntax errors occur while a program is being compiled. Runtime errors indicate bugs in the program or problems that the designers had anticipated but could do nothing about. For example, running out of memory will often cause a runtime error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that runtime errors differ from bombs or crashes in that you can often recover gracefully from a runtime error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Mar 2008 06:03:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-11T06:03:56Z</dc:date>
    <item>
      <title>what is the difference between syntax error runtime error?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486547#M838281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference between syntax error runtime error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 05:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486547#M838281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T05:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between syntax error runtime error?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486548#M838282</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;Syntax error means you are not using proper syntx in coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error means syntax is correct but you are trying to do some operation whih is logically not possible like &lt;/P&gt;&lt;P&gt;you are having a FM with 5 parameters and both of them are necessary to pass and you are calling it without passing them then it raise runtime error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a = 5 % 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 06:00:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486548#M838282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T06:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between syntax error runtime error?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486549#M838283</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;A program with a syntax error cannot be executed.&lt;/P&gt;&lt;P&gt;The program with a runtime error can be executed but dumps under certain conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: You have a division statement in your program. If for some reason the denominator becomes zero then you will get a runtime error (something like DIVISION_BY_ZERO).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax errors are &lt;STRONG&gt;static&lt;/STRONG&gt; error that can be detected by the compiler.&lt;/P&gt;&lt;P&gt;Runtime errors are &lt;STRONG&gt;dynamic&lt;/STRONG&gt; error that cannot be detected by the compiler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 06:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486549#M838283</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-03-11T06:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between syntax error runtime error?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486550#M838284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;syntax error: if u have done mistake in declaring a particular predefined type then it gives syntax error.&lt;/P&gt;&lt;P&gt;for example: if u have done any mistake in declaration i.e instead of ATLINE-SELECTION U WRITE AT LINE SELECTION.....IT GIVES SYNTAX ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;runtime error:the error which occurs during runtime.....&lt;/P&gt;&lt;P&gt;for example: if u give 5/0...then it gives runtime error.&lt;/P&gt;&lt;P&gt;if u declare a internal table with 5 feilds and u select 4 feilds and try to place in internal table...it gives runtime error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 06:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486550#M838284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T06:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between syntax error runtime error?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486551#M838285</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;Syntax error:&lt;/P&gt;&lt;P&gt;A syntax error refers to an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language.&lt;/P&gt;&lt;P&gt;If a syntax error is encountered during compilation it must be corrected if the source code is to be successfully compiled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error:&lt;/P&gt;&lt;P&gt;An error that occurs during the execution of a program. In contrast, Syntax errors occur while a program is being compiled. Runtime errors indicate bugs in the program or problems that the designers had anticipated but could do nothing about. For example, running out of memory will often cause a runtime error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that runtime errors differ from bombs or crashes in that you can often recover gracefully from a runtime error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 06:03:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-syntax-error-runtime-error/m-p/3486551#M838285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T06:03:56Z</dc:date>
    </item>
  </channel>
</rss>

