Error Saving Workitem with Approval
Hello,
I'm creating an approval for a workitem but when I save the workitem I get the error: "Required property must not be null: internalApprovals.approver"
Does anyone know why? Thanks in advance.
I'm creating an approval for a workitem but when I save the workitem I get the error: "Required property must not be null: internalApprovals.approver"
Does anyone know why? Thanks in advance.
IApprovals approvals = workItem.getApprovals();
IApproval approval = approvals.createApproval(descriptor, contributorHandle);
approvals.add(approval);
3 answers
I'm creating an approval for a workitem but when I save the workitem I
get the error: "Required property must not be null:
internalApprovals.approver"
Does anyone know why? Thanks in advance.
IApprovals approvals = workItem.getApprovals();
IApproval approval = approvals.createApproval(descriptor,
contributorHandle);
approvals.add(approval);
What's the value of contributorHandle? Could it be null?
--
Regards,
Patrick
Jazz Work Item Team