Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello All,
I want to get the AddressedBy2 links from CN &CR which API I can use it?
Thanks.
Hi @BA_10780502
you can try following services
// from changeRequest
QueryResult qsCN = ChangeHelper2.service.getChangeOrders(changeRequest2, false);
// from changeNotice
QueryResult qsCR = ChangeHelper2.service.getChangeRequest(order, false);
Check what is in the queryResult there should be a link.
if you change the Boolean to true, it should return the target objects Notice or Request.
PetrH