<?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 in bdc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188372#M466299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expects,&lt;/P&gt;&lt;P&gt;wher does validation is done in bdc program.by writing which statement it shows the data in output?please help me.&lt;/P&gt;&lt;P&gt; thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2007 19:12:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-20T19:12:38Z</dc:date>
    <item>
      <title>in bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188372#M466299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expects,&lt;/P&gt;&lt;P&gt;wher does validation is done in bdc program.by writing which statement it shows the data in output?please help me.&lt;/P&gt;&lt;P&gt; thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 19:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188372#M466299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T19:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: in bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188373#M466300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did not understand your question. However, let me make some things clear about BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. You record a transaction using t-code SHDB. This recording contains the simulation of user's action when he actually enters data in the transaction.&lt;/P&gt;&lt;P&gt;2. Validation happens in the transaction only when u pass data through BDC.&lt;/P&gt;&lt;P&gt;3. If it is a invalid data, the BDC stops and the error message is recorded into the bdcmsgcoll structure&lt;/P&gt;&lt;P&gt;4. You take data from a flat file, store it into a internal table. Looping through each row of this table, you pass values to your BDC program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many links, threads over BDC in this forum for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SKJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 19:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188373#M466300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T19:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: in bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188374#M466301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do validation before populating data into the bdctab (internal table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it would be more structured and the maintainability becomes easy if you do the validations first and then take the data into a internal table and process the bdc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Validation in BDC involves checking data with the database tables and many other validation as per requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These validation sometimes becomes very complex, so its better to structure tha whole thing as i mentioned earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;reward points to helpful answers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 20:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188374#M466301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T20:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: in bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188375#M466302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Validations are done before you pass the data from the internal table to the BDCTAB, ie the recording piece of code.&lt;/P&gt;&lt;P&gt;Validations have to be done with the data in the database. However if possible i would suggest to use a BAPI, if a BAPI exists for your requirement because it would basically do all the check and would return messages as you would do it a the transactional level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 21:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188375#M466302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T21:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: in bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188376#M466303</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;First when u start recording everything gets recorded the way u process it....then while writing the bdc code......we transfer the flat file to the internal table trough bdc method.....so the sytx of call transcation plays the major roll for validation......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Apr 2007 02:59:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-bdc/m-p/2188376#M466303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-21T02:59:18Z</dc:date>
    </item>
  </channel>
</rss>

