Views:

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

NameRequiredTypeDescription
booleanYesbooleanA 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')

)