B2B Data Exchange
- B2B Data Exchange 10.2.2
- All Products
Element | Description |
---|---|
Name | Name of the archive rule. |
PartnerName | Name of the partner. You can specify a partner name or use one of the following options:
|
StorageLocation | Absolute path to the directory in which to create the the archive file. The B2B Data Exchange server must be able to access the location in which you store the archive file. |
EventAge | Required. The minimum age of the event to be archived based on the last change to the event status. Specify the age in the following format: The archive includes events where the status was changed before the specified number of days, hours, and minutes. For example:
This value means that the archive utility includes only events where the event status was changed at least 20 days and 12 hours ago. |
ArchiveEvents | Indicates whether to archive events. If you set the PurgeEvents to true, use this element to specify whether the events will be archived before they are deleted from the repository. If you set ArchiveEvents to false, you cannot set the PurgeEvents element to false. Default is true. |
PurgeEvents | Indicates whether to delete events from the Data Exchange Repository. You can use this element to delete events from the repository after they are archived. If you set PurgeEvents to false, you cannot set the ArchiveEvents element to false. |
IncludeLogBlobs | Indicates whether the log data for log events will be included in the archive. Default is false. |
<ArchiveTask> <!-- archive events for a particular partner, account combination --> <ArchiveRule> <Name>Archive Rule One</Name> <PartnerName>(ALL)</PartnerName> <StorageLocation>c:\temp\archive\all</StorageLocation> <EventAge>1d 0h 0m</EventAge> <ArchiveEvents>true</ArchiveEvents> <PurgeEvents>true</PurgeEvents> <IncludeLogBlobs>false</IncludeLogBlobs> </ArchiveRule> <!-- archive the Audit Trail and system events --> <ArchiveRule> <Name>System Events</Name> <PartnerName>(SYSTEM)</PartnerName> <StorageLocation>c:\temp\archive\system</StorageLocation> <EventAge>0d 12h 00m</EventAge> <ArchiveEvents>false</ArchiveEvents> <PurgeEvents>true</PurgeEvents> <IncludeLogBlobs>true</IncludeLogBlobs> </ArchiveRule> </ArchiveTask>