ProcessManagement#
NAME#
Kernel::System::Command::ExportImport::ProcessManagement
DESCRIPTION#
ProcessManagement related functions to handle import/export command behavior.
PUBLIC INTERFACE#
new()#
Don’t use the constructor directly, use the ObjectManager instead:
my $CommandExportImportProcessManagementObject = $Kernel::OM->Get('Kernel::System::Command::ExportImport::Base');
ExportPreCheck()#
performs pre check for exporting
my $Success = $CommandExportImportProcessManagementObject->ExportPreCheck( %Params );
ExportHandle()#
perform command export operation
my $Result = $CommandExportImportProcessManagementObject->ExportHandle( %Params );
ImportPreCheck()#
performs pre check for importing
my $Success = $CommandExportImportProcessManagementObject->ImportPreCheck( %Params );
ImportHandle()#
perform command import operation
my $Result = $CommandExportImportProcessManagementObject->ImportHandle( %Params );