Filter object identifiers using dxl

Hello Together,

I tried filtering of rows and columns using dxl api set(module , filter).

But the column with attribute name "Object identifier" alone is not getting filtered.

On viewing the attribute definition, it is found to have the below structure.

Name : Object identifier

Attribute name: <Object Identifier>

Only for the columns with the above mentioned structure, Filtering is not working.

Any idea on why this happens?

 


Adminani - Thu Jan 29 05:52:59 EST 2015

Re: Filter object identifiers using dxl
Martin_Hunter - Thu Jan 29 09:21:00 EST 2015

Anisha,
 

There are three "virtual" Object attributes in DOORS GUI:

"Object Identifier" --> in DXL "identifier (Object)"
"Object Number" --> in DXL "number (Object)"
"Object Level" --> in DXL "level (Object)"

so you need to access them by using above functions identifier, number and level.

Regards,

Martin

Re: Filter object identifiers using dxl
GregM_dxler - Mon Feb 02 09:09:17 EST 2015

Hello,

Object Identifier is not an attribute name of an object.  Absolute Number is.

You can set a filter in dxl such as set(attribute("Absolute Number") >= "2").

You probably also need to turn on the filtering to get it to filter using the dxl command filtering on.

Hope this helps,

Greg