Tried looking at this page for reference and playing around with a few of the arguements, but had no luck: https://www.mathworks.com/help/slrequirements/ug/requirements-traceability-with-ibm-doors-next.html
How do I manually write what module to import in Simulink Requirements Toolbox for IBM?
5 次查看(过去 30 天)
显示 更早的评论
When linking requirements using the requirements toolbox widget and simulink I have to select both the module configuration and the change-set or global configuration, to do so I have to scroll through a large portion of other modules, and configurations to find what I am looking for. I am trying to find a solution to stream line this process by either enabling a way to filter what the developer is looking for or use a few lines of code to manually set the module and configuration. Any help or advice would be greatly appreciated. Using MATLAB version R2022A and the requirement toolbox version 2020A.
回答(1 个)
Josh Kahn
2024-1-18
A lot of these issues tend to be very specific to how your DNG environment was set up. If you can't get this script below working, please reach out to tech support and we will help get you up and running.
Josh
DNG_SERVER = 'https://my.DNG.server:9443';
PROJECT_NAME = 'MyProject';
SERVICE_ROOT = 'rm';
CATALOG_PATH = '/oslc_rm/catalog';
CONFIG_CONTEXT = 'MyConfigContext';
client = oslc.Client;
setServer(client, DNG_SERVER);
login(client);
setServiceRoot(client, SERVICE_ROOT);
setCatalogPath(client, CATALOG_PATH);
setConfigurationContext(client, CONFIG_CONTEXT)
setServiceProvider(client, PROJECT_NAME);
For more info on oslc.client: https://www.mathworks.com/help/slrequirements/ref/oslc.client.html
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!