Configuring Internal LCA in Business Configuration
You can configure the validation function by using the
Reltio/DVFAction
Life Cycle Action (LCA).
Reltio/DVFAction
LCA in the business configuration.
Reltio/DVFAction
is an out-of-the-box LCA and does not
require a registration for the tenant. Reltio/DVFAction
LCA in your business configuration. The LCA
executes all the validation functions configured for a particular entity type. The
following are the two hooks that are supported:validate
beforeSave
Reltio/DVFAction
LCA for all the entity types.LCA Configuration
"lifecycleActions": {
"beforeSave": [
"Reltio/DVFAction"
]
}
"lifecycleActions": {
"validate": [
"Reltio/DVFAction"
],
"beforeSave": [
"Reltio/DVFAction"
]
}
LCA Sample Configuration
{
"uri": "configuration",
"description": "New Sales Account360",
"schemaVersion": "xxx",
"sources":[........],
.......
"entityTypes":[
{
"uri": "configuration/entityTypes/Product",
"label": "Product",
"attributes":[................],
"analyticsAttributes":[
],
"lifecycleActions": {
"beforeSave": [ "Reltio/DVFAction" ]
}
]
........
}