ChildFold
Iterates through the specified child business objects, evaluating the expression in the context of each of the child business objects. The results of the expression evaluations are aggregated using the aggregatorFunc parameter.
Evaluates an expression for each selected object instance related to (a child of) a parent business object and applies an aggregator function to the results. The childPredicateExpression parameter, if specified, selects which related objects to include. If not specified, they are all included.
Syntax
ChildFold(parentObjectRef, parentRecId, childRelationshipRef, childExpression, aggregatorFunc, childPredicateExpression)
Enabled For
For a description of the business object categories, see Notes on "Enabled For".
Business Object Category | Yes/No |
---|---|
Business Rules: Before-Save Rules | Yes |
Business Rules: Calculation Rules (After Save, with or without Also Recalculate on Load) | Yes |
Business Rules: Calculation Rules (Before Save or Always, without Also Recalculate On Load) | Yes |
Business Rules: Calculation Rules (Before Save or Always, with Recalculate On Load) | Yes |
Business Rules: Editing Rules | Yes1 |
Business Rules: Initialization Rules | Yes |
Business Rules: Read Only Rules | No |
Business Rules: Required Rules | Yes1 |
Business Rules: Validation Rules | Yes |
Client Expressions | No |
Object Permissions | No |
Services | Yes |
LDAP | Yes |
Mobile | Yes |
Quick Actions (except UI Quick Actions) | Yes |
UI Quick Actions | No |
Reports | Yes |
Search/Dashboard without field references | Yes |
Search/Dashboard with field references | No |
1. Except when this field appears on a form or is triggered by such a field. |
Parameters
Parameter | Description |
---|---|
parentObjectRef | The name of the parent business object. |
parentRecId | The RecID of the instance of the parent business object. |
childRelationshipRef |
A relationship name for the relationship relating the parent to its related object (child business object). |
childExpression | The expression to evaluate for each child business object. |
aggregatorFunc |
An aggregation function specified as a string. In this release, Neurons for ITSM supports the plus (+), SUM, AVG, AVERAGE, MIN, MAX, COUNT aggregator. |
childPredicateExpression | (Optional) A Boolean expression that is evaluated for each child. The child is only included if the result of this evaluation is true. |
Return Value
Unicode text value.
Example
$(ChildFold("Incident#", RecId, "Task#Assignment.Rev3", $(Cost), "SUM"))
The return value is the sum of Cost involved in the records associated with the Incident.