modGetProperty
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.
Gets the value for an existing property in the modProperties table. Exists in the modSystem database.
[@PropName =] 'property' ,
[@Value =] 'value' output'
Parameters
- [@PropName =] 'property'
Name of the property. - [@Value =] 'value'
An output parameter that holds the value of the property.
Return Value
Returns the value for a property in the modProperties table.
Remarks
The property value data type is varchar.
Example
The following example returns the value of the user-defined WorkflowVersion property:
EXEC modGetProperty 'WorkflowVersion', @WorkflowVersion
See Also
Stored Procedures | Workflow Application Infrastructure | ModSystem Database Tables | Workflow-Enabled Database Tables | Views