Example: Deleting ATP inventory configuration
You can delete your ATP inventory configuration by using the Data Load utility. This example uses a CSV file to demonstrate how to delete your ATP inventory configuration information.
This example uses a CSV file to demonstrate how to insert, replace, or delete your data. You can also create and use an XML formatted file to insert, replace, or delete your data. If you choose to create and use an XML formatted file, ensure that your XML elements use the same names as are used for CSV column names.
Use the Data Load utility to delete ATP inventory configuration data from the database.
CSV file with sample ATP inventory configuration data
In this example the data source is a CSV file named ATPconfig_delete.csv. The file contains sample ATP inventory configuration data with minimum columns that are necessary for "delete" dataLoadMode. Each column is delimited by a comma.
CatalogEntryMediator is used to delete catalog entry data together with ATP inventory configuration data. FulfillmentPropertyMediator is used to delete ATP inventory configuration data only, with no impact to corresponding catalog entry data.
PartNumber | ParentPartNumber | Type | CatEntryStoreIdentifier | |
---|---|---|---|---|
Example-PN-10001 | Product | 10701 | ||
Example-PN-100012 | Example-PN-10001 | Item |
CSV column and XML element definitions
- PartNumber
- (Mandatory, string) The reference number that identifies the part number of the catalog entry. It uniquely identifies a catalog entry for a particular owner. This field is mandatory and cannot be null.
- ParentPartNumber
- (String) The part number of a parent product of this item. It is used to retrieve BASEITEM_ID in BASEITEM table, together with the owner id of this item.
- Type
- (Mandatory, string) This field defines the type of catalog entry. The values for Type are "Item", "Product", "Bundle", and "Package". This field is mandatory and cannot be null.
- CatEntryStoreIdentifier
- (String) This field is used in an extended sites store. If the CatalogEntry is defined in a catalog entry asset store, this field stands for the identifier of the catalog entry asset store. This identifier is used to retrieve the catalog entryOwner.
Other optional fields not included in the example:
- CatalogEntryUniqueId
- (Long) The identifier of the catalog entry. It is used to retrieve a record in CATENTRY table, then BASEITEM_ID, ITEMSPC_ID, and CATENTTYPE_ID can be got from the record. If this field is not specified in CSV file, PartNumber is used to retrieve these IDs.
- ParentCatalogEntryUniqueId
- (Long) The identifier of the parent catalog entry. It is used to retrieve the BASEITEM_ID corresponding to the parent catalog entry. If this field is not specified in CSV file, BASEITEM_ID is retrieved by ParentPartNumber.
Business context data
The following code snippet from the wc-dataload-env.xml configuration file provides the business context data necessary for loading the data:
<_config:BusinessContext storeIdentifier="ConsumerDirect" langId="-1">
</_config:BusinessContext>
- storeIdentifier
- (String) The identifier of the store this catalog entry belongs to, such as ConsumerDirect.
- langId
- (Int) The identifier of a language that is used to load data to BASEITEMDSC. Default value is "-1".
Mapping data
The following snippet from the sample configuration file demonstrates how to map each column of data in the source CSV file to a value
<_config:DataReader className="com.ibm.commerce.foundation.dataload.datareader.CSVReader" firstLineIsHeader="true">
<_config:Data>
<_config:column number="1" name="PartNumber" />
<_config:column number="2" name="ParentPartNumber" />
<_config:column number="3" name="Type" />
<_config:column number="4" name="CatEntryStoreIdentifier" />
</_config:Data>
</_config:DataSource>
The following snippet from the sample configuration file demonstrates how to map each column of the data in the CSV file to a business object logical schema path. The attribute 'value' represents the name of a column of the CSV file that is defined in the configuration snippet. Each column in the CSV file must have a mapping to the logical schema path.
<_config:DataMapping>
<_config:mapping xpath="CatalogEntryIdentifier/ExternalIdentifier/PartNumber" value="PartNumber" valueFrom="InputData"/>
<_config:mapping xpath="ParentCatalogEntryIdentifier/ExternalIdentifier/PartNumber" value="ParentPartNumber" valueFrom="InputData"/>
<_config:mapping xpath="catalogEntryTypeCode" value="Type" valueFrom="InputData"/>
<_config:mapping xpath="InventoryReceiptIdentifier/ExternalIdentifier/CatalogEntryIdentifier/ExternalIdentifier/StoreIdentifier/ExternalIdentifier/NameIdentifier" value="CatEntryStoreIdentifier" />
</_config:DataMapping>
Business object mediator
The Data Load utility provides a business object mediator for deleting ATP inventory configuration data together with catalog entry data. The mediator class name is com.ibm.commerce.catalog.dataload.mediator.CatalogEntryMediator. For deleting inventory configuration data only, the mediator class name is com.ibm.commerce.catalog.dataload.mediator.FulfillmentPropertyMediator