<?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: Select error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970063#M69475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you say, it is possible that this is an encoding problem.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a simple program to select some records from the table.  Now put the your search value (p_field) similar to one of the value in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say the table contains following entries:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;City&lt;/P&gt;&lt;P&gt;WALTHAM&lt;/P&gt;&lt;P&gt;BOSTON&lt;/P&gt;&lt;P&gt;CAMBRIDGE&lt;/P&gt;&lt;P&gt;WORCESTOR&lt;/P&gt;&lt;P&gt;QUINCY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;You can set this as screen parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   p_field = 'WALTHAM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT * FROM table INTO it_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When this takes you to debugging mode, examine contents of it_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter it_data[1] &amp;amp; p_field in the fields to examine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on the magnifying glass on the right hand side to see the Hexadecimal values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow you to compare what you are entering and what is there in the table, and tell you what you are doing wrong.  You can examine other entries one by one if you don't get hit on first one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Sivaraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jul 2005 15:30:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-22T15:30:10Z</dc:date>
    <item>
      <title>Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970046#M69458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can a simple statement like this one:&lt;/P&gt;&lt;P&gt;                                              &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM tbl_smt INTO ls_smt&lt;/P&gt;&lt;P&gt;  WHERE field = p_field.                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;always&amp;lt;/b&amp;gt; return sy-subrc = 4 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_field is declared &amp;lt;i&amp;gt;like tbl_smt-field&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;and is in fact a CHAR of length 30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tbl_smt contains a few lines with data.&lt;/P&gt;&lt;P&gt;p_field is not a key field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 14:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970046#M69458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T14:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970047#M69459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How is the value of field stored in the database?  &lt;/P&gt;&lt;P&gt;Is it stored with leading zeros and you are hitting it with a value like 1234?  For example in the material master table MARA.  The matnr field is 18 characters,  if the material number is a numeric value then in the DB it looks like this '000000000000001234'.   In you select statement, you must make sure that you are hitting it with the same format.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 14:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970047#M69459</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T14:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970048#M69460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, the field is a char field, storing simple city names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 14:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970048#M69460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T14:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970049#M69461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the field case-sensitive?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 14:57:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970049#M69461</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T14:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970050#M69462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 14:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970050#M69462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T14:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970051#M69463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also check whether the field's tbl_smt-field domain has a conversion routine. Goto the domain and copy the routine name for example ALPHA. &lt;/P&gt;&lt;P&gt;Now go to SE37 and check for &lt;STRONG&gt;ALPHA&lt;/STRONG&gt;. You will get two function modules like CONVERSION_EXIT_ALPHA_INPUT and &lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT. The first one is used to convert to internal and other one to external. You have to use the INPUT function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970051#M69463</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-07-22T15:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970052#M69464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:00:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970052#M69464</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970053#M69465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. It is possible.&lt;/P&gt;&lt;P&gt;Check the Domain and you can find a checkbox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970053#M69465</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-07-22T15:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970054#M69466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, the domain does not have a conversion routine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970054#M69466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970055#M69467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the domain TEXT40.   Under the output characteristics,  you see a checkbox, that says lowercase.  This means that the system will not translate it to uppercase when saved to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:02:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970055#M69467</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T15:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970056#M69468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your field has a domain like this, then you must hit the db with exactly the case used in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970056#M69468</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T15:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970057#M69469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The "lowercase" checkbox is not checked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970057#M69469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970058#M69470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The "Lowercase" checkbox isn't checked, eather.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970058#M69470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970059#M69471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could it be an issue of encoding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970059#M69471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970060#M69472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post the values of the field as they are exactly from the database.  Also post your select statement as well as the parameter statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970060#M69472</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T15:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970061#M69473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SE16 doesn't return any values eather, when entering in the select-option corresponding to &amp;lt;i&amp;gt;field&amp;lt;/i&amp;gt; a value that exists in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970061#M69473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970062#M69474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I guess I'm too tired now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is solved.&lt;/P&gt;&lt;P&gt;The values in the database are indeed case sensitive.&lt;/P&gt;&lt;P&gt;I needed to TRANSLATE a bit the &amp;lt;i&amp;gt;field&amp;lt;/i&amp;gt; before hitting the database with it, ofcourse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, guys.&lt;/P&gt;&lt;P&gt;Bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970062#M69474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970063#M69475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you say, it is possible that this is an encoding problem.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a simple program to select some records from the table.  Now put the your search value (p_field) similar to one of the value in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say the table contains following entries:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;City&lt;/P&gt;&lt;P&gt;WALTHAM&lt;/P&gt;&lt;P&gt;BOSTON&lt;/P&gt;&lt;P&gt;CAMBRIDGE&lt;/P&gt;&lt;P&gt;WORCESTOR&lt;/P&gt;&lt;P&gt;QUINCY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;You can set this as screen parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   p_field = 'WALTHAM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT * FROM table INTO it_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When this takes you to debugging mode, examine contents of it_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter it_data[1] &amp;amp; p_field in the fields to examine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on the magnifying glass on the right hand side to see the Hexadecimal values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow you to compare what you are entering and what is there in the table, and tell you what you are doing wrong.  You can examine other entries one by one if you don't get hit on first one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Sivaraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970063#M69475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970064#M69476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;;-).  Ignore my reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970064#M69476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-22T15:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970065#M69477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please award points accordingly and mark this post as solved.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2005 15:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-error/m-p/970065#M69477</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-22T15:32:43Z</dc:date>
    </item>
  </channel>
</rss>

