<?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 CHANGE_POINTERS_READ for material data,BDCP2 table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728936#M1580790</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lakshman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After checking the check box for BDCP2 in BD60, change pointers will be automatically stored to BDCP2 going forward. &lt;/P&gt;&lt;P&gt;SAP delivers a migration program RBDCPMIG to transfer old BDCP/BDCPS entries to BDCP2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the SAP note 1165059 for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Mar 2011 09:55:30 GMT</pubDate>
    <dc:creator>soumya_jose3</dc:creator>
    <dc:date>2011-03-10T09:55:30Z</dc:date>
    <item>
      <title>Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728932#M1580786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using some Z function module which is copied from standard one change_pointers_read FM. In the function module for getting material data which has been changed we are using two select queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 SELECT * FROM bdcpv
      INTO CORRESPONDING FIELDS OF TABLE i_table
     WHERE mestype = message_type
      AND  process = process
      AND  cretime IN s_creation_time
      AND  cdobjcl IN cdobjcl
      AND  tabname IN tabname
      AND  fldname IN fldname
      AND  cdobjid IN cdobjid.

    SELECT * FROM bdcp2 APPENDING
     TABLE i_table
    WHERE  mestype = message_type
      AND  process = process
      AND  cretime IN s_creation_time
      AND  cdobjcl IN cdobjcl
      AND  tabname IN tabname
      AND  fldname IN fldname
      AND  cdobjid IN cdobjid.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in ECC6 SAP begins storing change pointers data in table BDCP2.So,i feel there is no need to use BDCPV in this case.Please share your thoughts on this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module is used in Z program which is scheduled as a daily running job.This program is failing at the step i.e at second select query with Run time Error TSV_NEW_PAGE_ALLOC_FAILED reason. Is there any other way to code this select query for better performance.&lt;/P&gt;&lt;P&gt;I mean is there any standard FM available for reading this table?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP suggests a note1165059 in which it say's run the report RBDCPCLR to delete obsolete changing pointers after which the system takes into account change pointers from table BDCP2.&lt;/P&gt;&lt;P&gt;Please shed some light on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 06:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728932#M1580786</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2011-03-10T06:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728933#M1580787</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;Any updates on this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 07:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728933#M1580787</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2011-03-10T07:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728934#M1580788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lakshman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run time Error TSV_NEW_PAGE_ALLOC_FAILED occurs when there is no more storage space available for extending an internal table. Here in this case, the internal table i_table could not be extended further to hold huge number of entries. &lt;/P&gt;&lt;P&gt;Since you are fetching from both BDCPV and BDCP2 table and filling i_table internal table, so much entries are coming which causes this error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either fetch from BDCPV or BDCP2 table. Change pointers are stored either in BDCPV table or BDCP2 table. The setting of the message type in BD60 decides which table to use for storing change pointers for that particular message type. You check for your message type in BD60 detail view, if check box 'Change Pointer: Message Type Supports Table BDCP2' is checked, then BDCP2 table will be used for storing change pointer. Else, BDCPV will be used. Accordingly you can write select query either on BDCP2 or BDCPV which will rectify the run time error 'TSV_NEW_PAGE_ALLOC_FAILED '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 09:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728934#M1580788</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2011-03-10T09:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728935#M1580789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soumya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the helpful information. I checked BD60 transaction ,and there for MATMAS ,BDCP2OK checkbox was not enabled .&lt;/P&gt;&lt;P&gt;Then should i enable it for using BDCP2 in my select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lakshman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 09:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728935#M1580789</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2011-03-10T09:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728936#M1580790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lakshman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After checking the check box for BDCP2 in BD60, change pointers will be automatically stored to BDCP2 going forward. &lt;/P&gt;&lt;P&gt;SAP delivers a migration program RBDCPMIG to transfer old BDCP/BDCPS entries to BDCP2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the SAP note 1165059 for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 09:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728936#M1580790</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2011-03-10T09:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding CHANGE_POINTERS_READ for material data,BDCP2 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728937#M1580791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your time Soumya.Your suggestion is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 11:41:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-change-pointers-read-for-material-data-bdcp2-table/m-p/7728937#M1580791</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2011-03-10T11:41:05Z</dc:date>
    </item>
  </channel>
</rss>

