![]() |
Telelogic DOORS (steve huntington) | ![]() |
new topic :
profile :
search :
help :
dashboard :
calendar :
home
|
||
Latest News:
|
|
Topic Title: Trigger to Add Shareable Section Topic Summary: Created On: 1-Jun-2004 22:12 Status: Post and Reply |
Linear : Threading : Single : Branch |
![]() |
![]()
|
![]() |
|
I have a module where I would like the ability to automatically set each new object as a shareable section. The objects in the module are all at level 1 and are created programmatically by another utility but edited by numerous individuals. Is there some way to automatically set a module up for sharing?
Any help would be greatly appreciated. |
|
![]() |
|
![]() |
|
Lockable sections are created by setting the access rights on certain objects to specific rather than inherited.
This is normally done at one level. Children of these objects have inherited permissions and are within the "section". You can set this after creating the new level 1 object: newObj = create(module) specific(newObj) or you can run through the whole module: for obj in module do { if (level obj == 1) { specific(obj) } else { inherited(obj) } } You can run this after creating new objects. According to the manual, calling specific has no effect if the object already has specific access rights. ------------------------- Tony Goodman http://www.smartdxl.com |
|
![]() |
Telelogic DOORS
» DXL Exchange
»
Trigger to Add Shareable Section
|
![]() |
FuseTalk Standard Edition v3.2 - © 1999-2009 FuseTalk Inc. All rights reserved.