<?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: what does CHANGEDOCUMENT_READ_HEADERS do? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002529#M956235</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;refer to this link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa01dd493111d182b70000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa01dd493111d182b70000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if usefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;/P&gt;&lt;P&gt;Snehi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 06:55:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T06:55:13Z</dc:date>
    <item>
      <title>what does CHANGEDOCUMENT_READ_HEADERS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002528#M956234</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 have a report which i have to performance tune.&lt;/P&gt;&lt;P&gt;the report is using above function module (CHANGEDOCUMENT_READ_HEADERS) and passes a single objectid which is fetched from EKKO-eblen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, this function module continuously accesses the cdpos and cdhdr tables for all of EKKO entries causing a performance problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any alternative by which i can process multiple EBLEN at one go?&lt;/P&gt;&lt;P&gt;is there any function module which does the same?&lt;/P&gt;&lt;P&gt;can i replace the functioning of this function module by a select query on respective tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 06:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002528#M956234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T06:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: what does CHANGEDOCUMENT_READ_HEADERS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002529#M956235</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;refer to this link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa01dd493111d182b70000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/2a/fa01dd493111d182b70000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if usefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;/P&gt;&lt;P&gt;Snehi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 06:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002529#M956235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T06:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: what does CHANGEDOCUMENT_READ_HEADERS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002530#M956236</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 FM CHANGEDOCUMENT_READ_HEADERS reads the change document numbers, with the associated header information, for a particular change document object. Passing only the object ID would naturally result in huge execution times. You need to pass the object class also along with this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else you can make use of CDHDR and CDPOS tables directly using a select query to get the same information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The object class OBJECTCLAS has to be passed as 'EINKBELEG' for Purchase orders. And the object id OBJECTID has to be the purchase order number.The TABNAME field has to contain the table name (EKKO in the case of purchase orders). The retrieval would be faster in this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:04:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-headers-do/m-p/4002530#M956236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T07:04:33Z</dc:date>
    </item>
  </channel>
</rss>

