This content applies solely to Connected Onboarding, which must be purchased separately from the Appian base platform. This content was written for Appian 23.3 and may not reflect the interfaces or functionality of other Appian versions. |
The Connected Onboarding solution includes an auditing process that allows you to audit Process Templates and specific field changes in a service request. Your business users can use this auditing process to track certain histories that may inform their decisions later on, including adding or removing a step in a process, modifying a template, or changing data.
Currently, the following changes are tracked:
To view updates to templates made in the Connected FS Site:
Click the icon associated with the specific template you want to see the changes for.
To view updates to tasks during a Process Setup task:
To review the template changes that occurred during the Process Setup task for a specific template used during an onboarding, click the bar chart segment for that template.
To view the changes to funding details for an onboarding:
We also track changes for the following fields that may be used later on in business decisions in the database:
If a new field is added to an audited CDT, you will need to configure auditing for that field in order to start tracking it.
We currently track audits to the following CDTs:
AS_IO_R_TaskCategory
AS_IO_R_TaskRef
AS_IO_R_Template
AS_IO_R_TemplateTask
AS_IO_R_Template
AS_IO_R_TemplateTask_Precedent
AS_IO_R_TemplateTask
AS_IO_OnboardingRequest
AS_IO_OnboardingFundingDetails
AS_IO_OnboardingRequest
CDT Name | Expression Rule Name | Parameter to update |
---|---|---|
AS_IO_R_TaskCategory |
AS_IO_ADT_BL_auditConfig_R_TaskCategory |
simpleFields |
AS_IO_R_TaskRef |
AS_IO_ADT_BL_auditConfig_R_TaskRef |
simpleFields |
AS_IO_R_Template |
AS_IO_ADT_BL_auditConfig_R_Template |
top-level simpleFields |
AS_IO_R_TemplateTask |
AS_IO_ADT_BL_auditConfig_R_Template |
simpleFields in the fieldName parameter where "templateTasks" is the value. |
AS_IO_R_TemplateTask_Precedent |
AS_IO_ADT_BL_auditConfig_R_Template |
simpleFields in the "templateTaskPrecedents" structure |
AS_IO_OnboardingFundingDetails |
AS_IO_ADT_BL_auditConfig_OnboardingRequest |
simpleFields |
AS_IO_OnboardingRequest |
AS_IO_ADT_BL_auditConfig_OnboardingFundingDetails |
simpleFields |
If you modify one of the CDTs or one of the associated child CDTs listed in the table, reexamine the configuration rule for the modified CDT to determine if it requires updating.
Auditing configuration for each CDT are stored in following rules:
AS_IO_ADT_BL_auditConfig_< CDT Name >
AS_IO_ADT_BL_auditConfig_R_TaskCategory
AS_IO_ADT_BL_auditConfig_R_TaskRef
AS_IO_ADT_BL_auditConfig_R_Template
AS_IO_ADT_BL_auditConfig_OnboardingRequest
AS_IO_ADT_BL_auditConfig_OnboardingFundingDetails
To audit a field in a CDT:
Find the expression rule associated with that CDT.
simpleFields
parameter.simpleFields
parameter within that nested value.You may want to add Customer Type as a new parameter to your service request templates and then monitor any changes made. See Template Selection Attributes.
To add and audit the Customer Type field to a template:
AS_IO_ADT_BL_auditConfig_R_Template
expression rule.Add the new customerType
field to the AS_IO_R_Template
CDT.
customerType
field to the simpleFields
array.Save your changes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
Audit config for
'type!{urn:com:appian:types:AS:IO}AS_IO_R_Template'
*/
{
idField: "templateId",
simpleFields: {
/*"templateId", excluded since it is the primary key*/
"templateName",
"templateDesc",
! "customerType",
/*"templateTasks", excluded since it is tracked in complexFields*/
"onboardingTypeCode",
"regionCode",
/*"createdBy", no need to track changes to this*/
/*"createdDatetime", no need to track changes to this*/
/*"modifiedBy", no need to track changes to this*/
/*"modifiedDatetime" no need to track changes to this*/
},
...
Adding and auditing a new field in a nested array can be a complex set of steps. For example, if you want to add and track SLA Days in the AS_IO_R_TemplateTask
CDT, which is nested in the AS_IO_R_Template
CDT, you will need to do the following:
AS_IO_ADT_BL_auditConfig_R_Template
expression rule.Save your changes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Audit config for
'type!{urn:com:appian:types:AS:IO}AS_IO_R_Template'
*/
{
idField: "templateId",
simpleFields: {
/*"templateId", excluded since it is the primary key*/
"templateName",
"templateDesc",
/*"templateTasks", excluded since it is tracked in complexFields*/
"onboardingTypeCode",
"regionCode",
/*"createdBy", no need to track changes to this*/
/*"createdDatetime", no need to track changes to this*/
/*"modifiedBy", no need to track changes to this*/
/*"modifiedDatetime" no need to track changes to this*/
},
complexFields: {
{
fieldName: "templateTasks",
auditFieldName: "templateTasksChanges",
idField: "templateTaskId",
simpleFields: {
/*"templateTaskId", excluded since it is the primary key*/
/*"templateId", excluded since it is the foreign key to the parent*/
"taskRef.taskRefId",
"groupAssignee",
"taskDesc",
/*"templateTaskPrecedents", excluded since it is tracked in complexFields*/
! "slaDays"
},
...
Configure Auditing for a New Field