NAME
Kernel::System::ITSMConfigItem::XML::Type::ReferenceService – xml backend module
SYNOPSIS
All xml functions of ReferenceService objects
- new()
-
create an object
use Kernel::System::ObjectManager; local $Kernel::OM = Kernel::System::ObjectManager->new(); my $BackendObject = $ConfigItemObject->_LoadXMLTypeBackend( Type => 'ReferenceService', ); - ValueLookup()
-
get the xml data of a version
my $Value = $BackendObject->ValueLookup( Value => 11, # (optional) ); - StatsAttributeCreate()
-
create a attribute array for the stats framework
my $Attribute = $BackendObject->StatsAttributeCreate( Key => 'Key::Subkey', Name => 'Name', Item => $ItemRef, ); - ExportSearchValuePrepare()
-
prepare search value for export
my $ArrayRef = $BackendObject->ExportSearchValuePrepare( Value => 11, # (optional) ); - ExportValuePrepare()
-
prepare value for export
my $Value = $BackendObject->ExportValuePrepare( Value => 11, # (optional) ); - ImportSearchValuePrepare()
-
prepare search value for import
my $ArrayRef = $BackendObject->ImportSearchValuePrepare( Value => 11, # (optional) ); - ImportValuePrepare()
-
prepare value for import
my $Value = $BackendObject->ImportValuePrepare( Value => 11, # (optional) );
