Why Compnent in RTC SCM missing Copy URL option ?
![]() I would like to know the function implementing for Opening the Component.
|
One answer
![]()
Ralph Schoon (62.7k●3●36●43)
| answered Feb 24 '17, 6:30 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Probably because there never was a requirement to implement it. It is also consistently missing from the menu in the component editor. Feel free to create an enhancement request.
I am not aware if there is a URI for components that you could use to open it. There is no way to link a work item to a component either so it is hard to know how such an URI would look like.
Comments Use Case: I know the UUID of component but I am not finding the method to open the component in the eclipse or in the web browser
![]() FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
If you are writing Java (and have the component as you say) and want to open the Component editor, you can use:
ComponentWrapper wrapper = new ComponentWrapper(repo, component);
ComponentEditorInput input = ComponentEditorInput.newForEdit(ComponentWrapper componentWrapper);
ComponentEditor.open(page, input);
Related to the 'Copy URL' action, this is simply a case of not having enough strong requirements in the past to implement such an action. You can open an RFE or enhancement if you really need one.
Otherwise, if you are writing your own code, you could have craft such a url as shown below: |