Skip to main content
7-Bedrock
November 29, 2023
Question

How to get AddressedBy2 Links using API

  • November 29, 2023
  • 1 reply
  • 635 views

Hello All,

I want to get the AddressedBy2 links from CN &CR which API I can use it?

Thanks.

1 reply

HelesicPetr
22-Sapphire II
22-Sapphire II
November 29, 2023

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