pc:GetRulesEngineProperty

Previous Next

Gets the current setting of a named Rules Engine property. For information about available Rules Engine properties and their allowed values, see the Rules Engine Guide.

Returns a string value.

Syntax

<pc:GetRulesEngineProperty 

     alias="name-literal

     name="name-literal" />

The alias attribute identifies the Rules Service connection used to get the result. This attribute is required if you are calling this directive outside USoft, eg. on the command line. For more information on aliases, go to the pc:RunRulesService help topic.

The name attribute identifies the Rules Engine property that you want to get the value of.

Calling this directive is equivalent to executing the following SQL statement in a USoft context:

SELECT RulesEngine.GetProperty( name )

 

Example

This example finds out whether constraints for connection "thisconn" are currently deactivated or not:

<pc:GetRulesEngineProperty connection="{$thisconn}" name="CONSTRAINTSACTIVE" />

 

See also

pc:SetRulesEngineProperty