Hi All,
I would like to know how a Derived Field created within configuration console for a business can be reused in a security class.
Below is the code used in configuration console, can I used this same code for a security class? Thanks in advance
Derived Fields
AccessInvoice is a DerivedField
type is Boolean
default label is untranslatable:"AccessInvoice"
if (actor.context.CompanySecurityGroup exists
and Company.CompanySecurityGroupMemberRel exists)
AccessInvoice = true
else
if (actor.context.CompanySecurityGroup not exists)
AccessInvoice = true
else
AccessInvoice = false