<?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 Archiving tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764059#M905636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we decide which tables to archive for specific archiving object? Example for  MM_EBAN (Purchase Requisitions) archiving object from which database tables we will do archivin?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats the decision factor for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 10:33:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T10:33:28Z</dc:date>
    <item>
      <title>Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764059#M905636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we decide which tables to archive for specific archiving object? Example for  MM_EBAN (Purchase Requisitions) archiving object from which database tables we will do archivin?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whats the decision factor for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 10:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764059#M905636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T10:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764060#M905637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;first you have to chalk out the important tables used in mm and their fields used in the programs.use the tcode sara,there you would find the data base tables options and a where used list.for eg if you use mkpf and mseg tables from mm module,create a archiving object mm_matbel. then specify the time period for which you want to archive the data from.&lt;/P&gt;&lt;P&gt;use tcode sare to create the object.&lt;/P&gt;&lt;P&gt;then by creating a function module you can use the arciving object.&lt;/P&gt;&lt;P&gt;specimen code :-&lt;/P&gt;&lt;P&gt;1.	OBJECT : MM_MATBEL&lt;/P&gt;&lt;P&gt;TABLE :ZARIXMM1&lt;/P&gt;&lt;P&gt;CALL FUNCTION: ASH_MM_MATBEL_READ&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;     i_archivekey                 = it_zarixmm1-archivekey&lt;/P&gt;&lt;P&gt;     i_offset                     = it_zarixmm1-archiveofs&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     et_mkpf                      = mkpf_wa&lt;/P&gt;&lt;P&gt;     et_mseg                      = mseg_wa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DECLARATION: DATA: xmkpf LIKE mkpf OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      xmseg LIKE mseg OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_ZARIXMM1 OCCURS 0,&lt;/P&gt;&lt;P&gt;      ARCHIVEKEY LIKE ZARIXMM1-ARCHIVEKEY,&lt;/P&gt;&lt;P&gt;      ARCHIVEOFS LIKE ZARIXMM1-ARCHIVEOFS,&lt;/P&gt;&lt;P&gt;      END OF IT_ZARIXMM1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:mkpf_wa  TYPE mkpf OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:mseg_wa TYPE mseg OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:mseg_ARC TYPE mseg OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:mkpf_ARC TYPE mkpf OCCURS 0 WITH HEADER LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hopefully it will hepl you.&lt;/P&gt;&lt;P&gt;reward if helpful.&lt;/P&gt;&lt;P&gt;thanks.............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764060#M905637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764061#M905638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check FM ADK_CCMS_GET_TABLES to find out the tables specific to an archive object and similary check FM ADK_CCMS_GET_OBJECTS to find out archive objects specific to tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check tcode archguide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lakshman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764061#M905638</guid>
      <dc:creator>Lakshmant1</dc:creator>
      <dc:date>2008-05-05T11:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764062#M905639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks for u r reply, Still iam nor clear , How can we find out which tables do we need to archive for MM_EBAN archiving object? Is there any guidelines for deciding tables to do archiving?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:27:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764062#M905639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T11:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764063#M905640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To see the tables, you have to use FM ADK_CCMS_GET_TABLES by passing the archive object name. For each archive object, there will be a write, reload, delete and read program. Once you run these program it will use all the tables related to archive object to fetch the data. Also you can check the network graphics from  transaction SARA to see the dependencies of archive objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lakshman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 11:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764063#M905640</guid>
      <dc:creator>Lakshmant1</dc:creator>
      <dc:date>2008-05-05T11:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764064#M905641</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;Thanks for u r reply, Still  i am not clear what are the tables will get archived for the archiving object MM_EBAN?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where we will specify these table should undergone for archiving?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 12:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764064#M905641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T12:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Archiving tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764065#M905642</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;T-code DB15 will help to find the relevant tables for a particular archiving object, also the relevant archiving objects for a particular table.Depends upon the option you select. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to t-code DB15 and give the archive object name, you will get all the table name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;PriyamVada.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 20:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archiving-tables/m-p/3764065#M905642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T20:32:16Z</dc:date>
    </item>
  </channel>
</rss>

