How the connection in Matrix Model is checked using ARIS script?
Highly appreciate if anyone help to find the solution for Matrix Model.
Thanks a lot.
Shridhaar
How the connection in Matrix Model is checked using ARIS script?
Highly appreciate if anyone help to find the solution for Matrix Model.
Thanks a lot.
Shridhaar
Hi,
there are methods in the Matrixdesigner API.
public ICxnDef[] getVisibleCxns(IModel matrix, IOcc row, IOcc column);
The row and the column parameter you get with:
public IOcc[] getHeaderCells(IModel matrix, boolean rowHeader);
I hope this helps. (This is the solution for the client, not the server)
Torsten Haase on
Hi Shridhaar,
the easiest way would be to use the matrix model API calling model.getMatrixModel() which returns the model as a "Matrix" object.
Is this a suitable solution for your task? Which connection information do you exactly need to access?
BR,
Torsten