<?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: Batch Data Record Erase Field data no possible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831115#M662618</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;Can you paste your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Oct 2007 00:49:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-06T00:49:28Z</dc:date>
    <item>
      <title>Batch Data Record Erase Field data no possible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831114#M662617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing a BDC in transaction IA05,  in the characteristics definition the system puts the plant number value (PLMKB-QMTB_WERKS) for the method, but i need to delete this value because if this value exists and the method and version are initial, the system shows error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying using ' ', space, an empty string variable but value is not erase. But  if i insert a value into the field PLMKB-QMTB_WERKS the value is changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somebody know How i can resolve this? Could be a customizing problem in QM Module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using SAP version ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alejandro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 22:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831114#M662617</guid>
      <dc:creator>alejandro_lpez</dc:creator>
      <dc:date>2007-10-05T22:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Data Record Erase Field data no possible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831115#M662618</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;Can you paste your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 00:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831115#M662618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T00:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Data Record Erase Field data no possible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831116#M662619</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;This is the BDC dynpro code, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM bdc_dynpro   USING 'SAPLQPAA' '1501'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field       USING 'PLMKB-VERWMERKM'  wa_caract-verwmerkm.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field       USING 'PLMKB-QPMK_WERKS' wa_caract-qpmk_werks.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field       USING 'PLMKB-MKVERSION'  wa_caract-mkversion.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field       USING 'PLMKB-QMTB_WERKS'  wa_caract-qmtb_werks.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field       USING 'BDC_OKCODE'  '=ENT1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I send an empty value in data object wa_caract-qmtb_werks, but system always propose a value in the field PLMKB-QMTB_WERKS, but if i assign for example wa_caract-qmtb_werks = 1. The value is showed in the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I find the SAP Notes 1073745, 204491 and 202040; maybe this Notes can solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alejandro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 15:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831116#M662619</guid>
      <dc:creator>alejandro_lpez</dc:creator>
      <dc:date>2007-10-06T15:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Data Record Erase Field data no possible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831117#M662620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alejandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What u describe sounds quite weird...&lt;/P&gt;&lt;P&gt;Try changing the line "PERFORM bdc_field USING 'PLMKB-QMTB_WERKS' wa_caract-qmtb_werks." like this:&lt;/P&gt;&lt;P&gt;"PERFORM bdc_field USING 'PLMKB-QMTB_WERKS'  ' '." (replace the wa_caract-qmtb_werks at the end with ' ' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works. Good luck....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Igal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Oct 2007 08:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-data-record-erase-field-data-no-possible/m-p/2831117#M662620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-07T08:01:23Z</dc:date>
    </item>
  </channel>
</rss>

