<?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 program for bom creation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000642#M1344173</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;search in SCN with TABLE CONTROL BDC u will get number of threads,  Lookinto wiki also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2009 12:41:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-12T12:41:47Z</dc:date>
    <item>
      <title>bdc program for bom creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000641#M1344172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;pls help me over creating bdc for data upload through excel for BOM creation and if code be given as i have not worked on table controls earlier in bdc how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 12:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000641#M1344172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T12:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program for bom creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000642#M1344173</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;search in SCN with TABLE CONTROL BDC u will get number of threads,  Lookinto wiki also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 12:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000642#M1344173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T12:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program for bom creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000643#M1344174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ved,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Control is not much difficult task in BDC.&lt;/P&gt;&lt;P&gt;Just go ahead with recording and add as many items as you can so that page down code could be captured.&lt;/P&gt;&lt;P&gt;After that you have to write the repeated code within the loop only with help of table control.&lt;/P&gt;&lt;P&gt;Its better to do your self.&lt;/P&gt;&lt;P&gt;Little help you can get it from SDN as i am helping by giving you ssample code of table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For table control you have to declare extra variables say &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA:  CNT(3),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;FLDNAME(25),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;CHK(3).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Lator on use these within the loop as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOOP AT RECORD WHERE MATNR = MATNR.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CNT = CNT + 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONDENSE CNT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLEAR FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE 'RC29P-IDNRK('  CNT ')' INTO FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING FLDNAME   RECORD-MATDETL.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLEAR FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE 'RC29P-MENGE('  CNT ')' INTO FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING FLDNAME   RECORD-MENGE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLEAR FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE 'RC29P-POSTP('  CNT ')' INTO FLDNAME.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING FLDNAME  RECORD-POSTP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF CNT &amp;gt; 10.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING 'BDC_OKCODE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                              &lt;STRONG&gt;'=FCNP'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF CHK &amp;lt;&amp;gt; 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;CNT = CNT - 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DO CNT TIMES.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_DYNPRO      USING 'SAPLCSDI' '0130'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING 'BDC_OKCODE'           '/00'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING 'BDC_CURSOR'         'RC29P-POSNR'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_DYNPRO      USING 'SAPLCSDI' '0131'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING 'BDC_OKCODE'      '/00'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PERFORM BDC_FIELD       USING 'BDC_CURSOR'   'RC29P-POTX1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CHK = 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDDO.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope you can understand bit....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anil Katoch on Aug 12, 2009 2:53 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 12:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000643#M1344174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T12:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: bdc program for bom creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000644#M1344175</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;Please search in SCN before posting. Here is one of the example for using table conrol in BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 12:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-program-for-bom-creation/m-p/6000644#M1344175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T12:55:19Z</dc:date>
    </item>
  </channel>
</rss>

