<?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: error while uploading the data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025022#M1498526</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to create RC29P-IDNRK(var) using concatenate statement. Try this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: new_mark TYPE bdcdata-fnam.
CONCATENATE 'RC29P-IDNRK(' var ')' INTO new_mark.
PERFORM bdc_field USING new_mark W_BOM-QTY
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Jun 2010 12:48:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-25T12:48:13Z</dc:date>
    <item>
      <title>error while uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025021#M1498525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello experts,&lt;/P&gt;&lt;P&gt;                     I am facing a problem in uploading the data for cs01.i Have to upload the data for hedear level as well as item level data.&lt;/P&gt;&lt;P&gt;DATA :  CNT TYPE C,&lt;/P&gt;&lt;P&gt;        VAR(2) type C .&lt;/P&gt;&lt;P&gt;DATA : INI TYPE C VALUE '0' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_MAT INTO W_MAT.&lt;/P&gt;&lt;P&gt;  REFRESH GT_BDCDATA.&lt;/P&gt;&lt;P&gt;  CLEAR   GW_BDCDATA.&lt;/P&gt;&lt;P&gt;  clear cnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM HEADER_DETAILS.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  LOOP AT T_BOM INTO W_BOM WHERE MATNR1 = W_MAT-MATNR.&lt;/P&gt;&lt;P&gt;  cnt = cnt + 1.&lt;/P&gt;&lt;P&gt;  CONCATENATE '0' CNT INTO VAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform itemset1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM itemset1.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCSDI' '0140'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RC29P-POSTP(03)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RC29P-IDNRK(01)' W_BOM-BOM_COMP.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                             'purchasecost'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;perform bdc_field       using 'RC29P-MENGE(VAR)' W_BOM-QTY.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;                             '20'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;perform bdc_field       using 'RC29P-POSTP(VAR)' W_BOM-ITM_CAT.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;                             'Z'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i have to upload multiple line items.&lt;/P&gt;&lt;P&gt;so when i pur var at the place of '01' e.g 'RC29P-IDNRK(01) if write like 'RC29P-IDNRK(var) the data is not being uploaded.&lt;/P&gt;&lt;P&gt;whereas if i put 01 it works..but this will work single line item only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks n Regards,&lt;/P&gt;&lt;P&gt;Ashmita Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 11:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025021#M1498525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-25T11:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: error while uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025022#M1498526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to create RC29P-IDNRK(var) using concatenate statement. Try this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: new_mark TYPE bdcdata-fnam.
CONCATENATE 'RC29P-IDNRK(' var ')' INTO new_mark.
PERFORM bdc_field USING new_mark W_BOM-QTY
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 12:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025022#M1498526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-25T12:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: error while uploading the data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025023#M1498527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 15:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-uploading-the-data/m-p/7025023#M1498527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-25T15:09:37Z</dc:date>
    </item>
  </channel>
</rss>

