PBAConsClause Class [AX 2012]
The PBAConsClause class has subclasses that implement the three rule types used in the Product Builder rule system: Formula, Action, and Constraint.
| Method | Description | |
|---|---|---|
| calc | |
| cancelTimeOut | Cancels a previous method call to the setTimeOut method. (Inherited from Object.) |
| clauseValue | |
| deduct | Validates the necessity of evaluating the constraint in the list and deducts the values that trigger it. |
| equal | Determines whether the specified object is equal to the current one. (Inherited from Object.) |
| getTimeOutTimerHandle | Returns the timer handle for the object. (Inherited from Object.) |
| handle | Retrieves the handle of the class of the object. (Inherited from Object.) |
| initClause | |
| new | Initializes a new instance of the Object class. (Inherited from Object.) |
| notify | Releases the hold on an object that has called the wait method on this object. (Inherited from Object.) |
| notifyAll | Releases a lock on the object that was issued by the wait method on this object. (Inherited from Object.) |
| objectOnServer | Determines whether the object is on a server. (Inherited from Object.) |
| owner | Returns the instance that owns the object. (Inherited from Object.) |
| pbaValidationType | |
| restoreStatus | |
| ruleClauseId | |
| saveStatus | |
| setTimeOut | Sets up the scheduled execution of a specified method. (Inherited from Object.) |
| toString | Returns a string that represents the current object. (Inherited from Object.) |
| usageCount | Returns the current number of references, that is, the value of the reference counter, that the object has. (Inherited from Object.) |
| validate | |
| wait | Pauses a process. (Inherited from Object.) |
| xml | Returns an XML string that represents the current object. (Inherited from Object.) |
| ::construct |
Each instance of a subclass to this class implements one individual Rule, or clause.
Each Rule is implemented as a List of objects of type PBAConsConstraint Class.
The PBAConsClause Class objects are members of another List maintained by the rule execution system's top level class, PBAConsEval Class.
In order to validate the Rules that are active for a specific Product model, the PBAConsEval class builds a List of PBAConsClause objects, and then traverses it whenever the Rules need to be validated.
See the PBAConsEval.validatePBA Method for the method that traverses this list of clauses to validate the complete set of rules for a Product model.
PBAConsClause Class
PBAConsClauseAction Class
PBAConsClauseConstraint Class
PBAConsClauseFormula Class