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