hm_ce_errorreport
Returns the specific reason for the failed realization of a connector.
Syntax
hm_ce_errorreport ce_id reportFlag
Type
HyperMesh Tcl Query Command
Description
Returns the specific reason for the failed realization of a connector.
Inputs
- ce_id
 - The ID of the connector entity.
 - reportFlag
 - 0 returns one of the failure criteria.
 
Examples
To obtain a simple report for failed realization for a connector with ID 10:
set ce_id 10;
set single_err_report [ hm_ce_errorreport $ce_id 0 ];
      To get a detailed report returned as list of lists for connector with ID 10:
set ce_id 10;
set detail_err_report [ hm_ce_errorreport $ce_id 1 ];
      This function returns a report only for the failed connectors. The state of the connector can be looked up using the connection information table. All failed connectors are marked red.
Errors
None.