<?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: Change Document issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773139#M907913</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayden,&lt;/P&gt;&lt;P&gt;              The other two O_ZIRD_P_RESCHEMES and&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES are tables where the change document is to be done.&lt;/P&gt;&lt;P&gt;It should be like for eg if "ZTEST" is the table you have to detect changes then u need to declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O_ZIRD_P_RESCHEMES type ztest.&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES type ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if it helped you ;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 01:22:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-30T01:22:42Z</dc:date>
    <item>
      <title>Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773133#M907907</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 try to implement FM: CHANGEDOCUMENT_OPEN, CHANGEDOCUMENT_SINGLE_CASE, CHANGEDOCUMENT_CLOSE, but i encounter an runtime error : ASSIGN_BASE_TOO_SHORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fehler in ASSIGN-Zuweisung im Programm "SAPLSCD0". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this issue? Any sample code for reference?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 10:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773133#M907907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T10:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773134#M907908</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;Any idea how to resolve this issue? Marks will be given for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 00:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773134#M907908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T00:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773135#M907909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayden,&lt;/P&gt;&lt;P&gt;                Please check the sample code below. Hope this helps. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_OPEN'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      OBJECTCLASS             = 'ZSCHEMES_REL'&lt;/P&gt;&lt;P&gt;      OBJECTID                = OBJECTID&lt;/P&gt;&lt;P&gt;      PLANNED_CHANGE_NUMBER   = PLANNED_CHANGE_NUMBER&lt;/P&gt;&lt;P&gt;      PLANNED_OR_REAL_CHANGES = PLANNED_OR_REAL_CHANGES&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      SEQUENCE_INVALID        = 1&lt;/P&gt;&lt;P&gt;      OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-SUBRC.&lt;/P&gt;&lt;P&gt;    WHEN 0.                                   "OK.&lt;/P&gt;&lt;P&gt;    WHEN 1. MESSAGE A600 WITH 'SEQUENCE INVALID'.&lt;/P&gt;&lt;P&gt;    WHEN 2. MESSAGE A600 WITH 'OPEN ERROR'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF UPD_ZIRD_P_RESCHEMES NE SPACE.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CHANGEDOCUMENT_SINGLE_CASE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        TABLENAME              = 'ZIRD_P_RESCHEMES'&lt;/P&gt;&lt;P&gt;        WORKAREA_OLD           = O_ZIRD_P_RESCHEMES&lt;/P&gt;&lt;P&gt;        WORKAREA_NEW           = N_ZIRD_P_RESCHEMES&lt;/P&gt;&lt;P&gt;        CHANGE_INDICATOR       = UPD_ZIRD_P_RESCHEMES&lt;/P&gt;&lt;P&gt;        DOCU_DELETE            = 'X'&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        NAMETAB_ERROR          = 1&lt;/P&gt;&lt;P&gt;        OPEN_MISSING           = 2&lt;/P&gt;&lt;P&gt;        POSITION_INSERT_FAILED = 3&lt;/P&gt;&lt;P&gt;        OTHERS                 = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE SY-SUBRC.&lt;/P&gt;&lt;P&gt;      WHEN 0.                                "OK.&lt;/P&gt;&lt;P&gt;      WHEN 1. MESSAGE A600 WITH 'NAMETAB-ERROR'.&lt;/P&gt;&lt;P&gt;      WHEN 2. MESSAGE A600 WITH 'OPEN MISSING'.&lt;/P&gt;&lt;P&gt;      WHEN 3. MESSAGE A600 WITH 'INSERT ERROR'.&lt;/P&gt;&lt;P&gt;      WHEN 4. MESSAGE A600 WITH 'SINGLE ERROR'.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_CLOSE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      OBJECTCLASS             = 'ZSCHEMES_REL'&lt;/P&gt;&lt;P&gt;      OBJECTID                = OBJECTID&lt;/P&gt;&lt;P&gt;      DATE_OF_CHANGE          = UDATE&lt;/P&gt;&lt;P&gt;      TIME_OF_CHANGE          = UTIME&lt;/P&gt;&lt;P&gt;      TCODE                   = TCODE&lt;/P&gt;&lt;P&gt;      USERNAME                = USERNAME&lt;/P&gt;&lt;P&gt;      OBJECT_CHANGE_INDICATOR = OBJECT_CHANGE_INDICATOR&lt;/P&gt;&lt;P&gt;      NO_CHANGE_POINTERS      = NO_CHANGE_POINTERS&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      HEADER_INSERT_FAILED    = 1&lt;/P&gt;&lt;P&gt;      OBJECT_INVALID          = 2&lt;/P&gt;&lt;P&gt;      OPEN_MISSING            = 3&lt;/P&gt;&lt;P&gt;      NO_POSITION_INSERTED    = 4&lt;/P&gt;&lt;P&gt;      OTHERS                  = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-SUBRC.&lt;/P&gt;&lt;P&gt;    WHEN 0.                                   "OK.&lt;/P&gt;&lt;P&gt;    WHEN 1. MESSAGE A600 WITH 'INSERT HEADER FAILED'.&lt;/P&gt;&lt;P&gt;    WHEN 2. MESSAGE A600 WITH 'OBJECT INVALID'.&lt;/P&gt;&lt;P&gt;    WHEN 3. MESSAGE A600 WITH 'OPEN MISSING'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   WHEN 4. MESSAGE A600 WITH 'NO_POSITION_INSERTED'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;do not abort, if positions are not inserted!!!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    WHEN 5. MESSAGE A600 WITH 'CLOSE ERROR'.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhishek Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773135#M907909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773136#M907910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the feekback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How you declare the following item :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTID&lt;/P&gt;&lt;P&gt;O_ZIRD_P_RESCHEMES&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:13:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773136#M907910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773137#M907911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You need to declare as following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTID	TYPE	CDHDR-OBJECTID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other two O_ZIRD_P_RESCHEMES and&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES are tables where the change document is to be done.&lt;/P&gt;&lt;P&gt;It should be like  for eg if "ZTEST" is the table you have to detect changes then u need to declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O_ZIRD_P_RESCHEMES type ztest.&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES  type ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhishek Raj on Apr 30, 2008 1:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773137#M907911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773138#M907912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How you declare O_ZIRD_P_RESCHEMES &amp;amp; N_ZIRD_P_RESCHEMES. These 2 table is SAP standard table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773138#M907912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773139#M907913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayden,&lt;/P&gt;&lt;P&gt;              The other two O_ZIRD_P_RESCHEMES and&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES are tables where the change document is to be done.&lt;/P&gt;&lt;P&gt;It should be like for eg if "ZTEST" is the table you have to detect changes then u need to declare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;O_ZIRD_P_RESCHEMES type ztest.&lt;/P&gt;&lt;P&gt;N_ZIRD_P_RESCHEMES type ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if it helped you ;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773139#M907913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773140#M907914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have hit a error : NO_POSITION_INSERTED in :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'CHANGEDOCUMENT_CLOSE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       DATE_OF_CHANGE                = sy-datum&lt;/P&gt;&lt;P&gt;       OBJECTCLASS                   = 'ZTEST_CD'&lt;/P&gt;&lt;P&gt;       OBJECTID                      = OBJECTID&lt;/P&gt;&lt;P&gt;       TCODE                         = SY-TCODE&lt;/P&gt;&lt;P&gt;       TIME_OF_CHANGE                = SY-UZEIT&lt;/P&gt;&lt;P&gt;       USERNAME                      = sy-uname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     OBJECT_CHANGE_INDICATOR       = 'U'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     PLANNED_OR_REAL_CHANGES       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     NO_CHANGE_POINTERS            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     CHANGENUMBER                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      HEADER_INSERT_FAILED          = 1&lt;/P&gt;&lt;P&gt;      NO_POSITION_INSERTED          = 2&lt;/P&gt;&lt;P&gt;      OBJECT_INVALID                = 3&lt;/P&gt;&lt;P&gt;      OPEN_MISSING                  = 4&lt;/P&gt;&lt;P&gt;      POSITION_INSERT_FAILED        = 5&lt;/P&gt;&lt;P&gt;      OTHERS                        = 6&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&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;Any ideas, what went wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773140#M907914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773141#M907915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayden,&lt;/P&gt;&lt;P&gt;                Please declare also the following fields :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTID	TYPE	CDHDR-OBJECTID	                     &lt;/P&gt;&lt;P&gt;TCODE	TYPE	CDHDR-TCODE - &lt;STRONG&gt;pass the transaction code&lt;/STRONG&gt;	                     &lt;/P&gt;&lt;P&gt;UTIME	TYPE	CDHDR-UTIME - &lt;STRONG&gt;pass the system time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;UDATE	TYPE	CDHDR-UDATE - &lt;STRONG&gt;pass the system date&lt;/STRONG&gt;	                     &lt;/P&gt;&lt;P&gt;USERNAME	TYPE	CDHDR-USERNAME	- &lt;STRONG&gt;pass sy-uname&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                     &lt;/P&gt;&lt;P&gt;PLANNED_CHANGE_NUMBER	TYPE SPACE&lt;/P&gt;&lt;P&gt;OBJECT_CHANGE_INDICATOR	TYPE CHAR 1 VALUE U'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLANNED_OR_REAL_CHANGES TYPE SPACE&lt;/P&gt;&lt;P&gt;NO_CHANGE_POINTERS TYPE	 SPACE&lt;/P&gt;&lt;P&gt;UPD_ICDTXT_ZSCHEMES_REL	TYPE 	SPACE&lt;/P&gt;&lt;P&gt;	                     &lt;/P&gt;&lt;P&gt;UPD_ZIRD_P_RESCHEMES	TYPE	SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 01:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773141#M907915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T01:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773142#M907916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I change the code accordingly.. but i still encounter the same error : NO_POSITION_INSERTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I place the CHANGEDOCUMENT code in an UPDATE button. When this UPDATE button is trigger, it will firstly call FM  CALL FUNCTION 'CHANGEDOCUMENT_OPEN' follow by  'CHANGEDOCUMENT_SINGLE_CASE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After which it will run the logic of updating my table ZSTUDENT with COMMIT WORK statement.  &lt;/P&gt;&lt;P&gt;I did debugging, all the statement above run without any error occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eventually it will call FM 'CHANGEDOCUMENT_CLOSE', at this FM, it trigger the error NO_POSITION_INSERTED. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the error about? How to resolve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 02:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773142#M907916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T02:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773143#M907917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check whether you have given the object class. You need to debug to know why this kind of error is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are inserting an object. You should test by updating an object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhishek Raj on Apr 30, 2008 3:06 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 02:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773143#M907917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T02:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773144#M907918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea which SAP table store / keep track on the CHANGEDOCUMENT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 03:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773144#M907918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T03:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773145#M907919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ray,&lt;/P&gt;&lt;P&gt;           It is CDPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Abhi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 03:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773145#M907919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T03:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Change Document issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773146#M907920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"CHANGE DOCUMENT" in DATA ELEMENT must set.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 10:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-document-issue/m-p/3773146#M907920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T10:18:05Z</dc:date>
    </item>
  </channel>
</rss>

