Solved
is there any api to get WTChangeActivity2 from Workitem?
Im trying to get all the change activities assigned to workitems.
Im trying to get all the change activities assigned to workitems.
Hi
If you need to get object which is related to WorkItem usually it is primaryBusinessObject
workitem.getPrimaryBusinessObject().getObject()
It can be any type in a system so you need to check a type and cast to the correct type.
WTChangeActivity2 WTCA22 = (WTChangeActivity2)workitem.getPrimaryBusinessObject().getObject()
PetrH
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.