<?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: uploading case problems in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439660#M209305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kajol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After uploading to the internal table, translate all the fields of the ITAB to UPPERCASE Using the Translate to uppercase syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then check with ur z table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helps reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jul 2006 14:14:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-24T14:14:26Z</dc:date>
    <item>
      <title>uploading case problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439659#M209304</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;&lt;/P&gt;&lt;P&gt;I am uploading an excel file .Before uploading i need to check with another ztable ,if value of one field of excel sheet exist in ztable then i have to upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having a value in excel sheet which exists in ztable that means i have to upload. I have everything in ztable in upper case and in excel i have in lower case because of this the sy-subrc is not equal to zero  and its not uploading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you suggest anything regarding this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2006 14:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439659#M209304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-24T14:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: uploading case problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439660#M209305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kajol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After uploading to the internal table, translate all the fields of the ITAB to UPPERCASE Using the Translate to uppercase syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then check with ur z table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helps reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2006 14:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439660#M209305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-24T14:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: uploading case problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439661#M209306</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;The problem is that i have some records in upper and some in lower case.&lt;/P&gt;&lt;P&gt;Is there any way that i can make the selection i.e checking with ztable independent of case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have everything in z table in upper case.&lt;/P&gt;&lt;P&gt;No matter what the case of alphabets in excel sheet if it finds that value in ztable then it should upload. &lt;/P&gt;&lt;P&gt;Is there any solution for this.Pls do let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2006 14:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439661#M209306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-24T14:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: uploading case problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439662#M209307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just before you do your select statement, translate the field value to uppercase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab.

transalate itab-field1 to upper case.

Select Single * from ztable
             where field1 = itab-field1.
if sy-subrc = 0.


endif.




endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Mon, 24 Jul 2006 14:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439662#M209307</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-24T14:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: uploading case problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439663#M209308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kajol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider you have uploaded the Excel file into an internal table &amp;lt;b&amp;gt;it_mara&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;And &amp;lt;b&amp;gt;matnr&amp;lt;/b&amp;gt; is the  field with which you want to check the DB Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then proceed this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT it_mara.

  TRANSLATE  &amp;lt;b&amp;gt;it_mara-matnr&amp;lt;/b&amp;gt; TO UPPER CASE.
  MODIFY     it_mara INDEX sy-tabix.
  
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the Internal table contains matnr in upper cases &amp;lt;i&amp;gt;irrespective of whether initially it was in lower case or upper case&amp;lt;/i&amp;gt; . Then you can proceed with checking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2006 14:39:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-case-problems/m-p/1439663#M209308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-24T14:39:11Z</dc:date>
    </item>
  </channel>
</rss>

