<?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 interview ques1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358371#M521368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,...&lt;/P&gt;&lt;P&gt;i would like to know the ans for the following.. kindly help me&lt;/P&gt;&lt;P&gt;what is sy-batch?&lt;/P&gt;&lt;P&gt;what is diff bt check, continue ?&lt;/P&gt;&lt;P&gt;what is diff bt exit and stop?&lt;/P&gt;&lt;P&gt;what is binary search? give me defn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 09:37:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T09:37:29Z</dc:date>
    <item>
      <title>interview ques1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358371#M521368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,...&lt;/P&gt;&lt;P&gt;i would like to know the ans for the following.. kindly help me&lt;/P&gt;&lt;P&gt;what is sy-batch?&lt;/P&gt;&lt;P&gt;what is diff bt check, continue ?&lt;/P&gt;&lt;P&gt;what is diff bt exit and stop?&lt;/P&gt;&lt;P&gt;what is binary search? give me defn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 09:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358371#M521368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T09:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: interview ques1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358372#M521369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;sy-batch is used to check the program running in background.&lt;/P&gt;&lt;P&gt;Check statement, checks the condition with in a loop and if it satisfies the condition, the control moves to next statement in the loop. Otherwise, it terminates the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Continue statement, acts like goto statement. If the condition is true, it processes the remaining statements and if the condition is false, then the control moves to the top of loop.&lt;/P&gt;&lt;P&gt;At-Line selection, At user-command etc..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In at line-selection system defined fcode will be generated In at user-command we need to define the fcode and fkey manually then only it will triggers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exit will come out of the current subroutine but then it will execute the other subroutines under the event.&lt;/P&gt;&lt;P&gt;stop will come out of the event itself and will not execute any subroutines in an event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;perform gf1.&lt;/P&gt;&lt;P&gt;perform gf2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An exit command in form gf1 will come out of form gf1 but execute form gf2.&lt;/P&gt;&lt;P&gt;A stop command in form gf1 will come out of start-of-selection event and go to end-of-selection event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When a programmer uses the read command, the table is sequentially searched. This slows down the processing. Instead of this, use the binary search addition. The binary search algorithm helps faster search of a value in an internal table. It is advisable to sort the internal table before doing a binary search. Binary search repeatedly divides the search interval in half. If the value to be searched is less than the item in the middle of the interval, the search is narrowed to the lower half, otherwise the search is narrowed to the upper half. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 09:47:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358372#M521369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T09:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: interview ques1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358373#M521370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi selva..&lt;/P&gt;&lt;P&gt;1) Check:&lt;/P&gt;&lt;P&gt;If the statement CHECK is executed in a loop and logical expression is incorrect, the statement CHECK immediately terminates the current loop pass and the program continues with the next loop pass.&lt;/P&gt;&lt;P&gt;Continue:&lt;/P&gt;&lt;P&gt;The CONTINUE statement can only be used in loops. If it is used, the current loop pass is ended immediately and the program flow is continued with the next loop pass. &lt;/P&gt;&lt;P&gt;2) Exit:&lt;/P&gt;&lt;P&gt;If the EXIT statement is listed within a loop, it leaves the loop by ending the current loop process. Program execution is continued after the closing statement in the loop. &lt;/P&gt;&lt;P&gt;Stop:&lt;/P&gt;&lt;P&gt;The statement STOP is only to be used in executable programs and in the following event blocks: &lt;/P&gt;&lt;P&gt;&amp;#149;	AT SELECTION-SCREEN (without additions) &lt;/P&gt;&lt;P&gt;&amp;#149;	START-OF-SELECTION &lt;/P&gt;&lt;P&gt;&amp;#149;	GET &lt;/P&gt;&lt;P&gt;You leave these event blocks via STOP, and the runtime environment triggers the event END-OF-SELECTION. &lt;/P&gt;&lt;P&gt;3) Sy-batch:  is used to check the programm running in back &lt;/P&gt;&lt;P&gt;ground .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 09:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-ques1/m-p/2358373#M521370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T09:57:50Z</dc:date>
    </item>
  </channel>
</rss>

