<?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 upload program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404981#M536058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     you r having data in ur internal table        &lt;/P&gt;&lt;P&gt;     Pass ur input data in table level ,u can chek already is there or not,&lt;/P&gt;&lt;P&gt;     if it is there ,delete that record  becoz alredy exit.&lt;/P&gt;&lt;P&gt;     this input should be key field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may be helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2007 12:03:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-29T12:03:28Z</dc:date>
    <item>
      <title>BDC upload program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404977#M536054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im creating an upload BDC program.&lt;/P&gt;&lt;P&gt;I have done all the recording....and it's able to run.&lt;/P&gt;&lt;P&gt;How i can checking the data in upload file before it creating the BDC session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) check whether the Student Name exist before proceed to BDC. (Student Name is locate at first column of upload file)&lt;/P&gt;&lt;P&gt;2) if Not exist....display out the student name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF i_file OCCURS 0,&lt;/P&gt;&lt;P&gt;    a like Student-Name,&lt;/P&gt;&lt;P&gt;    b like Student-Class.&lt;/P&gt;&lt;P&gt;END OF i_file&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>Fri, 29 Jun 2007 08:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404977#M536054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T08:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC upload program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404978#M536055</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;Befire passing the data to the bdc table make a check wiht the field value in the table and separate them that alredy exits according to your logic.&lt;/P&gt;&lt;P&gt;And for remaining data you cna run BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 09:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404978#M536055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T09:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: BDC upload program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404979#M536056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have check it in the debug mode  ... so the  file   uploaded to internal table  i_file .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when  you see the   i_file  it will be  placed under the headingas the fields   decalraed in  the  internal  table  ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this   before  creating   Session and  after  uploading th  fiel in the program ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 09:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404979#M536056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T09:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: BDC upload program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404980#M536057</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;Thanks...Could you provide some sample code for checking whether the data exist in table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 09:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404980#M536057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T09:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: BDC upload program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404981#M536058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     you r having data in ur internal table        &lt;/P&gt;&lt;P&gt;     Pass ur input data in table level ,u can chek already is there or not,&lt;/P&gt;&lt;P&gt;     if it is there ,delete that record  becoz alredy exit.&lt;/P&gt;&lt;P&gt;     this input should be key field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may be helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2007 12:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-upload-program/m-p/2404981#M536058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-29T12:03:28Z</dc:date>
    </item>
  </channel>
</rss>

