<?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 CHANGEDOCUMENT_READ_HEADERS only returning &amp;quot;my&amp;quot; changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751829#M1303375</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 the following code in my program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      date_of_change = p_stdate&lt;/P&gt;&lt;P&gt;      objectclass    = 'EINKBELEG'&lt;/P&gt;&lt;P&gt;      date_until     = sy-datum&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_cdhdr        = i_cdhdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the documentation, if the "username" parameter is blank, ALL changes should be returned, but this is only returning changes made be my username.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I doing something wrong...can anyone shed any light on what I should be doing differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2009 11:07:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-03T11:07:56Z</dc:date>
    <item>
      <title>CHANGEDOCUMENT_READ_HEADERS only returning "my" changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751829#M1303375</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 the following code in my program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      date_of_change = p_stdate&lt;/P&gt;&lt;P&gt;      objectclass    = 'EINKBELEG'&lt;/P&gt;&lt;P&gt;      date_until     = sy-datum&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_cdhdr        = i_cdhdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the documentation, if the "username" parameter is blank, ALL changes should be returned, but this is only returning changes made be my username.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I doing something wrong...can anyone shed any light on what I should be doing differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751829#M1303375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T11:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGEDOCUMENT_READ_HEADERS only returning "my" changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751830#M1303376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could this be a security issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Andrew Brusko on Jun 3, 2009 1:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751830#M1303376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T11:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGEDOCUMENT_READ_HEADERS only returning "my" changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751831#M1303377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By default the FM takes the sy-uname at the &lt;STRONG&gt;USERNAME&lt;/STRONG&gt; field &lt;/P&gt;&lt;P&gt;try something like follwing&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
EXPORTING
date_of_change = p_stdate
objectclass = 'EINKBELEG'
date_until = sy-datum
USERNAME = ' '
TABLES
i_cdhdr = i_cdhdr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751831#M1303377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T11:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGEDOCUMENT_READ_HEADERS only returning "my" changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751832#M1303378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to read the change document header without &lt;STRONG&gt;date_of_change = p_stdate&lt;/STRONG&gt; and &lt;STRONG&gt;date_until = sy-datum&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751832#M1303378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T11:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: CHANGEDOCUMENT_READ_HEADERS only returning "my" changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751833#M1303379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GTREN...thanks...using ' ' is now returning all rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;George...the &lt;STRONG&gt;date_of_change = p_stdate and date_until = sy-datum&lt;/STRONG&gt; are required by my logic, but I tried it without them anyway, and it still only returned rows that were changed by me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to both...another learning experience!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 11:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changedocument-read-headers-only-returning-quot-my-quot-changes/m-p/5751833#M1303379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T11:54:25Z</dc:date>
    </item>
  </channel>
</rss>

