<?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 what does CHANGEDOCUMENT_READ_POSITIONS do? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131386#M987882</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 FM &lt;STRONG&gt;CHANGEDOCUMENT_READ_POSITIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have filled i_cdhdr from the database table CDHDR.&lt;/P&gt;&lt;P&gt;and then i provide all the change numbers present in i_cdhdr to the function module CHANGEDOCUMENT_READ_POSITIONS and receive i_cdshw..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but since i can only provide one change number at a time i have to call this function in a loop on internal table i_cdhdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any other function module which can give me all the entries in i_cdshw when i provide a single table i_cdhdr?&lt;/P&gt;&lt;P&gt;or can i implement the above logic with a select query on CDPOS? if yes, how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jul 2008 10:29:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-07T10:29:26Z</dc:date>
    <item>
      <title>what does CHANGEDOCUMENT_READ_POSITIONS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131386#M987882</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 FM &lt;STRONG&gt;CHANGEDOCUMENT_READ_POSITIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have filled i_cdhdr from the database table CDHDR.&lt;/P&gt;&lt;P&gt;and then i provide all the change numbers present in i_cdhdr to the function module CHANGEDOCUMENT_READ_POSITIONS and receive i_cdshw..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but since i can only provide one change number at a time i have to call this function in a loop on internal table i_cdhdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any other function module which can give me all the entries in i_cdshw when i provide a single table i_cdhdr?&lt;/P&gt;&lt;P&gt;or can i implement the above logic with a select query on CDPOS? if yes, how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 10:29:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131386#M987882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T10:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: what does CHANGEDOCUMENT_READ_POSITIONS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131387#M987883</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; u can i implement the above logic with a select query on CDPOS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not i_cdhdr[] is initial.&lt;/P&gt;&lt;P&gt;select * from cdpos&lt;/P&gt;&lt;P&gt;  into  table i_cdpos&lt;/P&gt;&lt;P&gt;for all entries in i_cdhdr&lt;/P&gt;&lt;P&gt;where cdpos-OBJECTCLAS = i_cdhdr-OBJECTCLAS &lt;/P&gt;&lt;P&gt;and   cdpos-OBJECTID = i_cdhdr-OBJECTID&lt;/P&gt;&lt;P&gt;and   cdpos-CHANGENR = i_cdhdr-CHANGENR.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&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>Mon, 07 Jul 2008 10:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131387#M987883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T10:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: what does CHANGEDOCUMENT_READ_POSITIONS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131388#M987884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi snehi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but we are not using i_cdhdr but rather i_cdshw which is included in tables section..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, we are more interested in getting i_cdshw which has completely different structure than cdhdr and cdpos!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 14:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131388#M987884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T14:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: what does CHANGEDOCUMENT_READ_POSITIONS do?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131389#M987885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I_CDSHW provides the old value and new value with addition of units, i got the same values by firing a select query on CDPOS but without units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, i had to pick up the part of code which was attaching unit in the value and include that in my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 03:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-does-changedocument-read-positions-do/m-p/4131389#M987885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T03:25:15Z</dc:date>
    </item>
  </channel>
</rss>

