Measure

cancel
Showing results for 
Search instead for 
Did you mean: 

NI Requirements Gateway - Requirements Management Software

Hi,
I would like to know the  "NI Requirements Gateway - Requirements Management Software"
when it was launched?. Is the updated version available?. Would like to know about the multi licences details and price?.
 
Thanks
Kalyan
0 Kudos
Message 1 of 18
(9,764 Views)
Kalyan,
 
Version 1.0 of NI Requirements Gateway was first introduced in May 2006 and is still the most current version available. 
 
If you would like to know about pricing details for multi-developer licenses, the best resource is to contact your sales representive directly at ni.com/contact.
 
Josh W.
Certified TestStand Architect
Formerly blue
0 Kudos
Message 2 of 18
(9,746 Views)
In excel sheet i have 4*4 table. i.e 4 rows and 4 columns table. each cell has requirements. I have defined each cell name.
bu using excel menu -> Insert-> Name -> define, i have given unique Requirements id for the each cell
example REQ_A1, REQ_A2, REQ_B1, REQ_B2
 
I would like to use the REQ_xx  in the gateway. How to use it?. whether NI Requirements Gateway supports this?.
 
Please help.
0 Kudos
Message 3 of 18
(9,519 Views)
The Cell Name is not stored in the Intermediate File generated by NIRG, so unfortunately there is no way to extract it inside of NIRG.

Allen P.
NI
0 Kudos
Message 4 of 18
(9,495 Views)

In the custom report, is it possible to filter based on the attribute text?.

 

Example

I have a attribute named "Result"

"Result" attribute possible text values are Pass / Fail / Notappl.

 

Is it possible to generate the requirement ID's only for the Pass values in the "Result" attribute?.

 

i am able to generate report for the requirement ID's which has attribute.

 

But i would like to generate requirement ID's report which has "Result" attribute with text 'Pass'.

 

 

0 Kudos
Message 5 of 18
(9,372 Views)

Also is it possible to generate report based on the different attribute name?.

Example

I have two boolean attributes named priority and severity.

 

I need only the requirements ID's which has priority attribute.

 

How to configure in the report?.

 

Please help.

0 Kudos
Message 6 of 18
(9,368 Views)

When you have a requirement you would like to include in the report, you can loop on the attributes of that requirement.  Then in the loop for the attributes, you can define a condition to determine if the attribute exists and has the correct value for you to log the requirement.

 

For example, here is a condition that will display the loop's contents only if there is an attribute of type "Test" and that has the value "Three":

attr1.typeName = "Test" AND attr1.ident = "Three"

 

Of course, I am using the default attribute variable name (attr1), so you would want to change the condition above to use your variable name instead.

Josh W.
Certified TestStand Architect
Formerly blue
0 Kudos
Message 7 of 18
(9,354 Views)

Thanks for the reply. Also I would like to count the attribute which has the value "Pass". Could you teach me how to do that?.

Is there any document which gives more details about the inbuild variables in the NI Requirements Gateway reports apart from the default documents in the folder \National Instruments\Requirements Gateway 1.0\Doc

 

Thanks for the help.

 

Thanks

Kalyan

0 Kudos
Message 8 of 18
(9,347 Views)

Also i would like to count the parent ID's. Example There is a traceability between REQ_1, REQ_2 and TEST_1

 

I have a attribute value  "PASS" in TEST_1 so that i would like to count the REQ_1 and REQ_2  so the total is 2.

 

Same way for all the attribute value  "PASS".

 

How to configure in the report?. Please explain.

 

Thanks

Kalyan

0 Kudos
Message 9 of 18
(9,344 Views)

Kals,

 

Unfortunately, report customization is mostly un-documented.  However, I did find a way to accomplish what you want.

 

One of the structures that you can drop is called "code OTScript".  If you drop this node in a requirements loop (defined with the condition we discussed above), you can create a statement that will count the number of references of that requirement. You need to type the following into the code structure:

STR($CNT(req1.references))

 

Please note that I tested this in several simple cases, but I cannot guarantee that it will work in your case.  Please let me know if you have any trouble.

Josh W.
Certified TestStand Architect
Formerly blue
0 Kudos
Message 10 of 18
(9,308 Views)