<?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 can anyone explain me the abap code ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784133#M337794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one explain me about this code please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF rsallowedchar-allowchar IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE&lt;/P&gt;&lt;P&gt;           allowchar&lt;/P&gt;&lt;P&gt;      INTO (rsallowedchar-allowchar)&lt;/P&gt;&lt;P&gt;      FROM rsallowedchar&lt;/P&gt;&lt;P&gt;      WHERE allowkey = 'S'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Dec 2006 10:22:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-13T10:22:28Z</dc:date>
    <item>
      <title>can anyone explain me the abap code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784133#M337794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one explain me about this code please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF rsallowedchar-allowchar IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE&lt;/P&gt;&lt;P&gt;           allowchar&lt;/P&gt;&lt;P&gt;      INTO (rsallowedchar-allowchar)&lt;/P&gt;&lt;P&gt;      FROM rsallowedchar&lt;/P&gt;&lt;P&gt;      WHERE allowkey = 'S'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 10:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784133#M337794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T10:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: can anyone explain me the abap code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784134#M337795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this check if the field rsallowedchar-allowchar is empty &lt;/P&gt;&lt;P&gt;before it does the select&lt;/P&gt;&lt;P&gt;if it is empty it selects from table rsallowedchar the first value it finds&lt;/P&gt;&lt;P&gt;into field rsallowedchar-allowchar&lt;/P&gt;&lt;P&gt;where the field allowkey in table rsallowedchar is equal to S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 10:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784134#M337795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T10:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: can anyone explain me the abap code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784135#M337796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF rsallowedchar-allowchar IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         if the above condition is true it wil get the single record from rsallowedchar&lt;/P&gt;&lt;P&gt;          into rsallowedchar-allowchar where the condition allowkey = 's'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE&lt;/P&gt;&lt;P&gt;allowchar&lt;/P&gt;&lt;P&gt;INTO (rsallowedchar-allowchar)&lt;/P&gt;&lt;P&gt;FROM rsallowedchar&lt;/P&gt;&lt;P&gt;WHERE allowkey = 'S'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 10:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784135#M337796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T10:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: can anyone explain me the abap code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784136#M337797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkata Raju&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If  field  allowchar is initial and field allowkey is equal to 's' then &lt;/P&gt;&lt;P&gt;a single record is fetched from Table rsallowedchar and inserted into &lt;/P&gt;&lt;P&gt;field allowchar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye -&lt;/P&gt;&lt;P&gt;Naresh-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 10:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784136#M337797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T10:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: can anyone explain me the abap code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784137#M337798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'rsallowedchar' is a table. 'allowchar' is a field in the structure rsallowedchar. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF rsallowedchar-allowchar IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this line does a check whether the field allowchar is empty or not. If it is empty then a selection is made from the table reading one row of records matching the condition when allowkey is 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gave a clear explanation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 10:41:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-anyone-explain-me-the-abap-code/m-p/1784137#M337798</guid>
      <dc:creator>Sathish</dc:creator>
      <dc:date>2006-12-13T10:41:36Z</dc:date>
    </item>
  </channel>
</rss>

