<?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: bdc conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010134#M410200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when u upload data into SAP, u need to take care of two aspects of data correcteness. &lt;/P&gt;&lt;P&gt;first one is,whether that data is uploaded in correct format or not&lt;/P&gt;&lt;P&gt;second one is.. whether the uploaded data is valid data or not...&lt;/P&gt;&lt;P&gt;first one we can say syntactical correctness of data,&lt;/P&gt;&lt;P&gt;second one is symantic correctness of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for delivery country, you need to check the table T005 for this.&lt;/P&gt;&lt;P&gt;regarding origin also u need to check the same table.&lt;/P&gt;&lt;P&gt;for rate unit, u need to chcek TCURC table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at the internal table and check whether the entry exists in those correspoding table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Mar 2007 08:43:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-09T08:43:49Z</dc:date>
    <item>
      <title>bdc conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010133#M410199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi have been asked to upload data from excel sheets into transaction mek1 using call transaction method.&lt;/P&gt;&lt;P&gt;also i have been asked to do validation checks on delivery country(KOMG-HLAND) and country of origin(KOMG-HERKL) from t005&lt;/P&gt;&lt;P&gt;and the rate unit(currency or percentage)KONP-KONWA from tcurc table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 08:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010133#M410199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T08:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: bdc conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010134#M410200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when u upload data into SAP, u need to take care of two aspects of data correcteness. &lt;/P&gt;&lt;P&gt;first one is,whether that data is uploaded in correct format or not&lt;/P&gt;&lt;P&gt;second one is.. whether the uploaded data is valid data or not...&lt;/P&gt;&lt;P&gt;first one we can say syntactical correctness of data,&lt;/P&gt;&lt;P&gt;second one is symantic correctness of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for delivery country, you need to check the table T005 for this.&lt;/P&gt;&lt;P&gt;regarding origin also u need to check the same table.&lt;/P&gt;&lt;P&gt;for rate unit, u need to chcek TCURC table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at the internal table and check whether the entry exists in those correspoding table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 08:43:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010134#M410200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T08:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: bdc conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010135#M410201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first upload data into internal table with gui_upload&lt;/P&gt;&lt;P&gt; and in the FM give HAS_FIELD_SEPARATOR = 'X'.&lt;/P&gt;&lt;P&gt;after that&lt;/P&gt;&lt;P&gt;  select HLAND &lt;/P&gt;&lt;P&gt;            HERKL&lt;/P&gt;&lt;P&gt;         .......................&lt;/P&gt;&lt;P&gt;       from t005&lt;/P&gt;&lt;P&gt;  check sy-subrc.&lt;/P&gt;&lt;P&gt;this check for validation&lt;/P&gt;&lt;P&gt;and another select statement for the currency filed validation&lt;/P&gt;&lt;P&gt;this is also check for validation the currency&lt;/P&gt;&lt;P&gt;...some additional code is required...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if its helpful.&lt;/P&gt;&lt;P&gt;Vijay Pawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 08:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-conversion/m-p/2010135#M410201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T08:46:35Z</dc:date>
    </item>
  </channel>
</rss>

