<?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: regarding BDC program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157785#M994013</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;Just check whether vendor and pan number exists in the vendor master table . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it is there , dont do anything . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vendor exists but pan number is not there , execute the code for vendor change  BDC .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if the vendor is not there ,  execute the code for vendor create BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include the code for both in same program and depending upon the condition execute different BDCs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2008 11:50:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-14T11:50:28Z</dc:date>
    <item>
      <title>regarding BDC program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157784#M994012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one doubt regarding BDC. In one internal table i have 1000 records.total 10 fields in that table.fields are:&lt;/P&gt;&lt;P&gt;1. vendor.&lt;/P&gt;&lt;P&gt;2.xxx&lt;/P&gt;&lt;P&gt;3.xxx&lt;/P&gt;&lt;P&gt;4.xxx&lt;/P&gt;&lt;P&gt;5.xxx&lt;/P&gt;&lt;P&gt;6.xxx.&lt;/P&gt;&lt;P&gt;7.pan number.&lt;/P&gt;&lt;P&gt;8.xxx&lt;/P&gt;&lt;P&gt;9.xxx.&lt;/P&gt;&lt;P&gt;10.xxx.&lt;/P&gt;&lt;P&gt;i have total(1000) vendor numbers but there are some pan numbers doesn't exists.So, i have to update the pan number&lt;/P&gt;&lt;P&gt;which are related particular vendor number.&lt;/P&gt;&lt;P&gt;and also i want to upload some new vendors and pan numbers.&lt;/P&gt;&lt;P&gt;i knew the uploading and change record BDC programs.&lt;/P&gt;&lt;P&gt;But i want both operations in one program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help me frnds.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 11:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157784#M994012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T11:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BDC program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157785#M994013</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;Just check whether vendor and pan number exists in the vendor master table . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF it is there , dont do anything . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vendor exists but pan number is not there , execute the code for vendor change  BDC .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if the vendor is not there ,  execute the code for vendor create BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include the code for both in same program and depending upon the condition execute different BDCs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 11:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157785#M994013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T11:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: regarding BDC program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157786#M994014</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;try like this...&lt;/P&gt;&lt;P&gt;iupld is ur int. table.&lt;/P&gt;&lt;P&gt;LOOP AT iupld.&lt;/P&gt;&lt;P&gt;SELECT SINGLE lifnr FROM lfa1 WHERE lifnr = iupld-lifnr.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;move iupld TO iupld1.&lt;/P&gt;&lt;P&gt;APPEND iupld1.&lt;/P&gt;&lt;P&gt;CLEAR iupld.&lt;/P&gt;&lt;P&gt;DELETE iupld index sy-tabix.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT iupld[] IS INITIAL.&lt;/P&gt;&lt;P&gt;perform... code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call xk01 transaction here..&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT iupld1 IS INITIAL.&lt;/P&gt;&lt;P&gt;perform... code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call xk02 transaction here..&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 11:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-bdc-program/m-p/4157786#M994014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T11:54:48Z</dc:date>
    </item>
  </channel>
</rss>

