I am using DOORS 8.3 and i want to create links DXL Can any one help me with the code. I have tried to find the presence of links in the module using DXL and it works properly. However I don't know the command to create links using DXL.
相关问题
- (DXL/Doors) How to find and count a text in a stri
- How to access the baseline comparison results in I
- Are the dynamic arrays in DOORS data base worth us
- Java program for IBM Doors
- How to give Exclusive edit permissions?
相关文章
- Are the dynamic arrays in DOORS data base worth us
- 创建对象链接到不同的门项目(Create object link to different DOOR
- 创建使用DXL DOORS链接(Creating links in DOORS using DXL)
- Java program for IBM Doors
- How to give Exclusive edit permissions?
- what is a vba command to close read-only modules a
- Creating links in DOORS using DXL
- Create object link to different DOORS project
To create a link in DXL you need 3 pieces of information:
string linkMod = /Project/Folder/LinkModuleName
The full Link module path.Object src
the source objectObject tgt
the Target objectYou must have edit access to the Source object when you create the link. After you assign the variables above with the correct objects and the full link module path, you can use the operation below to create the link:
That will create a link from the source to the target, using the link module specified.
Hope this helps.
---EDIT---
If your objects are in separate modules, you will need to open each of them to get the correct object handles.
Then the link is made the same way:
src -> linkMod -> tgt