Samples > Data load utility samples > Examples: Mapping data > Examples: Mapping catalog data > Examples: Mapping master catalog and sales catalog data
Example: Master and sales catalog descriptions
You can insert, replace, or delete multiple master and sales catalog descriptions simultaneously using the data load utility. These examples uses a CSV file to demonstrate how to insert, replace, or delete the master and sales catalog description data.
CSV file column definitions
- Identifier
- (String) The catalog identifier. Either this field or the CatalogUniqueId is required.
- CatalogUniqueId
- (BigInt) The internal unique reference number of the catalog. Either this field or the Identifier is required.
- Name
- (String) The language sensitive display name of this catalog.
- ShortDescription
- (String) A language sensitive short description of this catalog.
- LongDescription
- (String) A language sensitive long description of this catalog.
- Thumbnail
- (String) The language sensitive thumbnail image path of this catalog. The forward slash '/' should be used in the path. Do not use backward slash '\'. For example, images/G1.jpg.
- FullImage
- (String)The language sensitive full image path of this catalog. The forward slash '/' should be used in the path. Do not use backward slash '\'. For example, images/G1.jpg .
- Delete
- (String) Indicates whether to delete. If you are performing a delete operation, specify this column. A value of "1", indicates that the row should be deleted.
CSV file with sample catalog description data
Insert or replaceIn this example, you insert four new catalog description data. The file contains sample master and sales catalog description data. Each column is delimited by a comma.
Formatted CSV file with column headings
Identifier Name ShortDescription LongDescription Thumbnail FullImage Example_master_cat Example master catalog Example master catalog short description Example master catalog long description master_thumb/image.jpg master_full/image.jpg Summer_sales_cat1 Summer sales catalog Summer sales catalog short description Summer sales catalog long description summer_thumb/image.jpg summer_full/image.jpg Winter_sales_cat2 Winter sales catalog Winter sales catalog short description Winter sales catalog long description Winter_thumb/image.jpg Winter_full/image.jpg Spring_sales_cat3 Spring sales catalog Spring sales catalog short description Spring sales catalog long description Spring_thumb/image.jpg Spring_full/image.jpg
DeleteIn this example the data source is a CSV file. The file contains sample master and sales catalog description data. The first three rows of data will be deleted, and the fourth row will replace existing data. CSV file with sample catalog description data.
Formatted CSV file with column headings
Identifier Name ShortDescription LongDescription Thumbnail FullImage Delete Example_master_cat Example master catalog Example master catalog short description Example master catalog long description master_thumb/image.jpg master_full/image.jpg 1 Summer_sales_cat1 Summer sales catalog Summer sales catalog short description Summer sales catalog long description summer_thumb/image.jpg summer_full/image.jpg 1 Winter_sales_cat2 Winter sales catalog Winter sales catalog short description Winter sales catalog long description Winter_thumb/image.jpg Winter_full/image.jpg 1 Spring_sales_cat3 New spring sales catalog name Spring sales catalog new short description Spring sales catalog new long description Spring_thumb/image.jpg Spring_full/image.jpg
Map data
The following code snippet from the catalog description loader configuration file demonstrates how to map each value to a business object logical schema path.
<_config:DataMapping> <_config:mapping xpath="CatalogIdentifier/ExternalIdentifier/Identifier" value="Identifier" valueFrom="InputData"/> <_config:mapping xpath="CatalogIdentifier/UniqueID" value="CatalogUniqueId" valueFrom="InputData"/> <_config:mapping xpath="Description[0]/Name" value="Name" valueFrom="InputData" /> <_config:mapping xpath="Description[0]/ShortDescription" value="ShortDescription" valueFrom="InputData" /> <_config:mapping xpath="Description[0]/LongDescription" value="LongDescription" valueFrom="InputData" /> <_config:mapping xpath="Description[0]/Thumbnail" value="Thumbnail" valueFrom="InputData" /> <_config:mapping xpath="Description[0]/FullImage" value="FullImage" valueFrom="InputData" /> <_config:mapping xpath="" value="Delete" deleteValue="1"/> </_config:DataMapping>If you are performing an insert or replace operation, do not specify the "Delete" column in the CSV file or you can leave the "Delete" column empty.
Business object mediator
The mediator class name is CatalogDescriptionMediator. To initialize attribute dictionary for the store, see Initialize the attribute dictionary.