<?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: interview questions. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639231#M607499</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;&amp;lt;b&amp;gt;STOP&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;The statement is only intended for use in the INITIALIZATION, &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN, START-OF-SELECTION, and GET events. It   &lt;/P&gt;&lt;P&gt;terminates the current processing block in an executable      &lt;/P&gt;&lt;P&gt;program and triggers the END-OF-SELECTION event. In all other &lt;/P&gt;&lt;P&gt;processing blocks, or when you do not want to trigger the     &lt;/P&gt;&lt;P&gt;END-OF-SELECTION event, you must use EXIT.                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;EXIT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-  Within a loop structure:                                         &lt;/P&gt;&lt;P&gt;   Terminates looop processing (DO, WHILE, LOOP, SELECT).           &lt;/P&gt;&lt;P&gt;-  Within subroutines and other modularization units (but not       &lt;/P&gt;&lt;P&gt;   in a loop structure):                                            &lt;/P&gt;&lt;P&gt;   Leaves the subroutine or modularization unit (FORM, MODULE,      &lt;/P&gt;&lt;P&gt;   FUNCTION, TOP-OF-PAGE, END-OF-PAGE).                             &lt;/P&gt;&lt;P&gt;-  Outside loop structures and modularization units (report         &lt;/P&gt;&lt;P&gt;   processing):                                                     &lt;/P&gt;&lt;P&gt;   Terminates report processing and triggers list display.                                                                                &lt;/P&gt;&lt;P&gt;DATA: SAP_COUNT TYPE I,                                             &lt;/P&gt;&lt;P&gt;      WA_T100 TYPE T100.                                                                                &lt;/P&gt;&lt;P&gt;SELECT * FROM T100 INTO WA_T100 WHERE SPRSL = SY-LANGU AND          &lt;/P&gt;&lt;P&gt;                                      ARBGB = 'DS'.                 &lt;/P&gt;&lt;P&gt;  WRITE / WA_T100-TEXT.                                             &lt;/P&gt;&lt;P&gt;  IF WA_T100-TEXT CS 'SAP'.                                         &lt;/P&gt;&lt;P&gt;    ADD 1 TO SAP_COUNT.                                             &lt;/P&gt;&lt;P&gt;    IF SAP_COUNT = 3.                                               &lt;/P&gt;&lt;P&gt;      EXIT.                                                         &lt;/P&gt;&lt;P&gt;    ENDIF.                                                          &lt;/P&gt;&lt;P&gt;  ENDIF.                                                            &lt;/P&gt;&lt;P&gt;ENDSELECT.                                                                                &lt;/P&gt;&lt;P&gt;If you have a set of nested loops, EXIT only terminates the         &lt;/P&gt;&lt;P&gt;current loop, and processing continues after the corresponding      &lt;/P&gt;&lt;P&gt;END... statement in the next-highest loop.                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONTINUE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Within loop structures like                                                                                &lt;/P&gt;&lt;P&gt;-  DO     ... ENDDO                                          &lt;/P&gt;&lt;P&gt; -  WHILE  ... ENDWHILE                                       &lt;/P&gt;&lt;P&gt; -  LOOP   ... ENDLOOP                                        &lt;/P&gt;&lt;P&gt; -  SELECT ... ENDSELECT                                                                                &lt;/P&gt;&lt;P&gt;CONTINUE terminates the current loop pass, returns the       &lt;/P&gt;&lt;P&gt; processing to the beginning of the loop and starts the next  &lt;/P&gt;&lt;P&gt; loop pass, if there is one.                                                                                &lt;/P&gt;&lt;P&gt;DO loop: Omit an area (10 ... 20)                                                                                &lt;/P&gt;&lt;P&gt;DO 100 TIMES.                                                &lt;/P&gt;&lt;P&gt;   IF SY-INDEX &amp;gt;= 10 AND SY-INDEX &amp;lt;= 20.                      &lt;/P&gt;&lt;P&gt;     CONTINUE.                                                &lt;/P&gt;&lt;P&gt;   ENDIF.                                                     &lt;/P&gt;&lt;P&gt;   ...                                                        &lt;/P&gt;&lt;P&gt; ENDDO.                                                       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcelo Ramos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 18:17:26 GMT</pubDate>
    <dc:creator>marcelo_ramos1</dc:creator>
    <dc:date>2007-08-08T18:17:26Z</dc:date>
    <item>
      <title>interview questions.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639229#M607497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Can any one help me in answering the below questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. How can we update the database table with this format,  AcCeNtUrE. i want to update this field as it is. I know about checking of uppercase &amp;amp; lowercase. I think it dont works in this case. So how can we do this type of update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. what is the use of Exit, Stop, Cancel. how these three will work with in the loop and outside the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramana Prasad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 17:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639229#M607497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T17:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: interview questions.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639230#M607498</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;1) Let us say have a field called company in ur table and you want to upload 'AcCeNtUrE' into this field.. First ensure that the domain for the data element that this field is taking referece of should have Lower Case Check box( At domain level) checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Exit will take you out of loop, if no loop take you out of the program&lt;/P&gt;&lt;P&gt;    stop will take you to end of selection event , this will always take you to end of selection irrespective of with in or out side of the loop.&lt;/P&gt;&lt;P&gt;    continue will continue the loop by skipping the statments after it.  This has no importance out of the loop &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 18:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639230#M607498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T18:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: interview questions.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639231#M607499</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;&amp;lt;b&amp;gt;STOP&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;The statement is only intended for use in the INITIALIZATION, &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN, START-OF-SELECTION, and GET events. It   &lt;/P&gt;&lt;P&gt;terminates the current processing block in an executable      &lt;/P&gt;&lt;P&gt;program and triggers the END-OF-SELECTION event. In all other &lt;/P&gt;&lt;P&gt;processing blocks, or when you do not want to trigger the     &lt;/P&gt;&lt;P&gt;END-OF-SELECTION event, you must use EXIT.                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;EXIT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-  Within a loop structure:                                         &lt;/P&gt;&lt;P&gt;   Terminates looop processing (DO, WHILE, LOOP, SELECT).           &lt;/P&gt;&lt;P&gt;-  Within subroutines and other modularization units (but not       &lt;/P&gt;&lt;P&gt;   in a loop structure):                                            &lt;/P&gt;&lt;P&gt;   Leaves the subroutine or modularization unit (FORM, MODULE,      &lt;/P&gt;&lt;P&gt;   FUNCTION, TOP-OF-PAGE, END-OF-PAGE).                             &lt;/P&gt;&lt;P&gt;-  Outside loop structures and modularization units (report         &lt;/P&gt;&lt;P&gt;   processing):                                                     &lt;/P&gt;&lt;P&gt;   Terminates report processing and triggers list display.                                                                                &lt;/P&gt;&lt;P&gt;DATA: SAP_COUNT TYPE I,                                             &lt;/P&gt;&lt;P&gt;      WA_T100 TYPE T100.                                                                                &lt;/P&gt;&lt;P&gt;SELECT * FROM T100 INTO WA_T100 WHERE SPRSL = SY-LANGU AND          &lt;/P&gt;&lt;P&gt;                                      ARBGB = 'DS'.                 &lt;/P&gt;&lt;P&gt;  WRITE / WA_T100-TEXT.                                             &lt;/P&gt;&lt;P&gt;  IF WA_T100-TEXT CS 'SAP'.                                         &lt;/P&gt;&lt;P&gt;    ADD 1 TO SAP_COUNT.                                             &lt;/P&gt;&lt;P&gt;    IF SAP_COUNT = 3.                                               &lt;/P&gt;&lt;P&gt;      EXIT.                                                         &lt;/P&gt;&lt;P&gt;    ENDIF.                                                          &lt;/P&gt;&lt;P&gt;  ENDIF.                                                            &lt;/P&gt;&lt;P&gt;ENDSELECT.                                                                                &lt;/P&gt;&lt;P&gt;If you have a set of nested loops, EXIT only terminates the         &lt;/P&gt;&lt;P&gt;current loop, and processing continues after the corresponding      &lt;/P&gt;&lt;P&gt;END... statement in the next-highest loop.                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONTINUE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Within loop structures like                                                                                &lt;/P&gt;&lt;P&gt;-  DO     ... ENDDO                                          &lt;/P&gt;&lt;P&gt; -  WHILE  ... ENDWHILE                                       &lt;/P&gt;&lt;P&gt; -  LOOP   ... ENDLOOP                                        &lt;/P&gt;&lt;P&gt; -  SELECT ... ENDSELECT                                                                                &lt;/P&gt;&lt;P&gt;CONTINUE terminates the current loop pass, returns the       &lt;/P&gt;&lt;P&gt; processing to the beginning of the loop and starts the next  &lt;/P&gt;&lt;P&gt; loop pass, if there is one.                                                                                &lt;/P&gt;&lt;P&gt;DO loop: Omit an area (10 ... 20)                                                                                &lt;/P&gt;&lt;P&gt;DO 100 TIMES.                                                &lt;/P&gt;&lt;P&gt;   IF SY-INDEX &amp;gt;= 10 AND SY-INDEX &amp;lt;= 20.                      &lt;/P&gt;&lt;P&gt;     CONTINUE.                                                &lt;/P&gt;&lt;P&gt;   ENDIF.                                                     &lt;/P&gt;&lt;P&gt;   ...                                                        &lt;/P&gt;&lt;P&gt; ENDDO.                                                       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcelo Ramos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 18:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639231#M607499</guid>
      <dc:creator>marcelo_ramos1</dc:creator>
      <dc:date>2007-08-08T18:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: interview questions.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639232#M607500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;But if i check this Lower case check box, i think it will update as 'accenture'. but my requirement is to update the same like AcCeNtUrE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can we do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramana Prasad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 19:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639232#M607500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T19:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: interview questions.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639233#M607501</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;/P&gt;&lt;P&gt;   if you check this box. it means that take as it is.. normally field values will be converted into upper case automaticall.. if you check this box it will ensure that the data is saved as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 19:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interview-questions/m-p/2639233#M607501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T19:56:15Z</dc:date>
    </item>
  </channel>
</rss>

