API - How to create link from RAM asset to a CUSTOM RTC work item type
Hi, We have integrated RAM (7.5.1.1) with RTC (4.0.0.1). Asset type A has a resource link to RTC which will be used to link a CUSTOM RTC work-item type B. I found the following information on how to set normal attributes: How can I create an asset via the API with a link to a custom RTC work item type? Thanks! |
One answer
It should look something like this:
RAMResourceAttribute attr = (RAMResourceAttribute)ramAsset.getAssetAttribute("My Attribute"); ResourceLink link = new ResourceLink(); link.setUrl("https://example.com/ccm/WorkItem/12345"); attr.addLink(link); |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.