Package DE_EPAGES::Catalog::API::CSV::CatalogExportImport
This module implements the high level interface for import and export of CatalogProductMaps to CSV files.
Functions
csvExport
Exports objects to a CSV file.
Syntax |
csvExport($Shop, $PathFileName, $hFileFormat); |
Example |
my $Driver = DE_EPAGES::Catalog::API::CSV::CatalogExportImport->new; $Driver->csvExport( $Shop, 'CatalogProductMaps.csv', { 'LanguageCode2s' => ['de', 'en'], 'LocaleID' => 'de_DE', } ); |
Input |
|
csvImport
Imports objects from a CSV file into a shop.
Syntax |
$Driver->csvImport($Shop, $PathFileName, $hFileFormat); |
Example |
my $Driver = DE_EPAGES::Catalog::API::CSV::CatalogExportImport->new; $Driver->csvImport( $Shop , 'CatalogProductMaps.csv', { 'LanguageCode2s' => ['de', 'en'], 'LocaleID' => 'de_DE', } ); |
Input |
|
new
Creates a new csv export driver.
Syntax |
$Driver= DE_EPAGES::Catalog::API::CSV::CatalogExportImport->new(%options); |
Example |
$Driver= DE_EPAGES::Catalog::API::CSV::CatalogExportImport->new; |
Input |
|
Return |
|
warningCodes
Returns the warning codes for csv export.
Syntax |
$aWarningCodes = $Driver->warningCodes(); |
Return |
|