Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Im trying to get all the change activities assigned to workitems.
Solved! Go to Solution.
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
Clarify your needs.
The WorkItem can have only one Change Activity.
Work item is a task for a user. One task can not be assigned to more ChangeActivities as WTChangeActivity2
PetrH
Hi Peter,
For example, if i have a workitem from the queryspec "QuerySpec querySpec = new QuerySpec(WorkItem.class);" with some conditions, i will be ending up with many workitems.
Is there a way to get a changenotice assigned to it?
Or for each and every workitem, can i get an associated change notice?
Thank and Regards,
Manoj.
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