<?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: Answer some more questions on Basic ABAP? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486098#M560659</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;   why do u say it as as select single * for second question?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jul 2007 11:44:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-09T11:44:45Z</dc:date>
    <item>
      <title>Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486091#M560652</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;    Answer the Following,&lt;/P&gt;&lt;P&gt;1)at wch loop "ABC' will be printed.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;do 8 times.&lt;/P&gt;&lt;P&gt;write : ' '.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;skip.&lt;/P&gt;&lt;P&gt;write : 'ABC'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;a)8&lt;/P&gt;&lt;P&gt;b)9&lt;/P&gt;&lt;P&gt;c)10&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)to sort itab which of the following field will help(more than 1 answer id correct)&lt;/P&gt;&lt;P&gt; data : begin of itab,&lt;/P&gt;&lt;P&gt;        a)  field(10) type p,&lt;/P&gt;&lt;P&gt;        b)  field(10) type c,&lt;/P&gt;&lt;P&gt;        c)  field(10) type n,&lt;/P&gt;&lt;P&gt;        d)  field(10) type x,&lt;/P&gt;&lt;P&gt;          end of itab,&lt;/P&gt;&lt;P&gt;3)which SQL stmt does not LOCK the corresponding DB entries?&lt;/P&gt;&lt;P&gt;a)select single *&lt;/P&gt;&lt;P&gt;b)insert&lt;/P&gt;&lt;P&gt;c)select single update&lt;/P&gt;&lt;P&gt;d)modify&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)data : fielda(10) value 'ABCD'.&lt;/P&gt;&lt;P&gt;if fielda CO 'ABCD'.&lt;/P&gt;&lt;P&gt;what is the value of sy-fdpos.&lt;/P&gt;&lt;P&gt;a)0&lt;/P&gt;&lt;P&gt;b)ABCD&lt;/P&gt;&lt;P&gt;c)A&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) to delete the contents of itab(with header line)&lt;/P&gt;&lt;P&gt;a)clear itab&lt;/P&gt;&lt;P&gt;b)clear itab[]&lt;/P&gt;&lt;P&gt;c)refresh itab&lt;/P&gt;&lt;P&gt;d)refresh itab[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)what will be the value of F1 after submiting&lt;/P&gt;&lt;P&gt;program abc.&lt;/P&gt;&lt;P&gt;data :F1.&lt;/P&gt;&lt;P&gt;F1 = ' '.&lt;/P&gt;&lt;P&gt;perform out.&lt;/P&gt;&lt;P&gt;submit abc1 using F1 exporting list to memory id 'xyz'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program abc1.&lt;/P&gt;&lt;P&gt;form out.&lt;/P&gt;&lt;P&gt;data : F1.&lt;/P&gt;&lt;P&gt;F1 = '1'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)space&lt;/P&gt;&lt;P&gt;b)1&lt;/P&gt;&lt;P&gt;c)run time error&lt;/P&gt;&lt;P&gt;d)0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points will be given for all correct answers....!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 09:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486091#M560652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T09:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486092#M560653</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)at wch loop "ABC' will be printed.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;do 8 times.&lt;/P&gt;&lt;P&gt;write : ' '.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;skip.&lt;/P&gt;&lt;P&gt;write : 'ABC'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;a)8&lt;/P&gt;&lt;P&gt;b)9&lt;/P&gt;&lt;P&gt;c)10&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;(D)&amp;lt;/b&amp;gt; DO is performed every time till the end of itab lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)to sort itab which of the following field will help(more than 1 answer id correct)&lt;/P&gt;&lt;P&gt;data : begin of itab,&lt;/P&gt;&lt;P&gt;a) field(10) type p,&lt;/P&gt;&lt;P&gt;b) field(10) type c,&lt;/P&gt;&lt;P&gt;c) field(10) type n,&lt;/P&gt;&lt;P&gt;d) field(10) type x,&lt;/P&gt;&lt;P&gt;end of itab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Should be all as all are character type data.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;3)which SQL stmt does not LOCK the corresponding DB entries?&lt;/P&gt;&lt;P&gt;a)select single *&lt;/P&gt;&lt;P&gt;b)insert&lt;/P&gt;&lt;P&gt;c)select single update&lt;/P&gt;&lt;P&gt;d)modify&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;(A)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;4)data : fielda(10) value 'ABCD'.&lt;/P&gt;&lt;P&gt;if fielda CO 'ABCD'.&lt;/P&gt;&lt;P&gt;what is the value of sy-fdpos.&lt;/P&gt;&lt;P&gt;a)0&lt;/P&gt;&lt;P&gt;b)ABCD&lt;/P&gt;&lt;P&gt;c)A&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;None of them it will be 4&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;5) to delete the contents of itab(with header line)&lt;/P&gt;&lt;P&gt;a)clear itab&lt;/P&gt;&lt;P&gt;b)clear itab[]&lt;/P&gt;&lt;P&gt;c)refresh itab&lt;/P&gt;&lt;P&gt;d)refresh itab[]&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;You need both (A) (B) or (C) (D) Refresh does not clear the headerline.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;6)what will be the value of F1 after submiting&lt;/P&gt;&lt;P&gt;program abc.&lt;/P&gt;&lt;P&gt;data :F1.&lt;/P&gt;&lt;P&gt;F1 = ' '.&lt;/P&gt;&lt;P&gt;perform out.&lt;/P&gt;&lt;P&gt;submit abc1 using F1 exporting list to memory id 'xyz'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program abc1.&lt;/P&gt;&lt;P&gt;form out.&lt;/P&gt;&lt;P&gt;data : F1.&lt;/P&gt;&lt;P&gt;F1 = '1'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)space&lt;/P&gt;&lt;P&gt;b)1&lt;/P&gt;&lt;P&gt;c)run time error&lt;/P&gt;&lt;P&gt;d)0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;(C)&amp;lt;/b&amp;gt; I think as there is no data in the program to accept the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 09:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486092#M560653</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-09T09:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486093#M560654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)at wch loop "ABC' will be printed.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;do 8 times.&lt;/P&gt;&lt;P&gt;write : ' '.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;skip.&lt;/P&gt;&lt;P&gt;write : 'ABC'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;a)8&lt;/P&gt;&lt;P&gt;b)9&lt;/P&gt;&lt;P&gt;c)10&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Answer: The first 8 loops are printed 'space' and then at the 9th loop 'ABC' is printed.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)to sort itab which of the following field will help(more than 1 answer id correct)&lt;/P&gt;&lt;P&gt;data : begin of itab,&lt;/P&gt;&lt;P&gt;a) field(10) type p,&lt;/P&gt;&lt;P&gt;b) field(10) type c,&lt;/P&gt;&lt;P&gt;c) field(10) type n,&lt;/P&gt;&lt;P&gt;d) field(10) type x,&lt;/P&gt;&lt;P&gt;end of itab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SORT can be done on all the 4 options, here is the syntax where we can sort even Char fields. &lt;/P&gt;&lt;P&gt;SORT itab [ASCENDING|DESCENDING] &lt;/P&gt;&lt;P&gt;          [AS TEXT] &lt;/P&gt;&lt;P&gt;          [STABLE] &lt;/P&gt;&lt;P&gt;          [sort_key]. &lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;3)which SQL stmt does not LOCK the corresponding DB entries?&lt;/P&gt;&lt;P&gt;a)select single *&lt;/P&gt;&lt;P&gt;b)insert&lt;/P&gt;&lt;P&gt;c)select single update&lt;/P&gt;&lt;P&gt;d)modify&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;It's select single *.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)data : fielda(10) value 'ABCD'.&lt;/P&gt;&lt;P&gt;if fielda CO 'ABCD'.&lt;/P&gt;&lt;P&gt;what is the value of sy-fdpos.&lt;/P&gt;&lt;P&gt;a)0&lt;/P&gt;&lt;P&gt;b)ABCD&lt;/P&gt;&lt;P&gt;c)A&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The answer for SY-FDPOS is 4.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) to delete the contents of itab(with header line)&lt;/P&gt;&lt;P&gt;a)clear itab&lt;/P&gt;&lt;P&gt;b)clear itab[]&lt;/P&gt;&lt;P&gt;c)refresh itab&lt;/P&gt;&lt;P&gt;d)refresh itab[]&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REFRESH ITAB[].&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)what will be the value of F1 after submiting&lt;/P&gt;&lt;P&gt;program abc.&lt;/P&gt;&lt;P&gt;data :F1.&lt;/P&gt;&lt;P&gt;F1 = ' '.&lt;/P&gt;&lt;P&gt;perform out.&lt;/P&gt;&lt;P&gt;submit abc1 using F1 exporting list to memory id 'xyz'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program abc1.&lt;/P&gt;&lt;P&gt;form out.&lt;/P&gt;&lt;P&gt;data : F1.&lt;/P&gt;&lt;P&gt;F1 = '1'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)space&lt;/P&gt;&lt;P&gt;b)1&lt;/P&gt;&lt;P&gt;c)run time error&lt;/P&gt;&lt;P&gt;d)0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;It's run time error.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 10:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486093#M560654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T10:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486094#M560655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Asha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. It prints ABC for each and every loop i.e., for all the records in the internal table "itab" but after 8 spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. You can use any of the four fields to sort. But you have to add OCCURS clause to the data statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. As per me its a... select single *...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. None of the answers given by you. Even sy-subrc will be not equal to zero if you define it as data : fielda(10) value 'ABCD'. You have to define it as data: fielda(4) value 'ABCD'. In order to get sy-subrc = 0 and in this case, sy-fdpos = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. clear itab[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. It gives Syntax error, as there is no definition for subroutine &amp;lt;b&amp;gt;out&amp;lt;/b&amp;gt; in program abc.&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;Phani.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sivapuram Phani Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 10:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486094#M560655</guid>
      <dc:creator>PS_1978</dc:creator>
      <dc:date>2007-07-09T10:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486095#M560656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Asha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1-Never prints&lt;/P&gt;&lt;P&gt;2-B&lt;/P&gt;&lt;P&gt;3-A&lt;/P&gt;&lt;P&gt;4-What is FIElDA CO&lt;/P&gt;&lt;P&gt;5-B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 10:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486095#M560656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T10:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486096#M560657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6-Give Errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 11:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486096#M560657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T11:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486097#M560658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)at wch loop "ABC' will be printed.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;do 8 times.&lt;/P&gt;&lt;P&gt;write : ' '.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;skip.&lt;/P&gt;&lt;P&gt;write : 'ABC'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;a)8&lt;/P&gt;&lt;P&gt;b)9&lt;/P&gt;&lt;P&gt;c)10&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer : 'ABC' s printed as many record s there in itab but each 'ABC' printed after 8 spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)to sort itab which of the following field will help(more than 1 answer id correct)&lt;/P&gt;&lt;P&gt;data : begin of itab,&lt;/P&gt;&lt;P&gt;a) field(10) type p,&lt;/P&gt;&lt;P&gt;b) field(10) type c,&lt;/P&gt;&lt;P&gt;c) field(10) type n,&lt;/P&gt;&lt;P&gt;d) field(10) type x,&lt;/P&gt;&lt;P&gt;end of itab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer : a) field(10) type p and&lt;/P&gt;&lt;P&gt;              c) field(10) type n&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)which SQL stmt does not LOCK the corresponding DB entries?&lt;/P&gt;&lt;P&gt;a)select single *&lt;/P&gt;&lt;P&gt;b)insert&lt;/P&gt;&lt;P&gt;c)select single update&lt;/P&gt;&lt;P&gt;d)modify&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer : Select single *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)data : fielda(10) value 'ABCD'.&lt;/P&gt;&lt;P&gt;if fielda CO 'ABCD'.&lt;/P&gt;&lt;P&gt;what is the value of sy-fdpos.&lt;/P&gt;&lt;P&gt;a)0&lt;/P&gt;&lt;P&gt;b)ABCD&lt;/P&gt;&lt;P&gt;c)A&lt;/P&gt;&lt;P&gt;d)1&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Answer : Sy-fdpos = 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) to delete the contents of itab(with header line)&lt;/P&gt;&lt;P&gt;a)clear itab&lt;/P&gt;&lt;P&gt;b)clear itab[]&lt;/P&gt;&lt;P&gt;c)refresh itab&lt;/P&gt;&lt;P&gt;d)refresh itab[]&lt;/P&gt;&lt;P&gt;Answer : clear itab[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)what will be the value of F1 after submiting&lt;/P&gt;&lt;P&gt;program abc.&lt;/P&gt;&lt;P&gt;data :F1.&lt;/P&gt;&lt;P&gt;F1 = ' '.&lt;/P&gt;&lt;P&gt;perform out.&lt;/P&gt;&lt;P&gt;submit abc1 using F1 exporting list to memory id 'xyz'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program abc1.&lt;/P&gt;&lt;P&gt;form out.&lt;/P&gt;&lt;P&gt;data : F1.&lt;/P&gt;&lt;P&gt;F1 = '1'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)space&lt;/P&gt;&lt;P&gt;b)1&lt;/P&gt;&lt;P&gt;c)run time error&lt;/P&gt;&lt;P&gt;d)0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;answer : c)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Darshana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 11:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486097#M560658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T11:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486098#M560659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;   why do u say it as as select single * for second question?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 11:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486098#M560659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T11:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486099#M560660</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;    field a(10)---is decalration for variable 'a' which of type string.&lt;/P&gt;&lt;P&gt;   CO----is a string which means Contains Only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 11:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486099#M560660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T11:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Answer some more questions on Basic ABAP?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486100#M560661</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;   thanks for all your answers....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 11:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-some-more-questions-on-basic-abap/m-p/2486100#M560661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T11:46:58Z</dc:date>
    </item>
  </channel>
</rss>

