is there any api to get WTChangeActivity2 from Workitem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
is there any api to get WTChangeActivity2 from Workitem?
Im trying to get all the change activities assigned to workitems.
Solved! Go to Solution.
- Labels:
-
API
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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