<?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: send complete IDOC using change pointers in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-complete-idoc-using-change-pointers/m-p/7443106#M1551945</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;the entries to change pointers are in table BDCP2 in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i removed BDCPV AND BDCP and have put only BDCP2 for the logic but still its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any suggestions???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM bdcp2&lt;/P&gt;&lt;P&gt;INTO TABLE lt_bdcp2&lt;/P&gt;&lt;P&gt;WHERE mestype = ud_mestyp&lt;/P&gt;&lt;P&gt;AND process NE 'X'.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_bdcp2-fldname = lc_fld_alelisting.&lt;/P&gt;&lt;P&gt;MODIFY lt_bdcp2 FROM ls_bdcp2&lt;/P&gt;&lt;P&gt;TRANSPORTING fldname&lt;/P&gt;&lt;P&gt;WHERE ( fldname NE lc_fld_alelisting ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE bdcp2 FROM TABLE lt_bdcp2.&lt;/P&gt;&lt;P&gt;COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;any changes to be done to the above code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Nov 2010 15:58:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-25T15:58:54Z</dc:date>
    <item>
      <title>send complete IDOC using change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-complete-idoc-using-change-pointers/m-p/7443105#M1551944</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;i am working on change pointers for DEBMAS.i am able to trigger change pointers for XD01/02/05/06.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to send complete data when change happens rather than DELTA data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got the following code:&lt;/P&gt;&lt;P&gt;CONSTANTS:&lt;/P&gt;&lt;P&gt;lc_fld_alelisting TYPE fieldname VALUE 'ALELISTING'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;lt_bdcpv TYPE STANDARD TABLE OF bdcpv,&lt;/P&gt;&lt;P&gt;ls_bdcp TYPE bdcp,&lt;/P&gt;&lt;P&gt;lt_bdcp TYPE STANDARD TABLE OF bdcp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Select all not yet processed change pointers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT * FROM bdcpv&lt;/P&gt;&lt;P&gt;INTO TABLE lt_bdcpv&lt;/P&gt;&lt;P&gt;WHERE mestype = ud_mestyp&lt;/P&gt;&lt;P&gt;AND process NE 'X'.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM bdcp&lt;/P&gt;&lt;P&gt;INTO TABLE lt_bdcp&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN lt_bdcpv&lt;/P&gt;&lt;P&gt;WHERE cpident = lt_bdcpv-cpident.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0 .&lt;/P&gt;&lt;P&gt;CLEAR: ls_bdcp.&lt;/P&gt;&lt;P&gt;ls_bdcp-fldname = lc_fld_alelisting.&lt;/P&gt;&lt;P&gt;MODIFY lt_bdcp FROM ls_bdcp&lt;/P&gt;&lt;P&gt;TRANSPORTING fldname&lt;/P&gt;&lt;P&gt;WHERE ( fldname NE lc_fld_alelisting ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE bdcp FROM TABLE lt_bdcp.&lt;/P&gt;&lt;P&gt;COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont see any entries in BDCP tables in my client . can some one let meknow what i need to do so taht i can trigger complete IDOC using change pointer?its a high priority isssue....&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 15:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-complete-idoc-using-change-pointers/m-p/7443105#M1551944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-25T15:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: send complete IDOC using change pointers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-complete-idoc-using-change-pointers/m-p/7443106#M1551945</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;the entries to change pointers are in table BDCP2 in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i removed BDCPV AND BDCP and have put only BDCP2 for the logic but still its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any suggestions???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM bdcp2&lt;/P&gt;&lt;P&gt;INTO TABLE lt_bdcp2&lt;/P&gt;&lt;P&gt;WHERE mestype = ud_mestyp&lt;/P&gt;&lt;P&gt;AND process NE 'X'.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_bdcp2-fldname = lc_fld_alelisting.&lt;/P&gt;&lt;P&gt;MODIFY lt_bdcp2 FROM ls_bdcp2&lt;/P&gt;&lt;P&gt;TRANSPORTING fldname&lt;/P&gt;&lt;P&gt;WHERE ( fldname NE lc_fld_alelisting ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE bdcp2 FROM TABLE lt_bdcp2.&lt;/P&gt;&lt;P&gt;COMMIT WORK AND WAIT.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;any changes to be done to the above code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 15:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-complete-idoc-using-change-pointers/m-p/7443106#M1551945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-25T15:58:54Z</dc:date>
    </item>
  </channel>
</rss>

