Hi,
I want to store a variable's value in a dynamic field in a perl module. How is this possible?
e.g.
value is stored in variable : $test and I have to put this into Dynamic field.
my $Success = $Self->{BackendObject}->ValueSet(
DynamicFieldConfig => $DynamicFieldConfig,
ObjectID => $Param{Data}->{TicketID},
Value => ,
);
Set Computed Value in the dynamic field
Re: Set Computed Value in the dynamic field
Hello,
try to use:
Cheers, Marco
try to use:
Code: Select all
my $Success = $BackendObject->ValueSet(
DynamicFieldConfig => $DynamicFieldConfig,
ObjectID => $ObjectID,
Value => $test,
UserID => $Self->{UserID}, # $Self->{UserID} to use the current login user id or 1 to use root
);