<?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: FM- ERROR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502344#M565523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;DATA: CDRED TYPE TABLE OF CDRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    OBJECTCLASS = 'MATERIAL'&lt;/P&gt;&lt;P&gt;    OBJECTID    = '000000000000000001'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    EDITPOS     = CDRED&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;P&gt;   WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;P&gt;   TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;P&gt;   OTHERS                           = 4.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and look into CDRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jul 2007 14:50:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-17T14:50:42Z</dc:date>
    <item>
      <title>FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502336#M565515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;loop at gt_cc.
 
call function 'CHANGEDOCUMENT_READ'
  exporting
*   ARCHIVE_HANDLE                   = 0
*   CHANGENUMBER                     = ' '
*   DATE_OF_CHANGE                   = '00000000'
    objectclass                      = 'MATERIAL'
    OBJECTID                         =  gt_cc-matnr
    TABLEKEY                         = 
  tables
    editpos                          =  CHGDOC
* EXCEPTIONS
*   NO_POSITION_FOUND                = 1
*   WRONG_ACCESS_TO_ARCHIVE          = 2
*   TIME_ZONE_CONVERSION_ERROR       = 3
*   OTHERS                           = 4
          .
if sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
 
  
endloop.

Getting a error "Field "TABLES" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;How to fix this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:35:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502336#M565515</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T14:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502337#M565516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that you are not specifying the parameter before the TABLES line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

call function 'CHANGEDOCUMENT_READ'
  exporting
*   ARCHIVE_HANDLE                   = 0
*   CHANGENUMBER                     = ' '
*   DATE_OF_CHANGE                   = '00000000'
    objectclass                      = 'MATERIAL'
    OBJECTID                         =  gt_cc-matnr
    TABLEKEY                         =                       "&amp;lt;&amp;lt;--- RIGHT HERE
  tables
    editpos                          =  CHGDOC


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either comment it out, or provide a parameter/value here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502337#M565516</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-17T14:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502338#M565517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check out the one in bold..if you are not passing any value to this..just comment that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at gt_cc.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;call function 'CHANGEDOCUMENT_READ'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                   = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHANGENUMBER                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_OF_CHANGE                   = '00000000'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    objectclass                      = 'MATERIAL'&lt;/P&gt;&lt;P&gt;    OBJECTID                         =  gt_cc-matnr&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;TABLEKEY                         =&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    editpos                          =  CHGDOC&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:37:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502338#M565517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502339#M565518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;your call is wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'CHANGEDOCUMENT_READ'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                   = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHANGENUMBER                     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_OF_CHANGE                   = '00000000'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    objectclass                      = 'MATERIAL'&lt;/P&gt;&lt;P&gt;    OBJECTID                         =  gt_cc-matnr&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;    TABLEKEY                         =&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    editpos                          =  CHGDOC&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to fill TABLEKEY!!&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502339#M565518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502340#M565519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What has to filled to the Table_key... I am passing the material number and would like to get the changes in the quantity of the material...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502340#M565519</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T14:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502341#M565520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can leave it blank i guess &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table key is the key of a changed table entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If no table key is specified, all change document positions with the&lt;/P&gt;&lt;P&gt; specified change document number are determined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If a table key is specified, only the change document positions with the&lt;/P&gt;&lt;P&gt; specified change document number and table key are determined.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:44:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502341#M565520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502342#M565521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do this if you don't have tablekey parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at gt_cc.
 
call function 'CHANGEDOCUMENT_READ'
  exporting
*   ARCHIVE_HANDLE                   = 0
*   CHANGENUMBER                     = ' '
*   DATE_OF_CHANGE                   = '00000000'
    objectclass                      = 'MATERIAL'
    OBJECTID                         =  gt_cc-matnr
*   TABLEKEY                         =                      "Change here (commented)
  tables
    editpos                          =  CHGDOC
* EXCEPTIONS
*   NO_POSITION_FOUND                = 1
*   WRONG_ACCESS_TO_ARCHIVE          = 2
*   TIME_ZONE_CONVERSION_ERROR       = 3
*   OTHERS                           = 4
          .
if sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
  
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502342#M565521</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-07-17T14:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502343#M565522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i give the field name, whose changes i want to record and update in table key.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502343#M565522</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T14:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502344#M565523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;DATA: CDRED TYPE TABLE OF CDRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    OBJECTCLASS = 'MATERIAL'&lt;/P&gt;&lt;P&gt;    OBJECTID    = '000000000000000001'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    EDITPOS     = CDRED&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;P&gt;   WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;P&gt;   TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;P&gt;   OTHERS                           = 4.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and look into CDRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502344#M565523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T14:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502345#M565524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Getting Error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The function module interface allows you to specify only fields                
of a particular type under "OBJECTID". The field "GT_CC-MATNR" specified here  
has a different field type&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 14:59:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502345#M565524</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T14:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502346#M565525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define a varaible of the smae type as OBJECTID and move the value GT_CC-MATNR to that variable before calling the FM. Pass that variable instead of the GT_CC-MATNR to the FM's interface&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 15:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502346#M565525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T15:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502347#M565526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Änderungen von Stammdaten/Belegen anzeigen lassen.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: CDRED    TYPE TABLE OF CDRED.&lt;/P&gt;&lt;P&gt;DATA: OBJECTID LIKE CDHDR-OBJECTID.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;OBJECTID = P_MATNR.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    OBJECTCLASS                = 'MATERIAL'&lt;/P&gt;&lt;P&gt;    OBJECTID                   = OBJECTID&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    EDITPOS                    = CDRED&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    NO_POSITION_FOUND          = 1&lt;/P&gt;&lt;P&gt;    WRONG_ACCESS_TO_ARCHIVE    = 2&lt;/P&gt;&lt;P&gt;    TIME_ZONE_CONVERSION_ERROR = 3&lt;/P&gt;&lt;P&gt;    OTHERS                     = 4.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0. WRITE SY-SUBRC. ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 15:13:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502347#M565526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T15:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502348#M565527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i give the field name, whose changes i want to record and display  in table key.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 15:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502348#M565527</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T15:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502349#M565528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 15:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502349#M565528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T15:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502350#M565529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My requirement is to go thru  FM CHANGEDOCUMENT_READ give the service entry number and get the old and new values of amount for a PO.&lt;/P&gt;&lt;P&gt;Please demonstrate how to achieve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 16:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502350#M565529</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T16:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502351#M565530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can only give PO number to this function module, get all the changes for the given date range and then keep only the field changes that you are interested in. The changes are tracked using the key fields of the main table EKKO which is the PO number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 16:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502351#M565530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T16:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502352#M565531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was told give the Service Entry Number to track the changes.......&lt;/P&gt;&lt;P&gt;However I am really not able to understand how to work with fm...&lt;/P&gt;&lt;P&gt;can you explain me in detail with a clear example.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 16:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502352#M565531</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2007-07-17T16:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502353#M565532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is a service entry number in your system? Is it a service PO? Please check if there is an entry in EKKO with that number. What transaction do you use to see the sevice entry? If it is PO like document, then you can call this function module by sending the service PO number (with leading zeros) to the OBJECTID, OBJECTCLASS = 'EINKBELEG' and DATE_OF_CHANGE = date since you want to track the changes for this PO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 16:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502353#M565532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T16:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502354#M565533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;i'm not quiet sure if the changes, wich you want to see, are be stored.&lt;/P&gt;&lt;P&gt;The simples way is, make the changes by yourselve and look in&lt;/P&gt;&lt;P&gt;table CDHDR with the date and your user-id. If you find some entries&lt;/P&gt;&lt;P&gt;in CDHDR takes this Informations for the FM CHANGEDOCUMENT_READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't find any entries in CDHDR you cannot use this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 07:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502354#M565533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T07:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: FM- ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502355#M565534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;problem solved????????????&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:59:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-error/m-p/2502355#M565534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:59:01Z</dc:date>
    </item>
  </channel>
</rss>

