BRStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains values specifying the update and publication status of a business rule.
public enum class BRStatus
[System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContract(Name="BRStatus", Namespace="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09")]
public enum BRStatus
[<System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")>]
[<System.Runtime.Serialization.DataContract(Name="BRStatus", Namespace="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09")>]
type BRStatus =
Public Enum BRStatus
- Inheritance
-
BRStatus
- Attributes
Fields
Name | Value | Description |
---|---|---|
Undefined | 0 | The rule is not defined. |
Active | 1 | The rule is published. |
Excluded | 2 | The rule is explicitly excluded from the published set of rules. |
PendingActivation | 3 | The rule has been created and will be published with the next publish request for the related entity and member type. |
PendingChanges | 4 | The rule has been updated and the new rule will be published with the next publish request for the related entity and member type. Until then, the prior version of the rule is active. |
PendingExclusion | 5 | The rule has been marked for exclusion and will be excluded with the next publish request for the related entity and member type. Until then, the prior version of the rule is active. |
PendingDeletion | 6 | The rule has been marked for deletion and will be deleted with the next publish request for the related entity and member type. Until then, the prior version of the rule is active. |