Questions tagged [ibm-doors]

DXL (DOORS Extension Language) is a scripting language for IBM Engineering Requirements Management DOORS (formerly known as IBM Rational DOORS).

IBM Engineering Requirements Management DOORS is a flexible and customizable requirements management tool. It's functionality (front and back end) can be extended with the DOORS Extension Language (DXL). This tag is for all questions about the usage of this scripting language.

410 questions
8
votes
1 answer

Are the dynamic arrays in DOORS data base worth using?

I am a new developer for a DOORS database and I'm writing scripts in dxl. As you know there are 1-dimensional arrays in dxl. I wanted to use more than one dimension so I decided to use a dynamic array, but this slowed my script down a lot, and when…
PJT
  • 3,439
  • 5
  • 29
  • 40
5
votes
4 answers

How to use Enumerations in DXL Scripts?

I'd like to test the value of an enumeration attribute of a DOORs object. How can this be done? And where can I find a DXL documentation describing basic features like this? if (o."Progress" == 0) // This does NOT work { // do something }
h0b0
  • 1,802
  • 1
  • 25
  • 44
5
votes
2 answers

(DOORS/DXL) Export to pdf or print with a given template

We are interested in export/print one view from formal module. As we want it can be an ofcial document we want to add our corporative template that have it own front page, and its own headers and footers pages with a given text font, size, and…
4
votes
2 answers

How to move an object to the top of a DOORS module?

I basically know how to move an object within a module Object oMove = object(DoorsID, mBasicCurrent); Object oPrev = object(DestDoorsID, mBasicCurrent); // move after move(oMove, oPrev); // move below move(oMove, below oPrev); But I can not find,…
stema
  • 90,351
  • 20
  • 107
  • 135
3
votes
1 answer

Rational Doors 9.6 interfacing with C#

I am using Rational Doors 9.6 as client. I try to integrate a feature in my C# program such is using Doors C API, to open a view and get some data in memory for further using. This includes login to Doors server with windows credentials. Actually, I…
yo3hcv
  • 1,531
  • 2
  • 17
  • 27
3
votes
2 answers

How do I iterate over a list of strings in dxl?

I have a list of strings that I want to iterate over in dxl. They represent module ID's like so: string limitModules[5] = ['1', '2', '3', '4', '5'] Obviously each of the module ID's are more complicated. I've constructed a for loop using the…
James Mertz
  • 8,459
  • 11
  • 60
  • 87
3
votes
1 answer

DOORS DXL for changing Versioned Links to specific target baseline

I would like to be able to change the Baseline attribute for all outlinks from a source module. Does anyone know of some DXL code that could be used to do this? There must be an easier way rather than manually deleting previous outlinks (i.e.…
2
votes
1 answer

How to load a specific Baseline fron IBM Doors using a DXL script

I wrote a DXL script that I run from a batch file, it receives a Module path, a Baseline and a View. After the batch command opens IBM Doors 9.6, the script supposed to go to the module path with the relevant view and load the Baseline entered. My…
asaf
  • 21
  • 4
2
votes
2 answers

DOORS execute dxl script at startup

I have read lots of posts and can't be able to do what I want. I'm using DOORS 9.5 My goal is to execute a script at doors startup, which uses GUI functions. I have tried 2 different ways without success. 1/ To run with command line -D "#include…
2
votes
4 answers

Searching through a document using DXL

A friend of mine with little experience in (Telelogic Doors) DXL was given a problem to search through a document for objects with possible matches of string. The problem was : We have 2 attributes: Severity and Likelihood Please see the table below…
Amitd
  • 4,769
  • 8
  • 56
  • 82
2
votes
2 answers

IBM Rational DOORS: Use case extensions?

I'm investigating how to implement use case extension points in DOORS requirements. To this end, I wanted to know if a DOORS object in one module can reference or link to a DOORS object in a second module. If so, I figure I can have my use cases…
KenK
  • 263
  • 2
  • 10
2
votes
1 answer

Rest APIs available for IBM DOORS NG similar to Azure Devops Rest APIs?

We will be doing an evaluation of a suitable ALM tool for our project and the management is keen on IBM DOORS Next Generation. Currently, We already use Azure Devops for Devops, Testing and Automation testing Integration with TestComplete. Since we…
Marck
  • 107
  • 1
  • 10
2
votes
1 answer

How to use python to access DOORS content?

I want to access DOORS content using python. I have read this answer , but it did not give clear instructions.
Hazem Abaza
  • 331
  • 4
  • 21
2
votes
1 answer

Want to detect incorrect user name and or password when running IBM Doors in batch mode

I'm using a Python sub-process to start IBM Doors in batch mode with a DXL script and an outside variable. When I run the script usually it runs fine, but sometimes the return value is empty. Other problem occurs when I purposely give incorrect user…
ben.pal
  • 21
  • 1
2
votes
1 answer

Access to a DOORS using Java

I wanna get data from DOORS with Java. I found out that I can run DOORS using Jacob but it doesn't work. Can anyone please guide me to the solution even without using Jacob? I appreciate if someone can give me some specific code. My code : import…
Sana.Mejri
  • 21
  • 2
1
2 3
27 28