Description
Used when you do not want to clone in-active records in related entities. Only relevant if you are using the Clone() function.
If the function is not used the default will be to clone in-active records.
Signature
CloneInActiveRecords(boolean)
Parameters
| Name | Required | Type | Description |
|---|---|---|---|
| boolean | Yes | boolean | A boolean true or false indicating whether or not to clone inactive records |
Example 1
This example shows where we are cloning the Account record and its related Phone Calls but only the active Phone Calls.
SmartFlow(
CloneInActiveRecords(false),
Clone('account', [account.accountid] ,'Account_Phonecalls','true')
)
