Diagram in Expression Language

From QPR ProcessAnalyzer Wiki
Revision as of 11:57, 12 October 2023 by Ollvihe (talk | contribs) (Created page with " ==Diagram Properties== Datatables are stored to QPR ProcessAnalyzer database as database tables. Each datatable belongs to a project. {| class="wikitable" !'''Property''' ! '''Description''' |- ||ColumnNames (String*) ||Returns Datatable column names as a string array in the order they are in the DataTable. |- ||ColumnMappings (Dictionary) ||Returns column mappings configured for this Datatable. Returned data is a dictionary, where keys are mapping names (...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Diagram Properties

Datatables are stored to QPR ProcessAnalyzer database as database tables. Each datatable belongs to a project.

Property Description
ColumnNames (String*) Returns Datatable column names as a string array in the order they are in the DataTable.
ColumnMappings (Dictionary) Returns column mappings configured for this Datatable. Returned data is a dictionary, where keys are mapping names (CaseId, EventType, Timestamp) and value is the column name. The ColumnMappings property returns null if column mappings have not been defined for the Datatable.

Example:

let caseIdColumnName = DatatableById(123).ColumnMappings("CaseId");
ColumnTypes (Dictionary*)