Hello, |
Re: Best way to mass edit (delete) links? |
Re: Best way to mass edit (delete) links? With those requirements displayed, choose Links>delete links. Be mindful of your options. You want to have the target module opened and choose "display set to display set". Go ahead and do it and check the results. As long as you do not save your module you can try again. Ron's method details deleting all links--which from reading your question I'm not sure that is what you were looking to do. |
Re: Best way to mass edit (delete) links? C:\Program Files\Telelogic\DOORS_8.1\lib\dxl\addins\user Select the object or objects you want to delete, run the DXL, and when you are sure the displayed objects are the ones you want to have links delete, then run the Links menu >>Delete All Links That deletes the links from this object, and it opens up other modules Edit if they source links to this object, and delete the links as well. Those other modules are open Edit invisibly, but are NOT saved. After deleting the links (and presumably then manually deleting the objects), you should exit DOORS and then Confirm for every module it asks to save. >Louie // Show Current Object or Selection only /* Show the current object or selection, hiding all other objects */ Object obj for obj in (current Module) do { if (obj == current Object) accept obj elseif (isSelected(obj)) accept obj else reject(obj) } filtering on // end Show Current Objet or Selection only |