<?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: How to use Change doc Function Module? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325447#M1227232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.Problem solved. Points assigned.&lt;/P&gt;&lt;P&gt;U r Right. There was some inconsistency in FM Generation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.Nice doc though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Mar 2009 09:23:43 GMT</pubDate>
    <dc:creator>vsubbakrishna</dc:creator>
    <dc:date>2009-03-09T09:23:43Z</dc:date>
    <item>
      <title>How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325441#M1227226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fn mod:ZSUBTESTCHG_WRITE_DOCUMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import parameters               Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OBJECTID                        ZSUBTESTCHG&lt;/P&gt;&lt;P&gt;TCODE                            SE37&lt;/P&gt;&lt;P&gt;UTIME                             00:00:00&lt;/P&gt;&lt;P&gt;UDATE                             09.03.2009&lt;/P&gt;&lt;P&gt;USERNAME                        'TESTUSER'&lt;/P&gt;&lt;P&gt;PLANNED_CHANGE_NUMBER&lt;/P&gt;&lt;P&gt;OBJECT_CHANGE_INDICATOR            I&lt;/P&gt;&lt;P&gt;PLANNED_OR_REAL_CHANGES         R&lt;/P&gt;&lt;P&gt;NO_CHANGE_POINTERS&lt;/P&gt;&lt;P&gt;UPD_ICDTXT_ZSUBTESTCHG               I&lt;/P&gt;&lt;P&gt;N_ZSUBTEST                         2         TEST&lt;/P&gt;&lt;P&gt;O_ZSUBTEST                         2         TEST&lt;/P&gt;&lt;P&gt;UPD_ZSUBTEST                    I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables                          Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ICDTXT_ZSUBTESTCHG                 0 Entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a ztable 'ZSUBTEST' with 2 fields DEPTID and DEPNAME and ticked "change document" for data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created the above change doc write fn module. I am trying to insert a new reocrd into table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use ZSUBTESTCHG_WRITE_DOCUMENT so that even if i try to change an existing record in ztable the old and new values for a particulat ztable will be filled in CDPOS Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would appreciate if you can suggest me how to use in1) Update and 2) Insert scenarios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 05:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325441#M1227226</guid>
      <dc:creator>vsubbakrishna</dc:creator>
      <dc:date>2009-03-09T05:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325442#M1227227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this,&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Types Declaration***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;types: BEGIN OF X_audit,&lt;/P&gt;&lt;P&gt;        -&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;Field of ZAUDIT TABLE OR a custom created table------&lt;/P&gt;&lt;P&gt;       END OF X_audit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Data Declaration***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: w_newvalues type X_audit,&lt;/P&gt;&lt;P&gt;      w_oldvalues type X_audit.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_cdtxt OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE cdtxt.&lt;/P&gt;&lt;P&gt;DATA: END OF t_cdtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  l_tcode type cdhdr-tcode ,&lt;/P&gt;&lt;P&gt;       l_time type cdhdr-utime,&lt;/P&gt;&lt;P&gt;       l_usnam type cdhdr-username,&lt;/P&gt;&lt;P&gt;       l_date type cdhdr-udate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Constants&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;CONSTANTS : l_objectid TYPE cdhdr-objectid VALUE 'ZAUDIT_CD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear: l_tcode,l_time, l_usnam, l_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear: w_newvalues, w_oldvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Start-Of-Selection&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Populating w_oldvalues workarea with old values from the table&lt;/P&gt;&lt;P&gt;Select single * from zaudit_t &lt;/P&gt;&lt;P&gt;                Into w_oldvalues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                Where belnr eq belnr_1 &lt;/P&gt;&lt;P&gt;                And  gjahr eq gjahr_1&lt;/P&gt;&lt;P&gt;                And  bukrs eq bukrs_1. u201C where, belnr_1, gjahr_1, bukrs_1  are the fields on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;here we are populating w_newvalues workarea with new values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;W_newvalues-f1 = w_oldvalues-f1&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;f2 = u2018XXXXXXXu2019     -&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;f3 = u2018YYYYYYYu2019&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;f4 = u2018ZZZZZZZu2019&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_tcode = sy-tcode.&lt;/P&gt;&lt;P&gt;l_time = sy-uzeit.&lt;/P&gt;&lt;P&gt;l_usnam = sy-uname.&lt;/P&gt;&lt;P&gt;l_date = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;modify the table with new values***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;MODIFY zaudit_t FROM w_submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    MESSAGE 'Document Updated' TYPE 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'ZAUDIT_CD1_WRITE_DOCUMENT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      objectid                   = l_objectid&lt;/P&gt;&lt;P&gt;      tcode                      = l_tcode&lt;/P&gt;&lt;P&gt;      utime                      = l_time&lt;/P&gt;&lt;P&gt;      udate                      = l_date&lt;/P&gt;&lt;P&gt;      username                   = l_usnam&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    PLANNED_CHANGE_NUMBER      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      object_change_indicator    = 'U'           u201CU-update, I-insert, D-delete&lt;/P&gt;&lt;UL&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;/UL&gt;&lt;P&gt;      upd_icdtxt_zaudit_cd       = 'U'&lt;/P&gt;&lt;P&gt;      n_zaudit_t                 = w_newvalues  u201Cpass the work area containing new values      &lt;/P&gt;&lt;P&gt;      o_zaudit_t                 = w_oldvalues  u201Cpass the work area containing old values&lt;/P&gt;&lt;P&gt;      upd_zaudit_t               = 'U'   	 u201C this parameter gives the values in the columns(new value, old value and changed field name) of table CDPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      icdtxt_zaudit_cd           = t_cdtxt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;   MESSAGE 'Document Not Updated' TYPE 'S'.&lt;/P&gt;&lt;P&gt;ENDIF. u201CIF sy-subrc EQ 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 06:11:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325442#M1227227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T06:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325443#M1227228</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;upd_zaudit_t = 'U'. by setting this parameter u'll get the changed values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;their is not update and insert scenarios exist in change document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you update a record, set this upd_zaudit_t parameter to 'U'. if your are inserting a record Set the value to 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, from this you can understand that what ever the value we passs in this parameter the status will we updated as you by the value you pass to the parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 06:16:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325443#M1227228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T06:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325444#M1227229</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 am able to generate CDHDR and CDPOS entries.I am only changing DEPNAME entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But 1) I am not getting FNAME as DEPNAME and old values and new values in CDPOS?&lt;/P&gt;&lt;P&gt;2)Also when I used 'U' for update it was not generating change doc numbers?&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;OBJECTCLAS    ZSUBTESTCHG&lt;/P&gt;&lt;P&gt;OBJECTID      ZSUBTESTCHG&lt;/P&gt;&lt;P&gt;CHANGENR      15757&lt;/P&gt;&lt;P&gt;TABNAME       ZSUBTEST&lt;/P&gt;&lt;P&gt;TABKEY        1&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FNAME&lt;/STRONG&gt;         KEY&lt;/P&gt;&lt;P&gt;CHNGIND       I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEXT CASE     1&lt;/P&gt;&lt;P&gt;UNIT OLD&lt;/P&gt;&lt;P&gt;UNIT NEW&lt;/P&gt;&lt;P&gt;CUKY OLD&lt;/P&gt;&lt;P&gt;CUKY NEW&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VALUE NEW&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VALUE OLD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSUB_CHGDOC.&lt;/P&gt;&lt;P&gt;types: BEGIN OF X_audit.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE ZSUBTEST.&lt;/P&gt;&lt;P&gt;TYPES END OF X_audit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:P_DEPTID LIKE ZSUBTEST-DEPTID.&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Data Declaration&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: w_newvalues type X_audit,&lt;/P&gt;&lt;P&gt;w_oldvalues type X_audit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_cdtxt OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE cdtxt.&lt;/P&gt;&lt;P&gt;DATA: END OF t_cdtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_tcode type cdhdr-tcode ,&lt;/P&gt;&lt;P&gt;l_time type cdhdr-utime,&lt;/P&gt;&lt;P&gt;l_usnam type cdhdr-username,&lt;/P&gt;&lt;P&gt;l_date type cdhdr-udate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Constants&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;CONSTANTS : l_objectid TYPE cdhdr-objectid VALUE 'ZSUBTESTCHG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Start-Of-Selection&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;  Clear: l_tcode,l_time, l_usnam, l_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Clear: w_newvalues, w_oldvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Select single * from ZSUBTEST&lt;/P&gt;&lt;P&gt;  Into w_oldvalues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Where DEPTID eq P_DEPTID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_newvalues-DEPTID = '1'.&lt;/P&gt;&lt;P&gt;  W_newvalues-DEPNAME = 'SUBBA NEW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  l_tcode = sy-tcode.&lt;/P&gt;&lt;P&gt;  l_time = sy-uzeit.&lt;/P&gt;&lt;P&gt;  l_usnam = sy-uname.&lt;/P&gt;&lt;P&gt;  l_date = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;modify the table with new values&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;  MODIFY ZSUBTEST FROM W_newvalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    MESSAGE 'Document Updated' TYPE 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ZSUBTESTCHG_WRITE_DOCUMENT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;         OBJECTID                      = l_objectid&lt;/P&gt;&lt;P&gt;         TCODE                         = l_tcode&lt;/P&gt;&lt;P&gt;         UTIME                         = l_time&lt;/P&gt;&lt;P&gt;         UDATE                         = l_date&lt;/P&gt;&lt;P&gt;         USERNAME                      = l_usnam&lt;/P&gt;&lt;P&gt;        PLANNED_CHANGE_NUMBER         = ' '&lt;/P&gt;&lt;P&gt;        OBJECT_CHANGE_INDICATOR       = 'I'&lt;/P&gt;&lt;P&gt;        PLANNED_OR_REAL_CHANGES       = ' '&lt;/P&gt;&lt;P&gt;        NO_CHANGE_POINTERS            = ' '&lt;/P&gt;&lt;P&gt;        UPD_ICDTXT_ZSUBTESTCHG        = 'I'&lt;/P&gt;&lt;P&gt;         N_ZSUBTEST                    = w_newvalues&lt;/P&gt;&lt;P&gt;         O_ZSUBTEST                    = w_oldvalues&lt;/P&gt;&lt;P&gt;        UPD_ZSUBTEST                  = 'I'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;         ICDTXT_ZSUBTESTCHG            = t_cdtxt&lt;/P&gt;&lt;P&gt;               .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;    MESSAGE 'Document Not Updated' TYPE 'S'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 06:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325444#M1227229</guid>
      <dc:creator>vsubbakrishna</dc:creator>
      <dc:date>2009-03-09T06:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325445#M1227230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i understood that you have not ticked one check box while genetating a function module.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while creating you need to tick doc. for individual at delete check box. then only you'll get the fname.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 07:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325445#M1227230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T07:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325446#M1227231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;link: [http://www.scribd.com/doc/12627676/Logging-Using-Change-Document]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this document and follow the steps properly how i created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kat k on Mar 9, 2009 8:33 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kat k on Mar 9, 2009 8:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 07:33:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325446#M1227231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T07:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325447#M1227232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.Problem solved. Points assigned.&lt;/P&gt;&lt;P&gt;U r Right. There was some inconsistency in FM Generation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.Nice doc though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 09:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325447#M1227232</guid>
      <dc:creator>vsubbakrishna</dc:creator>
      <dc:date>2009-03-09T09:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325448#M1227233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was one more type in this change documents...if you refer EINKBELEG we can see &lt;/P&gt;&lt;P&gt;Dictionary structures&lt;/P&gt;&lt;P&gt;UEKEK                          UEKES                          UEKET                          UEKKN&lt;/P&gt;&lt;P&gt;UEKPA                          UEKPO                          UKONVC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are these structures.Is it possible to use these kind of structures in our example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 09:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325448#M1227233</guid>
      <dc:creator>vsubbakrishna</dc:creator>
      <dc:date>2009-03-09T09:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325449#M1227234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't understand where is it. could you tell me how do i check or post sample code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 09:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325449#M1227234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T09:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325450#M1227235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked the FM EINKBELEG_WRITE_DOCUMENT...In which it refered to CHANGEDOCUMENT_MULTIPLE_CASE. May be it is used in multiple line items scenario where we could keep track of change at item level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 10:31:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325450#M1227235</guid>
      <dc:creator>vsubbakrishna</dc:creator>
      <dc:date>2009-03-09T10:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Change doc Function Module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325451#M1227236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi subba,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;normaly now we have done the change document settings for only one table. in actual scenario while creating the function module they include multiple table like you c in FM we can find these tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EKKO&lt;/P&gt;&lt;P&gt;EKPA&lt;/P&gt;&lt;P&gt;EKPO&lt;/P&gt;&lt;P&gt;KONV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so where ever here multiple case is generated and for only one table single case will be generated by SCDO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 12:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-change-doc-function-module/m-p/5325451#M1227236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T12:11:13Z</dc:date>
    </item>
  </channel>
</rss>

