Kernel::System::ITSMChange::ITSMCondition::Attribute - condition attribute lib
All functions for condition attributes in ITSMChangeManagement.
AttributeAdd()
Add a new condition attribute.
my $AttributeID = $ConditionObject->AttributeAdd(
Name => 'AttributeName',
UserID => 1,
);
AttributeUpdate()
Update a condition attribute.
my $Success = $ConditionObject->AttributeUpdate(
AttributeID => 1234,
Name => 'NewAttributeName',
UserID => 1,
);
AttributeGet()
Get a condition attribute for a given attribute id. Returns a hash reference of the attribute data.
my $ConditionAttributeRef = $ConditionObject->AttributeGet(
AttributeID => 1234,
UserID => 1,
);
The returned hash reference contains following elements:
$ConditionAttribute{AttributeID}
$ConditionAttribute{Name}
AttributeLookup()
This method does a lookup for a condition attribute. If an attribute id is given, it returns the name of the attribute. If the name of the attribute is given, the appropriate id is returned.
my $AttributeName = $ConditionObject->AttributeLookup(
AttributeID => 4321,
);
my $AttributeID = $ConditionObject->AttributeLookup(
Name => 'AttributeName',
);
AttributeList()
Returns a list of all condition attributes as hash reference
my $ConditionAttributesRef = $ConditionObject->AttributeList(
UserID => 1,
);
The returned hash reference contains entries like this:
$ConditionAttribute{AttributeID} = 'AttributeName'
AttributeDelete()
Deletes a condition attribute.
my $Success = $ConditionObject->AttributeDelete(
AttributeID => 123,
UserID => 1,
);
This software is part of the OTRS project (http://otrs.org/).
This software comes with ABSOLUTELY NO WARRANTY. For details, see the enclosed file COPYING for license information (AGPL). If you did not receive this file, see http://www.gnu.org/licenses/agpl.txt.