+
@@ -25,9 +23,9 @@
onstatuschange={handleStatusChange} >
-
-
+
-
+
+
+
+
+
No records to display.
+
+
diff --git a/src/main/default/lwc/lateFeeManagementTable/lateFeeManagementTable.js b/src/main/default/lwc/lateFeeManagementTable/lateFeeManagementTable.js
index 4710d0b7..3ce354f0 100644
--- a/src/main/default/lwc/lateFeeManagementTable/lateFeeManagementTable.js
+++ b/src/main/default/lwc/lateFeeManagementTable/lateFeeManagementTable.js
@@ -1,10 +1,13 @@
-import { LightningElement, track, wire } from 'lwc';
+import { LightningElement, api, track, wire } from 'lwc';
import getLateFeeMap from '@salesforce/apex/LateFeeManagementTableController.getLateFeeRecs';
import sendLateFeeRenewals from '@salesforce/apex/MassEmailController.doSendLateFee';
import updateLateFeeRecords from "@salesforce/apex/LateFeeManagementTableController.updateLateFeeRecs";
import { refreshApex } from '@salesforce/apex';
import { loadStyle } from 'lightning/platformResourceLoader';
import cssrenewalBlaTable from '@salesforce/resourceUrl/cssrenewalBlaTable';
+import { getPicklistValues, getObjectInfo } from 'lightning/uiObjectInfoApi';
+import BusinessLicenseApplication_OBJECT from '@salesforce/schema/BusinessLicenseApplication';
+import LATE_FEE_STATUS__C_FIELD from '@salesforce/schema/BusinessLicenseApplication.Late_Fee_Status__c';
const tableColumns = [
{label: 'Application Id', fieldName: 'appId', type: 'url',
@@ -20,19 +23,46 @@ const tableColumns = [
{label: 'Residence Status', fieldName: 'AccountStatus', type: 'text'},
{label: 'Application Status', fieldName: 'Status', type: 'text'},
{label: 'Renewal Detail', fieldName: 'RenewalDetail', type: 'text' },
- //{label: 'Renewal Details', fieldName: 'RenewalDetails', type: 'text' },
- {label: 'Late Fee Status', fieldName: 'Late_Fee_Status__c', type: 'text', editable: true},
+ {label: 'Late Fee Status', fieldName: 'Late_Fee_Status__c', type: 'picklistColumn', editable: true,
+ typeAttributes: {
+ placeholder: '--None--', options: { fieldName: 'pickListOptions' },
+ value: { fieldName: 'Late_Fee_Status__c' },
+ context: { fieldName: 'Id' },
+ }
+ },
{label: 'Exclusion Reason', fieldName: 'ExclusionReason__c', type: 'text', editable: true,
cellAttributes: {alignment :'left'}}
];
export default class LateFeeManagementTable extends LightningElement {
+
+ @api recordId;
@track error;
@track columns = tableColumns;
@track blaList;
+ @track isdata=getLateFeeMap.length===0?false:true;
draftValues = [];
+ @track data = [];
+ @track pickListOptions;
+ @track recordTypeId;
@track hasLoaded = false;
@track renderFlow = false;
_wiredResult;
+
+ @wire(getObjectInfo, { objectApiName: BusinessLicenseApplication_OBJECT })
+ objectInfo;
+
+ //fetch picklist options
+ @wire(getPicklistValues, {
+ recordTypeId: "$objectInfo.data.defaultRecordTypeId",
+ fieldApiName: LATE_FEE_STATUS__C_FIELD
+ })
+ wirePickListScope({ error, data }) {
+ if (data) {
+ this.pickListOptions = JSON.parse(JSON.stringify(data.values));
+ } else if (error) {
+ console.log(error);
+ }
+ }
renderedCallback(){
Promise.all([
loadStyle( this, cssrenewalBlaTable)
@@ -52,6 +82,7 @@ export default class LateFeeManagementTable extends LightningElement {
if(bla.Name){
bla.appId = '/'+bla.Id;
bla.RenewalDetail =bla.RenewalDetail__c;
+ bla.pickListOptions = this.pickListOptions;
}
if(bla.Account.Id){
bla.AccName = bla.Account.Name;
@@ -67,7 +98,8 @@ export default class LateFeeManagementTable extends LightningElement {
}
});
this.blaList = blaParsedData;
- this.hasLoaded = true; //to remove spinner
+ this.isdata = this.blaList && this.blaList.length > 0;
+ this.hasLoaded = true;
this.error = undefined;
}
else if(result.error){
diff --git a/src/main/default/lwc/operationAssessmentRecords/operationAssessmentRecords.js b/src/main/default/lwc/operationAssessmentRecords/operationAssessmentRecords.js
index 5bb6f58e..b6976946 100644
--- a/src/main/default/lwc/operationAssessmentRecords/operationAssessmentRecords.js
+++ b/src/main/default/lwc/operationAssessmentRecords/operationAssessmentRecords.js
@@ -31,6 +31,7 @@ const columns = [
export default class operationAssessmentRecords extends OmniscriptBaseMixin(NavigationMixin(LightningElement)) {
@api recordId;
+ @api CATAssessmentJSON;
@track error;
showSpinner = false;
columns = columns;
@@ -60,15 +61,21 @@ export default class operationAssessmentRecords extends OmniscriptBaseMixin(Navi
sMethodName: "inspection_AssessmentQuestions",
options: JSON.stringify(options)
};
+ if(this.CATAssessmentJSON) {
+ const data = this.CATAssessmentJSON;
+ let rcvParsedData = JSON.parse(JSON.stringify(data));
this._actionUtil
.executeAction(params, null, this, null, null)
.then((response) => {
- response.result.IPResult.assessments.CATAssessment.forEach(currentItem => {
+ //response.result.IPResult.assessments.CATAssessment.forEach(currentItem => {
+ rcvParsedData.forEach(currentItem => {
var items = {};
let allscore = [];
items.QuestionTitle = currentItem.name;
items.AssessmentQuestion = currentItem.description;
+ items.comments = currentItem.comments;
items.Id = currentItem.Id;
+ items.Value = currentItem.score;
response.result.IPResult.assessments.Scores.forEach(score => {
if(currentItem.Id == score.Id){
var scoreOption = {};
@@ -83,7 +90,7 @@ export default class operationAssessmentRecords extends OmniscriptBaseMixin(Navi
this.showBlock = true;
this.hasLoaded = true;//to remove spinnner
})
- .catch((error) => {
+ } else if((error) => {
console.error(error, "ERROR");
});
}
@@ -134,7 +141,7 @@ export default class operationAssessmentRecords extends OmniscriptBaseMixin(Navi
let myData = {
"UpdatedJSONScore" : this.draftValues,
"Anotherprop" : {
- "prop1" : "anothervalue"
+ "prop1" : ""
}
}
this.omniApplyCallResp(myData);
diff --git a/src/main/default/lwc/renewalBlaTable/renewalBlaTable.html b/src/main/default/lwc/renewalBlaTable/renewalBlaTable.html
index 75a5156f..3079ea26 100644
--- a/src/main/default/lwc/renewalBlaTable/renewalBlaTable.html
+++ b/src/main/default/lwc/renewalBlaTable/renewalBlaTable.html
@@ -7,18 +7,18 @@
-->
-
+
-
-
+
-
+
-
+
-
+
+
+
+
+
No records to display.
+
+
-
+
\ No newline at end of file
diff --git a/src/main/default/lwc/renewalBlaTable/renewalBlaTable.js b/src/main/default/lwc/renewalBlaTable/renewalBlaTable.js
index d8274fb6..b7b04384 100644
--- a/src/main/default/lwc/renewalBlaTable/renewalBlaTable.js
+++ b/src/main/default/lwc/renewalBlaTable/renewalBlaTable.js
@@ -1,10 +1,13 @@
-import { LightningElement, track, wire } from 'lwc';
+import { LightningElement, api, track, wire } from 'lwc';
import getBlaMap from '@salesforce/apex/RenewalBlaTableController.getBlaRecs';
import sendRenewals from "@salesforce/apex/MassEmailController.doSendRenewals";
import updateBlaRecs from "@salesforce/apex/RenewalBlaTableController.updateBlaRecs";
import { refreshApex } from "@salesforce/apex";
import { loadStyle } from 'lightning/platformResourceLoader';
import cssrenewalBlaTable from '@salesforce/resourceUrl/cssrenewalBlaTable';
+import BusinessLicenseApplication_OBJECT from '@salesforce/schema/BusinessLicenseApplication';
+import STATUS_FIELD from '@salesforce/schema/BusinessLicenseApplication.Status';
+import { getPicklistValues, getObjectInfo } from 'lightning/uiObjectInfoApi';
const tableColumns = [
{label: 'Application Id', fieldName: 'appId', type: 'url',
@@ -18,20 +21,55 @@ typeAttributes: {label: { fieldName: 'Name' }, target: '_parent'}},
typeAttributes: {label: { fieldName: 'ParentName' }, target: '_parent'}},
{label: 'Health Authority', fieldName: 'HealthAuthorityName', type: 'text'},
{label: 'Residence Status', fieldName: 'AccountStatus', type: 'text'},
-{label: 'Application Status', fieldName: 'Status', type: 'text', editable: true},
+{label: 'Application Status', fieldName: 'Status', type: 'picklistColumn', editable: true,
+ typeAttributes: {
+ placeholder: '--None--', options: { fieldName: 'pickListOptions' },
+ value: { fieldName: 'Status' },
+ context: { fieldName: 'Id' },
+ }
+ },
{label: 'Exclusion Reason', fieldName: 'ExclusionReason__c', type: 'text', editable: true
, cellAttributes: { alignment: 'left'}}
];
export default class RenewalBlaTable extends LightningElement {
-
+
+ @api recordId;
@track error;
@track columns = tableColumns;
@track blaList;
+ @track isdata=getBlaMap.length===0?false:true;
+ @track data = [];
+ @track pickListOptions;
draftValues = [];
- @track hasLoaded = false;//spinner attribute
- //wired property
- _wiredResult;
+ @track recordTypeId;
+ @track hasLoaded = false;
+ _wiredResult;
+
+
+ @wire(getObjectInfo, { objectApiName: BusinessLicenseApplication_OBJECT })
+ wiredObjectInfo({ error, data }) {
+ if (error) {
+
+ } else if (data) {
+ const rtis = data.recordTypeInfos;
+ this.recordTypeId = Object.keys(rtis).find(rti => rtis[rti].name == 'Renewal');
+ }
+};
+
+
+ @wire(getPicklistValues, {
+ recordTypeId: "$recordTypeId",
+ fieldApiName: STATUS_FIELD
+ })
+ wirePickListStatus({ error, data }) {
+ if (data) {
+ this.pickListOptions = JSON.parse(JSON.stringify(data.values));
+ console.log(data);
+ } else if (error) {
+ console.log(error);
+ }
+ }
renderedCallback() {
@@ -46,8 +84,8 @@ export default class RenewalBlaTable extends LightningElement {
}
- //wire method to fetch bla records
- @wire(getBlaMap)
+
+ @wire(getBlaMap, { pickList: '$pickListOptions' } )
wiredCallback(result) {
this._wiredResult = result;
if(result.data) {
@@ -56,6 +94,7 @@ export default class RenewalBlaTable extends LightningElement {
blaParsedData.forEach(bla => {
if(bla.Name) {
bla.appId = '/'+bla.Id;
+ bla.pickListOptions = this.pickListOptions;
}
if(bla.Account.Id) {
bla.AccName = bla.Account.Name;
@@ -71,29 +110,28 @@ export default class RenewalBlaTable extends LightningElement {
}
});
this.blaList = blaParsedData;
- this.hasLoaded = true;//to remove spinnner
+ this.isdata = this.blaList && this.blaList.length > 0;
+ this.hasLoaded = true;
this.error = undefined;
} else if(result.error) {
this.error = result.error;
this.blaList = undefined;
+
}
+
}
- //on click of save
async handleSave(event) {
try {
if(event.detail.draftValues) {
this.hasLoaded = false;
const saveDraftValues = event.detail.draftValues;
- // Pass edited fields to the Apex controller
await updateBlaRecs({ data: saveDraftValues })
.then(result => {
if(result) {
- //refresh the table with updated data
this.refreshData();
}
else {
- //if no update manually refresh data table data
var tempBlaList = this.blaList;
this.blaList = [];
this.blaList = tempBlaList;
@@ -110,12 +148,10 @@ export default class RenewalBlaTable extends LightningElement {
};
}
- // in order to refresh wired property
refreshData() {
return refreshApex(this._wiredResult);
}
- //send renewals on click
async handleSendRenewals(event) {
try {
this.hasLoaded = false;
@@ -124,7 +160,7 @@ export default class RenewalBlaTable extends LightningElement {
} catch (error) {
let message = error.body.message.includes('FIELD_CUSTOM_VALIDATION_EXCEPTION') ?
error.body.message.split('EXCEPTION, ')[1].split(': [')[0] : error.body.message;
- //this.showToastMessage('Error', message, 'error');
+
};
}
}
\ No newline at end of file
diff --git a/src/main/default/lwc/renewalManagementHome/renewalManagementHome.css b/src/main/default/lwc/renewalManagementHome/renewalManagementHome.css
index 3196a3af..2d7e0af9 100644
--- a/src/main/default/lwc/renewalManagementHome/renewalManagementHome.css
+++ b/src/main/default/lwc/renewalManagementHome/renewalManagementHome.css
@@ -7,14 +7,4 @@
}.custom-tabset {
font-size: 20px;
font-weight: bolder; /* Adjust the font size as needed */
-}/*
-.tabstyle{
- background-color: coral;
- padding: 20px;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- font-weight: bold;
- height: 80vh;
- overflow-x: scroll;
- overflow-y: scroll;
-
-}*/
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/src/main/default/lwc/renewalManagementHome/renewalManagementHome.html b/src/main/default/lwc/renewalManagementHome/renewalManagementHome.html
index 7f56f361..4f43f80e 100644
--- a/src/main/default/lwc/renewalManagementHome/renewalManagementHome.html
+++ b/src/main/default/lwc/renewalManagementHome/renewalManagementHome.html
@@ -1,21 +1,34 @@
+
-
+
+
+
+
-
+
-
+
+
+
+
-
+
diff --git a/src/main/default/lwc/showRegulatoryViolationRecords/showRegulatoryViolationRecords.js b/src/main/default/lwc/showRegulatoryViolationRecords/showRegulatoryViolationRecords.js
index e2ba5f95..0b5beb6c 100644
--- a/src/main/default/lwc/showRegulatoryViolationRecords/showRegulatoryViolationRecords.js
+++ b/src/main/default/lwc/showRegulatoryViolationRecords/showRegulatoryViolationRecords.js
@@ -11,11 +11,14 @@ import { OmniscriptBaseMixin } from 'omnistudio/omniscriptBaseMixin';
import REGULATORYCODEVIOLATION_OBJECT from '@salesforce/schema/RegulatoryCodeViolation';
import SCOPE_FIELD from '@salesforce/schema/RegulatoryCodeViolation.Scope__c';
import SEVERITY_FIELD from '@salesforce/schema/RegulatoryCodeViolation.Severity__c';
-import { updateRecord } from 'lightning/uiRecordApi';
+import { updateRecord, getFieldValue } from 'lightning/uiRecordApi';
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
import { NavigationMixin } from 'lightning/navigation';
import { getPicklistValues, getObjectInfo } from 'lightning/uiObjectInfoApi';
+const STORAGE_KEY_SCOPE = 'selectedScopePicklistValues';
+const STORAGE_KEY_SEVERITY = 'selectedSeverityPicklistValues';
+
const columns = [
{ label: 'Category', fieldName: 'Category', type: 'text', wrapText: true,
cellAttributes: { class: 'wrap-text'} },
@@ -23,14 +26,13 @@ const columns = [
cellAttributes: { class: 'wrap-text'} },
{ label: 'Assessment Question', fieldName: 'AssessmentQuestion', type: 'text', wrapText: true,
cellAttributes: { class: 'wrap-text'} },
- { label: 'Scope*', fieldName: 'Scope__c', type: 'picklistColumn', editable: true, wrapText: true,
- typeAttributes: {
- placeholder: '--None--', options: { fieldName: 'pickListOptions' },
- value: { fieldName: 'Scope__c' },
- context: { fieldName: 'Id' },
- helptext: 'This is a helptext' // need to add helptext
- }
- },
+ { label: 'Scope*', fieldName: 'Scope__c', type: 'picklistColumn', editable: true, wrapText: true,
+ typeAttributes: {
+ placeholder: '--None--', options: { fieldName: 'pickListOptions' },
+ value: { fieldName: 'Scope__c' },
+ context: { fieldName: 'Id' }
+ }
+ },
{ label: 'Severity*', fieldName: 'Severity__c', type: 'picklistColumn', editable: true, wrapText: true,
typeAttributes: {
placeholder: '--None--', options: { fieldName: 'severityOptions' },
@@ -43,10 +45,12 @@ const columns = [
export default class ShowRegulatoryViolationRecords extends OmniscriptBaseMixin(NavigationMixin(LightningElement)) {
@api recordId;
+ @api Questions1JSON;
@track error;
showSpinner = false;
columns = columns;
@track rcvList;
+ @track omniQuestionsList;
@track accountData;
draftValues = [];
@track data = [];
@@ -54,6 +58,8 @@ export default class ShowRegulatoryViolationRecords extends OmniscriptBaseMixin(
@track pickListOptions;
@track severityOptions;
@track hasLoaded = false;
+ @track selectedOption;
+
lastSavedData = [];
_wiredResult;
@@ -89,25 +95,32 @@ export default class ShowRegulatoryViolationRecords extends OmniscriptBaseMixin(
@wire(getRecords, { recordId: '$recordId', pickList: '$pickListOptions', pickList: '$severityOptions' } )
wiredCallback(result) {
this._wiredResult = result;
- if(result.data) {
- const data = result.data;
+ if(this.Questions1JSON) {
+ const data = this.Questions1JSON;
let rcvParsedData = JSON.parse(JSON.stringify(data));
- rcvParsedData.forEach(rcv => {
- rcv.Category = rcv.InspectionAssmntInd.AssessmentIndDefinition.Category__c;
- rcv.RegulatoryCode = rcv.RegulatoryCode.Name;
- rcv.AssessmentQuestion = rcv.InspectionAssmntInd.AssessmentIndDefinition.Name;
+ if(rcvParsedData.length > 0) {
+ rcvParsedData.forEach(rcv => {
+ rcv.Category = rcv.Category;
+ rcv.RegulatoryCode = rcv.RegulatoryCode;
+ rcv.AssessmentQuestion = rcv.AssessmentQuestion;
rcv.pickListOptions = this.pickListOptions;
+ rcv.Scope__c = rcv.Scope;
rcv.severityOptions = this.severityOptions;
- });
+ rcv.Severity__c = rcv.Severity;
+ rcv.Description = rcv.Description;
+
+ });
+ }
this.rcvList = rcvParsedData;
if(this.rcvList != null){
- console.log('this.rcvList');
+ console.log('this.rcvList', this.rcvList);
}
this.hasLoaded = true;//to remove spinnner
this.error = undefined;
- } else if(result.error) {
+ } else{
+ console.log('Error Thrown', this.rcvList);
+ this.hasLoaded = true;//to remove spinnner
this.error = result.error;
- this.rcvList = undefined;
}
}
@@ -155,15 +168,13 @@ export default class ShowRegulatoryViolationRecords extends OmniscriptBaseMixin(
handleCellChange(event) {
// Check if Scope__c field is empty in any draft value
let draftValues = event.detail.draftValues;
- draftValues.forEach(ele=>{
- this.updateDraftValues(ele);
- })
-
+ draftValues.forEach(ele=>{
+ this.updateDraftValues(ele);
+ })
+
let myData = {
- "UpdateData" : this.draftValues,
- "Anotherprop" : {
- "prop1" : this.updateDraftValues
- }
+ "UpdateData" : this.rcvList,
+ "Anotherprop" : this.draftValues
}
this.omniApplyCallResp(myData);
}
diff --git a/src/main/default/objects/Account/Account.object-meta.xml b/src/main/default/objects/Account/Account.object-meta.xml
index 5eb8741c..67b9d408 100644
--- a/src/main/default/objects/Account/Account.object-meta.xml
+++ b/src/main/default/objects/Account/Account.object-meta.xml
@@ -1,30 +1,30 @@
- Account_Compact_Layout
+ Account_Compact_Layout
true
true
true
Private
ACCOUNT.NAME
+ LicenseType__c
ACCOUNT.RECORDTYPE
Status__c
- LicenseType__c
- ACCOUNT.TYPE
+ ACCOUNT.ADDRESS1_STREET
+ ACCOUNT.ADDRESS1_CITY
+ ACCOUNT.ADDRESS1_ZIP
ACCOUNT.PHONE1
- ACCOUNT.CREATED_DATE
- MOH Standard User
+ System Administrator
ACCOUNT.NAME
- LicenseType__c
ACCOUNT.RECORDTYPE
Status__c
- ACCOUNT.ADDRESS1_STREET
- ACCOUNT.ADDRESS1_CITY
- ACCOUNT.ADDRESS1_ZIP
+ LicenseType__c
+ ACCOUNT.TYPE
ACCOUNT.PHONE1
- System Administrator
+ ACCOUNT.CREATED_DATE
+ MOH Standard User
false
false
@@ -47,7 +47,6 @@
SendBulkMessageAction
MassAddToActionableList
NavigateToAccountDiscoveryDashboard
- GenerateRenewalsButton
ACCOUNT.NAME
CORE.USERS.ALIAS
ACCOUNT.TYPE
diff --git a/src/main/default/objects/Account/fields/CURR_Event_Activated__c.field-meta.xml b/src/main/default/objects/Account/fields/CURR_Event_Activated__c.field-meta.xml
new file mode 100644
index 00000000..e0601a0f
--- /dev/null
+++ b/src/main/default/objects/Account/fields/CURR_Event_Activated__c.field-meta.xml
@@ -0,0 +1,11 @@
+
+
+ CURR_Event_Activated__c
+ false
+ ALR-990 for Identifying CURR Account
+ false
+
+ false
+ false
+ Checkbox
+
diff --git a/src/main/default/objects/Account/fields/Status__c.field-meta.xml b/src/main/default/objects/Account/fields/Status__c.field-meta.xml
index 5c5c0589..97830595 100644
--- a/src/main/default/objects/Account/fields/Status__c.field-meta.xml
+++ b/src/main/default/objects/Account/fields/Status__c.field-meta.xml
@@ -27,29 +27,19 @@
- Refused Application/Registation
- false
-
-
-
- PURR Application in Progress
- false
-
-
-
- CURR Application in Progress
+ Application closed
false
-
+
- Application closed
+ Application withdrawn
false
-
+
- Application withdrawn
+ Refused Application/Registation
false
-
+
Registered Active
@@ -66,6 +56,11 @@
false
+
+ Registered Active Progressive Enforcement
+ false
+
+
Registered Active Pending Renewal
false
@@ -106,6 +101,11 @@
false
+
+ PURR Application in Progress
+ false
+
+
CURR Not in Compliance
false
@@ -116,6 +116,11 @@
false
+
+ CURR Application in Progress
+ false
+
+
CURR SIU Referral
false
@@ -141,11 +146,6 @@
false
-
- Registered Active Progressive Enforcement
- false
-
-
diff --git a/src/main/default/objects/Account/validationRules/LicenseType_Is_Mandatory_Based_On_Status.validationRule-meta.xml b/src/main/default/objects/Account/validationRules/LicenseType_Is_Mandatory_Based_On_Status.validationRule-meta.xml
index 954afde5..3c64cedc 100644
--- a/src/main/default/objects/Account/validationRules/LicenseType_Is_Mandatory_Based_On_Status.validationRule-meta.xml
+++ b/src/main/default/objects/Account/validationRules/LicenseType_Is_Mandatory_Based_On_Status.validationRule-meta.xml
@@ -1,7 +1,7 @@
LicenseType_Is_Mandatory_Based_On_Status
- true
+ false
License Type is Required if the Status is Not Equal to PURR.
AND( RecordType.DeveloperName = "Residence", NOT(ISPICKVAL(Status__c,"PURR")), ISBLANK( LicenseType__c ))
LicenseType__c
diff --git a/src/main/default/objects/AssessmentIndicatorDefinition/fields/Comments__c.field-meta.xml b/src/main/default/objects/AssessmentIndicatorDefinition/fields/Comments__c.field-meta.xml
new file mode 100644
index 00000000..85cf7c5f
--- /dev/null
+++ b/src/main/default/objects/AssessmentIndicatorDefinition/fields/Comments__c.field-meta.xml
@@ -0,0 +1,11 @@
+
+
+ Comments__c
+ false
+
+ 255
+ false
+ false
+ Text
+ false
+
diff --git a/src/main/default/objects/AssessmentIndicatorDefinition/fields/Score__c.field-meta.xml b/src/main/default/objects/AssessmentIndicatorDefinition/fields/Score__c.field-meta.xml
new file mode 100644
index 00000000..4f9e4a0c
--- /dev/null
+++ b/src/main/default/objects/AssessmentIndicatorDefinition/fields/Score__c.field-meta.xml
@@ -0,0 +1,11 @@
+
+
+ Score__c
+ false
+
+ 255
+ false
+ false
+ Text
+ false
+
diff --git a/src/main/default/objects/BusinessLicenseApplication/fields/Approver_Name__c.field-meta.xml b/src/main/default/objects/BusinessLicenseApplication/fields/Approver_Name__c.field-meta.xml
new file mode 100644
index 00000000..b8b83427
--- /dev/null
+++ b/src/main/default/objects/BusinessLicenseApplication/fields/Approver_Name__c.field-meta.xml
@@ -0,0 +1,9 @@
+
+
+ Approver_Name__c
+ false
+
+ false
+ false
+ TextArea
+
diff --git a/src/main/default/objects/BusinessLicenseApplication/validationRules/RestrictingBLAClosedBeforeClosureReason.validationRule-meta.xml b/src/main/default/objects/BusinessLicenseApplication/validationRules/RestrictingBLAClosedBeforeClosureReason.validationRule-meta.xml
index 907a77bd..c9f451f5 100644
--- a/src/main/default/objects/BusinessLicenseApplication/validationRules/RestrictingBLAClosedBeforeClosureReason.validationRule-meta.xml
+++ b/src/main/default/objects/BusinessLicenseApplication/validationRules/RestrictingBLAClosedBeforeClosureReason.validationRule-meta.xml
@@ -4,18 +4,9 @@
true
BLA cannot be closed/Completed without Closure Reason
AND(
- OR(
- AND(
- RecordType.DeveloperName = "New_License_Application_Record_Type",
- ISPICKVAL(Status, "Closed"),
- ISPICKVAL(ClosureReason__c, '')
- ),
- AND(
- RecordType.DeveloperName = "Renewal",
- ISPICKVAL(Status, "Completed"),
- ISPICKVAL(ClosureReason__c, '')
- )
- )
+RecordType.DeveloperName = "New_License_Application_Record_Type",
+ISPICKVAL(Status, "Closed"),
+ISPICKVAL(ClosureReason__c, '')
)
Provide Closure Reason before closing this record
diff --git a/src/main/default/objects/Contact/validationRules/Phone_or_EmailValueCheck.validationRule-meta.xml b/src/main/default/objects/Contact/validationRules/Phone_or_EmailValueCheck.validationRule-meta.xml
new file mode 100644
index 00000000..c049e66e
--- /dev/null
+++ b/src/main/default/objects/Contact/validationRules/Phone_or_EmailValueCheck.validationRule-meta.xml
@@ -0,0 +1,12 @@
+
+
+ Phone_or_EmailValueCheck
+ true
+ ALR-666
+ AND(
+ ISBLANK(Phone),
+ ISBLANK(MobilePhone),
+ ISBLANK(Email)
+)
+ You must specify either Phone, Mobile or Email for this record
+
diff --git a/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionCategory__c.field-meta.xml b/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionCategory__c.field-meta.xml
new file mode 100644
index 00000000..a8371309
--- /dev/null
+++ b/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionCategory__c.field-meta.xml
@@ -0,0 +1,12 @@
+
+
+ AssessmentIndicatorDefinitionCategory__c
+ false
+ AssessmentIndDefinition.Category__c
+ BlankAsZero
+
+ false
+ false
+ Text
+ false
+
diff --git a/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionName__c.field-meta.xml b/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionName__c.field-meta.xml
new file mode 100644
index 00000000..9a707cde
--- /dev/null
+++ b/src/main/default/objects/RegulatoryCodeAssessmentInd/AssessmentIndicatorDefinitionName__c.field-meta.xml
@@ -0,0 +1,12 @@
+
+
+ AssessmentIndicatorDefinitionName__c
+ false
+ AssessmentIndDefinition.Name
+ BlankAsZero
+
+ false
+ false
+ Text
+ false
+
diff --git a/src/main/default/objects/RegulatoryCodeAssessmentInd/RegulatoryCodeName__c.field-meta.xml b/src/main/default/objects/RegulatoryCodeAssessmentInd/RegulatoryCodeName__c.field-meta.xml
new file mode 100644
index 00000000..6c08f152
--- /dev/null
+++ b/src/main/default/objects/RegulatoryCodeAssessmentInd/RegulatoryCodeName__c.field-meta.xml
@@ -0,0 +1,12 @@
+
+
+ RegulatoryCodeName__c
+ false
+ RegulatoryCode.Name
+ BlankAsZero
+
+ false
+ false
+ Text
+ false
+
diff --git a/src/main/default/objects/Service__c/fields/ProvidedBy__c.field-meta.xml b/src/main/default/objects/Service__c/fields/ProvidedBy__c.field-meta.xml
index 562ec012..9494d51d 100644
--- a/src/main/default/objects/Service__c/fields/ProvidedBy__c.field-meta.xml
+++ b/src/main/default/objects/Service__c/fields/ProvidedBy__c.field-meta.xml
@@ -3,7 +3,7 @@
ProvidedBy__c
false
- true
+ false
true
false
Picklist
diff --git a/src/main/default/objects/Service__c/validationRules/ProvidedByRequiredWhenStatusActive.validationRule-meta.xml b/src/main/default/objects/Service__c/validationRules/ProvidedByRequiredWhenStatusActive.validationRule-meta.xml
new file mode 100644
index 00000000..94720a0a
--- /dev/null
+++ b/src/main/default/objects/Service__c/validationRules/ProvidedByRequiredWhenStatusActive.validationRule-meta.xml
@@ -0,0 +1,12 @@
+
+
+ ProvidedByRequiredWhenStatusActive
+ true
+ ALR-1508
+ AND(
+ ISPICKVAL(ServiceType__c, "Assisted Living Service"),
+ ISPICKVAL(Status__c, "Active"),
+ ISPICKVAL(ProvidedBy__c, "")
+)
+ Provided By is Mandatory when Status is Active.
+
diff --git a/src/main/default/omniDataTransforms/CATAssessmentQuestions_1.rpt-meta.xml b/src/main/default/omniDataTransforms/CATAssessmentQuestions_1.rpt-meta.xml
index e9538dfc..951c3dbf 100644
--- a/src/main/default/omniDataTransforms/CATAssessmentQuestions_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/CATAssessmentQuestions_1.rpt-meta.xml
@@ -84,6 +84,51 @@
false
false
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom2852
+ CalculatedScore
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ ScoreTotal
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ var:OperationalScore var:AssignedScore +
+ OperationalScore + AssignedScore
+ CalculatedScore
+ 6.0
+ CATAssessmentQuestionsCustom7783
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom7247
+ CalculatedScore
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ CalculatedScore
+ json
+ false
+ false
+
false
0.0
@@ -115,6 +160,51 @@
false
false
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom403
+ OperationalScore
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ Operational Score
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ var:AssignedScoreValue
+ AssignedScoreValue
+ AssignedScore
+ 5.0
+ CATAssessmentQuestionsCustom2700
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom4045
+ Questions:Comments__c
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ CATAssessment:comments
+ json
+ false
+ false
+
false
0.0
@@ -147,6 +237,20 @@
false
false
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom4791
+ AssignedScore
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ Assigned Score
+ json
+ false
+ false
+
false
0.0
@@ -178,6 +282,37 @@
false
false
+
+ false
+ 0.0
+ | var:Questions:Score__c SUM
+ SUM(Questions:Score__c)
+ OperationalScore
+ 4.0
+ CATAssessmentQuestionsCustom4770
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ CATAssessmentQuestionsCustom4214
+ Questions:Score__c
+ 0.0
+ 0.0
+ CATAssessmentQuestions
+ 1.0
+ CATAssessment:score
+ json
+ false
+ false
+
false
0.0
@@ -194,7 +329,7 @@
JSON
{
- "Questions" : "'Operation History Assessment'"
+ "Questions" : "Operational History Assessment"
}
false
0.0
diff --git a/src/main/default/omniDataTransforms/DRCATExtractwithoutScoreComments_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRCATExtractwithoutScoreComments_1.rpt-meta.xml
new file mode 100644
index 00000000..ed757691
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRCATExtractwithoutScoreComments_1.rpt-meta.xml
@@ -0,0 +1,345 @@
+
+
+ false
+ false
+ false
+ ALR-1258
+ false
+ false
+ JSON
+ DRCATExtractwithoutScoreComments
+ false
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem14
+ Questions:Description
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CATAssessment:description
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem15
+ Questions:Name
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CATAssessment:name
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem12
+ CalculatedScore
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CalculatedScore
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem13
+ CalculatedScore
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ ScoreTotal
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem10
+ OperationalScore
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ Operational Score
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem11
+ AssignedScore
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ Assigned Score
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem8
+ Questions:Score__c
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CATAssessment:score
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem9
+ Questions:Comments__c
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CATAssessment:comments
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ | "SELECT/\/\/Id,Value,SequenceNumber,/\/\/AssessmentIndicatorDefinitionId/\/\/FROM/\/\/AssessmentIndDefinedValue/\/\/WHERE/\/\/AssessmentIndicatorDefinitionId/\/\/=/\/\/'{0}'" var:Questions:Id QUERY
+ QUERY("SELECT Id,Value,SequenceNumber, AssessmentIndicatorDefinitionId FROM AssessmentIndDefinedValue WHERE AssessmentIndicatorDefinitionId = '{0}'",%Questions:Id%)
+ scoresz
+ 2.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem6
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ 'Operational History Assessment'
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem7
+ Category__c
+ AssessmentIndicatorDefinition
+ 1.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Questions
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ var:Questions:Id
+ %Questions:Id%
+ questionsId
+ 1.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem4
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ var:OperationalScore var:AssignedScore +
+ OperationalScore + AssignedScore
+ CalculatedScore
+ 6.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem5
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ Questions:Id
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem2
+ AssessmentIndicatorDefinitionId
+ AssessmentIndDefinedValue
+ 2.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Scores
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ var:AssignedScoreValue
+ AssignedScoreValue
+ AssignedScore
+ 5.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem3
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | "%AssessmentIndicatorDefinitionId%" | var:Scores:Value LIST LISTMERGEPRIMARY
+ LISTMERGEPRIMARY("%AssessmentIndicatorDefinitionId%", LIST(Scores:Value))
+ test
+ 3.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem0
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Questions:Score__c SUM
+ SUM(Questions:Score__c)
+ OperationalScore
+ 4.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem1
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem20
+ Scores:AssessmentIndicatorDefinitionId
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ Scores:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem19
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ List<Map>
+ Scores
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem18
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ List<Map>
+ CATAssessment
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem16
+ Scores:Value
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ Scores:scores
+ json
+ false
+ { }
+ false
+
+
+ false
+ 0.0
+ DRCATExtractwithoutScoreCommentsCustom0jIAq0000002ghVMAQItem17
+ Questions:Id
+ 0.0
+ 0.0
+ DRCATExtractwithoutScoreComments
+ 1.0
+ CATAssessment:Id
+ json
+ false
+ false
+
+ JSON
+ {
+ "Questions" : "Operational History Assessment"
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Extract
+ DRCATExtractwithoutScoreComments_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRCreateAccountContactRelation_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRCreateAccountContactRelation_1.rpt-meta.xml
new file mode 100644
index 00000000..0dad1fd6
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRCreateAccountContactRelation_1.rpt-meta.xml
@@ -0,0 +1,315 @@
+
+
+ false
+ false
+ false
+ false
+ {
+ "ContextId" : "001Aq00000Nl1hsIAB",
+ "omniscriptId" : "0jNAq000000Mul7MAC",
+ "language" : "English",
+ "type" : "EHIS",
+ "runMode" : "preview",
+ "sId" : "0jNAq000000Mul7MAC",
+ "theme" : "lightning",
+ "subType" : "AccountContactRelation",
+ "timeStamp" : "2024-05-22T09:26:59.437Z",
+ "userProfile" : "System Administrator",
+ "userTimeZoneName" : "Asia/Kolkata",
+ "userTimeZone" : "330",
+ "userCurrencyCode" : "CAD",
+ "userName" : "anilkumar.kangan@accenture.com.alr.dev",
+ "userId" : "005Aq00000F8Fo6IAF",
+ "omniProcessId" : "0jNAq000000Mul7MAC",
+ "localTimeZoneName" : "Asia/Calcutta",
+ "Error" : null,
+ "Create ACR" : {
+ "Contact" : "New Contact"
+ },
+ "AccountId" : "001Aq00000Nl1hsIAB",
+ "Contact Details" : {
+ "Block1" : null,
+ "Block4" : {
+ "Salutation" : "Mr.",
+ "FirstName" : "kumar",
+ "LastName" : "Kangan",
+ "Phone" : "1234567890",
+ "Mobile" : "0987654321",
+ "Email" : "test@test.com"
+ },
+ "Roles" : "Main Site Manager;General manager",
+ "Roles3" : "Secondary Site Manager;Assistant manager;Registrant Main Contact",
+ "Active" : true,
+ "Primary Contact" : true,
+ "AccountName" : "Residence 2"
+ },
+ "DRId_Contact" : "003Aq00000TakYLIAZ",
+ "DRId_AccountContactRelation" : "07kAq00000Ao0K1IAJ"
+}
+ false
+ JSON
+ DRCreateAccountContactRelation
+ false
+
+ true
+ 0.0
+ =
+ DRCreateAccountContactRelationCustom9033
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRCreateAccountContactRelation
+ 1.0
+ Id
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom7994
+ Contact Details:Block4:Email
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ Email
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom2062
+ Contact Details:Block4:Phone
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ Phone
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom6286
+ Contact Details:Active
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 2.0
+ IsActive
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom8971
+ AccountId
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 2.0
+ AccountId
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom3619
+ Contact Details:Roles3
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 2.0
+ Roles
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom6660
+ AccountId
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ AccountId
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom8736
+ Contact Details:Block4:Salutation
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ Salutation
+ Contact
+ false
+ false
+
+
+ true
+ 0.0
+ =
+ DRCreateAccountContactRelationCustom6144
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRCreateAccountContactRelation
+ 2.0
+ Id
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom8883
+ Contact Details:Primary Contact
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 2.0
+ PrimaryContact__c
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom8758
+ 0.0
+ Id
+ 1.0
+ DRCreateAccountContactRelation
+ 2.0
+ ContactId
+ AccountContactRelation
+ false
+ true
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom7803
+ Contact Details:Block4:Mobile
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ MobilePhone
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom68
+ Contact Details:Block4:LastName
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ LastName
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom5730
+ Contact Details:Block4:FirstName
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 1.0
+ FirstName
+ Contact
+ false
+ false
+
+
+ false
+ 0.0
+ DRCreateAccountContactRelationCustom4123
+ Contact Details:Roles
+ 0.0
+ 0.0
+ DRCreateAccountContactRelation
+ 2.0
+ Roles
+ AccountContactRelation
+ false
+ false
+
+ SObject
+ {
+ "ContextId" : "001Aq00000Nl1hsIAB",
+ "omniscriptId" : "0jNAq000000Mul7MAC",
+ "language" : "English",
+ "type" : "EHIS",
+ "runMode" : "preview",
+ "sId" : "0jNAq000000Mul7MAC",
+ "theme" : "lightning",
+ "subType" : "AccountContactRelation",
+ "timeStamp" : "2024-05-22T08:48:19.416Z",
+ "userProfile" : "System Administrator",
+ "userTimeZoneName" : "Asia/Kolkata",
+ "userTimeZone" : "330",
+ "userCurrencyCode" : "CAD",
+ "userName" : "anilkumar.kangan@accenture.com.alr.dev",
+ "userId" : "005Aq00000F8Fo6IAF",
+ "omniProcessId" : "0jNAq000000Mul7MAC",
+ "localTimeZoneName" : "Asia/Calcutta",
+ "Error" : null,
+ "Create ACR" : {
+ "Contact" : "Existing Contact"
+ },
+ "AccountId" : "001Aq00000Nl1hsIAB",
+ "Contact Details" : {
+ "Block1" : {
+ "TypeAhead1-Block" : {
+ "TypeAhead1" : "keerthana sri",
+ "Name" : "keerthana sri",
+ "Id" : "003Aq00000PN4HXIA1"
+ }
+ },
+ "Block4" : null,
+ "Roles" : "Main Site Manager;General manager;Administrative Personnel;Registrant Secondary Contact;Nurse / Care Manager",
+ "Roles3" : "Secondary Site Manager;Director of Wellness;Director;CEO",
+ "Active" : true,
+ "Primary Contact" : true,
+ "AccountName" : "Residence 2"
+ }
+}
+ false
+ 0.0
+ true
+ json
+ false
+ 0.0
+ Load
+ DRCreateAccountContactRelation_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRCreateInspectionRelatedRecords_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRCreateInspectionRelatedRecords_1.rpt-meta.xml
index 8e8e48f1..8dde1bc4 100644
--- a/src/main/default/omniDataTransforms/DRCreateInspectionRelatedRecords_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRCreateInspectionRelatedRecords_1.rpt-meta.xml
@@ -9,89 +9,77 @@
DRCreateInspectionRelatedRecords
false
+ Operational History Assessment
false
0.0
- DRCreateInspectionRelatedRecordsCustom493
- IAISingleJSON:comments
+ DRCreateInspectionRelatedRecordsCustom9030
0.0
0.0
DRCreateInspectionRelatedRecords
- 2.0
- Comments__c
- InspectionAssessmentInd
+ 1.0
+ Name
+ AssessmentTask
false
false
- NA
false
0.0
- DRCreateInspectionRelatedRecordsCustom3675
- 0.0
- 0.0
- DRCreateInspectionRelatedRecords
- 2.0
- Result
- InspectionAssessmentInd
- false
- false
-
-
- true
- 0.0
- =
- DRCreateInspectionRelatedRecordsCustom6967
+ | TODAY
+ TODAY()
+ TodayDate
+ 3.0
+ DRCreateInspectionRelatedRecordsCustom6064
0.0
0.0
- FAKEMAPPING
DRCreateInspectionRelatedRecords
- 1.0
- Id
- AssessmentTask
+ 0.0
+ Formula
+ Formula
false
false
false
0.0
- =
- DRCreateInspectionRelatedRecordsCustom3849
+ DRCreateInspectionRelatedRecordsCustom5310
+ CATAssessment:Id
0.0
- Id
- 1.0
- FAKEMAPPING
+ 0.0
DRCreateInspectionRelatedRecords
2.0
- AssessmentTaskId
+ AssessmentIndDefinitionId
InspectionAssessmentInd
false
false
- true
+ false
0.0
- =
- DRCreateInspectionRelatedRecordsCustom6885
+ "InspectionChecklist"
+ "InspectionChecklist"
+ AssessmentTaskType
+ 2.0
+ DRCreateInspectionRelatedRecordsCustom1516
0.0
0.0
- FAKEMAPPING
DRCreateInspectionRelatedRecords
- 2.0
- Id
- InspectionAssessmentInd
+ 0.0
+ Formula
+ Formula
false
false
- Completed
false
0.0
- DRCreateInspectionRelatedRecordsCustom3926
+ DRCreateInspectionRelatedRecordsCustom6600
+ ContextId
0.0
0.0
DRCreateInspectionRelatedRecords
1.0
- Status
+ ParentId
AssessmentTask
false
false
@@ -113,14 +101,14 @@
false
0.0
- DRCreateInspectionRelatedRecordsCustom6600
- ContextId
+ DRCreateInspectionRelatedRecordsCustom9357
+ CATAssessment:score
0.0
0.0
DRCreateInspectionRelatedRecords
- 1.0
- ParentId
- AssessmentTask
+ 2.0
+ Picklist_Field_Response__c
+ InspectionAssessmentInd
false
false
@@ -144,75 +132,87 @@
false
0.0
- DRCreateInspectionRelatedRecordsCustom9357
- IAISingleJSON:Value
+ =
+ DRCreateInspectionRelatedRecordsCustom3849
0.0
- 0.0
+ Id
+ 1.0
+ FAKEMAPPING
DRCreateInspectionRelatedRecords
2.0
- Picklist_Field_Response__c
+ AssessmentTaskId
InspectionAssessmentInd
false
false
- false
+ true
0.0
- | TODAY
- TODAY()
- TodayDate
- 3.0
- DRCreateInspectionRelatedRecordsCustom6064
+ =
+ DRCreateInspectionRelatedRecordsCustom6967
0.0
0.0
+ FAKEMAPPING
DRCreateInspectionRelatedRecords
- 0.0
- Formula
- Formula
+ 1.0
+ Id
+ AssessmentTask
false
false
- Operational History Assessment
+ Completed
false
0.0
- DRCreateInspectionRelatedRecordsCustom9030
+ DRCreateInspectionRelatedRecordsCustom3926
0.0
0.0
DRCreateInspectionRelatedRecords
1.0
- Name
+ Status
AssessmentTask
false
false
+ true
+ 0.0
+ =
+ DRCreateInspectionRelatedRecordsCustom6885
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRCreateInspectionRelatedRecords
+ 2.0
+ Id
+ InspectionAssessmentInd
+ false
+ false
+
+
+ NA
false
0.0
- "InspectionChecklist"
- "InspectionChecklist"
- AssessmentTaskType
- 2.0
- DRCreateInspectionRelatedRecordsCustom1516
+ DRCreateInspectionRelatedRecordsCustom3675
0.0
0.0
DRCreateInspectionRelatedRecords
- 0.0
- Formula
- Formula
+ 2.0
+ Result
+ InspectionAssessmentInd
false
false
false
0.0
- DRCreateInspectionRelatedRecordsCustom5310
- IAISingleJSON:Id
+ DRCreateInspectionRelatedRecordsCustom493
+ CATAssessment:comments
0.0
0.0
DRCreateInspectionRelatedRecords
2.0
- AssessmentIndDefinitionId
+ Comments__c
InspectionAssessmentInd
false
false
diff --git a/src/main/default/omniDataTransforms/DRGetNonCompliantIssueFromInspection_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRGetNonCompliantIssueFromInspection_1.rpt-meta.xml
index 4c5b251e..19d8e014 100644
--- a/src/main/default/omniDataTransforms/DRGetNonCompliantIssueFromInspection_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRGetNonCompliantIssueFromInspection_1.rpt-meta.xml
@@ -17,7 +17,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- Scope
+ Questions1:Scope
json
false
false
@@ -31,7 +31,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- Severity
+ Questions1:Severity
json
false
false
@@ -45,7 +45,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- RegulatoryCodeId
+ Questions1:RegulatoryCodeId
json
false
false
@@ -59,7 +59,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- RegulatoryCode
+ Questions1:RegulatoryCode
json
false
false
@@ -73,7 +73,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- UserScore
+ Questions1:UserScore
json
false
false
@@ -87,7 +87,21 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- Id
+ Questions1:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRGetNonCompliantIssueFromInspectionCustom2516
+ 0.0
+ 0.0
+ DRGetNonCompliantIssueFromInspection
+ 1.0
+ List<Map>
+ Questions1
json
false
false
@@ -101,7 +115,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- AssessmentQuestion
+ Questions1:AssessmentQuestion
json
false
false
@@ -115,7 +129,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- Description
+ Questions1:Description
json
false
false
@@ -129,7 +143,7 @@
0.0
DRGetNonCompliantIssueFromInspection
1.0
- Category
+ Questions1:Category
json
false
{ }
@@ -152,23 +166,6 @@
false
false
-
- false
- 0.0
- | | var:Scope__c ISBLANK '/\/\/' var:RegCodeVio:Scope__c IF
- IF(ISBLANK(Scope__c), ' ', RegCodeVio:Scope__c)
- Test
- 1.0
- DRGetNonCompliantIssueFromInspectionCustom4126
- 0.0
- 0.0
- DRGetNonCompliantIssueFromInspection
- 0.0
- Formula
- Formula
- false
- false
-
false
0.0
diff --git a/src/main/default/omniDataTransforms/DRToUpdateScoreValues_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRToUpdateScoreValues_1.rpt-meta.xml
index f1a06ba1..caf72713 100644
--- a/src/main/default/omniDataTransforms/DRToUpdateScoreValues_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRToUpdateScoreValues_1.rpt-meta.xml
@@ -61,7 +61,7 @@
2.0
Rating
Account
- false
+ true
false
@@ -82,7 +82,7 @@
false
0.0
DRToUpdateScoreValuesCustom1728
- Confirmation:OperationalScore
+ Confirmation:Operational Score
0.0
0.0
DRToUpdateScoreValues
@@ -168,46 +168,238 @@
SObject
{
- "vlcTimeTracking" : {
- "DRToUpdateScoreValues" : null,
- "SuccessMessage" : null,
- "DRToCreateRecords" : null,
- "DecisionMatrixToGetTotalScore" : null,
- "DecisionMatrixToGetAssignedScore" : null,
- "Confirmation" : null,
- "RAToGetCalculatedValueForInspectionScore" : null,
- "OperationalHistoryStep" : null,
- "DRGetNonCompliantIssueFromInspection" : null,
- "NavigateAction1" : null,
- "DecisionMatrixToGetRiskScore" : null,
- "InspectionStep" : null
- },
- "vlcPersistentComponent" : { },
- "userTimeZone" : null,
- "userProfile" : null,
- "userName" : null,
- "userId" : null,
- "timeStamp" : null,
- "ContextId" : null,
- "SuccessMessage" : { },
- "Confirmation" : {
- "CalculatedText" : null,
- "OperationalText" : null,
- "InspectionText" : null,
- "TotalScore" : null,
- "CalculatedScore" : null,
- "OperationalScore" : null,
- "AssignedScore" : null,
- "TotalText" : null
- },
- "OperationalHistoryStep" : {
- "CalculatedScoreFormula" : null,
- "CustomLWC2" : null,
- "OperationalScoreFormula" : null
+ "objectList" : {
+ "ContextId" : "0Z5Aq0000001D01KAE",
+ "omniscriptId" : "0jNAq000000KD4LMAW",
+ "language" : "English",
+ "type" : "Risk",
+ "runMode" : "preview",
+ "sId" : "0jNAq000000KD4LMAW",
+ "theme" : "lightning",
+ "subType" : "Assessment",
+ "timeStamp" : "2024-04-06T04:28:05.168Z",
+ "userProfile" : "System Administrator",
+ "userTimeZoneName" : "America/Vancouver",
+ "userTimeZone" : "-420",
+ "userCurrencyCode" : "CAD",
+ "userName" : "komal.d.gupta@accenture.com.alr.dev",
+ "userId" : "005Aq00000F8Fo4IAF",
+ "omniProcessId" : "0jNAq000000KD4LMAW",
+ "localTimeZoneName" : "Asia/Calcutta",
+ "Questions1" : [ {
+ "RegulatoryCodeId" : "0fCAq00000001T8MAI",
+ "Id" : "0fvAq000000N0QjIAK",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 2,
+ "RegulatoryCode" : "S 22.4 - Employees - Character and skill requirements",
+ "Scope" : "Pattern",
+ "Description" : "jlkdjhdj",
+ "Category" : "Administrative and Other Matters",
+ "AssessmentQuestion" : "A person employed as a manager must not be a volunteer."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001SLMAY",
+ "Id" : "0fvAq000000N0SLIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 10,
+ "RegulatoryCode" : "CCALA 26.1-Operating an assisted living residence",
+ "Scope" : "Isolated",
+ "Description" : "hgfjfhkfmh",
+ "Category" : "Registration",
+ "AssessmentQuestion" : "A person must not operate an assisted living residence that is not registered under section 25 (1)."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000P905IAC",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 1,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001TSMAY",
+ "Id" : "0fvAq000000P91hIAC",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 2,
+ "RegulatoryCode" : "S 26.1 - Emergency Preparedness - Emergency measures",
+ "Scope" : "Pattern",
+ "Category" : "Emergency Preparedness",
+ "AssessmentQuestion" : "A registrant must display prominently throughout the assisted living residence evacuation procedures and a diagram of the location of emergency exits."
+ } ],
+ "InspectionStep" : {
+ "Required Error Message" : true,
+ "Formula2" : true,
+ "Formula3" : true
+ },
+ "UpdateData" : [ {
+ "Scope__c" : "Isolated",
+ "Id" : "0fvAq000000N0QjIAK",
+ "Severity__c" : "Significant Harm"
+ }, {
+ "Scope__c" : "Pattern",
+ "Id" : "0fvAq000000N0SLIA0",
+ "Severity__c" : "Minimal Harm"
+ }, {
+ "Scope__c" : "Pattern",
+ "Id" : "0fvAq000000P905IAC",
+ "Severity__c" : "Significant Harm"
+ }, {
+ "Scope__c" : "Isolated",
+ "Id" : "0fvAq000000P91hIAC",
+ "Severity__c" : "Significant Harm"
+ } ],
+ "Anotherprop" : {
+ "prop1" : "anothervalue"
+ },
+ "Questions" : [ {
+ "RegulatoryCodeId" : "0fCAq00000001T8MAI",
+ "Id" : "0fvAq000000N0QjIAK",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 2,
+ "RegulatoryCode" : "S 22.4 - Employees - Character and skill requirements",
+ "Scope" : "Pattern",
+ "Description" : "jlkdjhdj",
+ "Category" : "Administrative and Other Matters",
+ "AssessmentQuestion" : "A person employed as a manager must not be a volunteer."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001SLMAY",
+ "Id" : "0fvAq000000N0SLIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 10,
+ "RegulatoryCode" : "CCALA 26.1-Operating an assisted living residence",
+ "Scope" : "Isolated",
+ "Description" : "hgfjfhkfmh",
+ "Category" : "Registration",
+ "AssessmentQuestion" : "A person must not operate an assisted living residence that is not registered under section 25 (1)."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000P905IAC",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 1,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }, {
+ "RegulatoryCodeId" : "0fCAq00000001TSMAY",
+ "Id" : "0fvAq000000P91hIAC",
+ "Severity" : "Minimal Harm",
+ "UserScore" : 2,
+ "RegulatoryCode" : "S 26.1 - Emergency Preparedness - Emergency measures",
+ "Scope" : "Pattern",
+ "Category" : "Emergency Preparedness",
+ "AssessmentQuestion" : "A registrant must display prominently throughout the assisted living residence evacuation procedures and a diagram of the location of emergency exits."
+ } ],
+ "parent" : [ {
+ "RiskScore" : 10
+ }, {
+ "RiskScore" : 2
+ }, {
+ "RiskScore" : 13
+ }, {
+ "RiskScore" : 10
+ } ],
+ "SingleListJSON" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "Id" : "0fvAq000000N0QjIAK",
+ "Severity__c" : "Significant Harm",
+ "Scope__c" : "Isolated",
+ "RiskScore" : 10
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "Id" : "0fvAq000000N0SLIA0",
+ "Severity__c" : "Minimal Harm",
+ "Scope__c" : "Pattern",
+ "RiskScore" : 2
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "Id" : "0fvAq000000P905IAC",
+ "Severity__c" : "Significant Harm",
+ "Scope__c" : "Pattern",
+ "RiskScore" : 13
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "Id" : "0fvAq000000P91hIAC",
+ "Severity__c" : "Significant Harm",
+ "Scope__c" : "Isolated",
+ "RiskScore" : 10
+ } ],
+ "RiskMatrix" : 40,
+ "matrixResult" : {
+ "AssignedScore" : 8,
+ "TotalScore" : "High"
+ },
+ "CATAssessment" : [ {
+ "Id" : "0euAq00000005anIAA",
+ "description" : "• appropriate reporting (e.g. 24-hr r, sufficient & relevant information provided)\r\n• plans for prevention & mitigation of future incidents\r\n• responds to & takes appropriate corrective action for RI’s (e.g. sufficient &proactive steps).",
+ "name" : "Reportable Incidents Operational History Score"
+ }, {
+ "Id" : "0euAq00000005cPIAQ",
+ "description" : "Inspection and follow up:\r\n• responds to non-compliance from previous inspections (e.g. respond sufficiently, proactive steps for\r\ncorrective actions).\r\n• identifying & responding to potential issues of non-compliance (e.g. ensures all necessary\r\ndocumentation for staff)",
+ "name" : "Inspection & Follow-up Operational History Score"
+ }, {
+ "Id" : "0euAq00000005e1IAA",
+ "description" : "• maintains compliance & with terms/conditions (if appl.)\r\n• cooperation during an investigation (e.g. proactive to H&S plan, timely document submission).\r\n• takes corrective & proactive action for non-compliance\r\n• non-compliance (pattern or ongoing)\"",
+ "name" : "Investigations Operational History Score"
+ } ],
+ "Scores" : [ {
+ "Id" : "0euAq00000005anIAA",
+ "scores" : "1"
+ }, {
+ "Id" : "0euAq00000005anIAA",
+ "scores" : "2"
+ }, {
+ "Id" : "0euAq00000005cPIAQ",
+ "scores" : "1"
+ }, {
+ "Id" : "0euAq00000005cPIAQ",
+ "scores" : "2"
+ }, {
+ "Id" : "0euAq00000005cPIAQ",
+ "scores" : "3"
+ }, {
+ "Id" : "0euAq00000005cPIAQ",
+ "scores" : "4"
+ }, {
+ "Id" : "0euAq00000005e1IAA",
+ "scores" : "1"
+ }, {
+ "Id" : "0euAq00000005e1IAA",
+ "scores" : "2"
+ }, {
+ "Id" : "0euAq00000005e1IAA",
+ "scores" : "3"
+ } ],
+ "OperationalHistoryStep" : {
+ "Show Error Message for Score" : true,
+ "Formula1" : true,
+ "OperationalScoreFormula" : 7,
+ "CalculatedScoreFormula" : 15
+ },
+ "UpdatedJSONScore" : [ {
+ "Value" : "2",
+ "Id" : "0euAq00000005anIAA"
+ }, {
+ "Value" : "3",
+ "Id" : "0euAq00000005cPIAQ"
+ }, {
+ "Value" : "2",
+ "Id" : "0euAq00000005e1IAA"
+ } ],
+ "Confirmation" : {
+ "InspectionText" : "Part A: Inspection Score:",
+ "AssignedScore" : 8,
+ "OperationalText" : "Part B: Operational History Score:",
+ "OperationalScore" : 7,
+ "CalculatedText" : "Calculated Score:",
+ "CalculatedScore" : 15,
+ "TotalText" : "Rating:",
+ "TotalScore" : "High"
+ },
+ "contextId" : "0Z5Aq0000001D01KAE"
},
- "InspectionStep" : {
- "CustomLWC1" : null
- }
+ "bundleName" : "DRToUpdateScoreValues",
+ "omniScriptId" : "0jNAq000000KD4LMAW",
+ "elementName" : "DRToUpdateScoreValues"
}
false
0.0
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity1_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity1_1.rpt-meta.xml
new file mode 100644
index 00000000..f317e1c2
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity1_1.rpt-meta.xml
@@ -0,0 +1,347 @@
+
+
+ false
+ false
+ false
+ false
+ [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+} ]
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "RiskScore" : 15,
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "RiskScore" : 14
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "RiskScore" : 10
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "RiskScore" : 5
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "RiskScore" : 8
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "RiskScore" : 8
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "RiskScore" : 18
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "RiskScore" : 9
+ } ]
+}
+ false
+ JSON
+ DRTransformAddingIdScopeSeverity1
+ false
+
+ true
+ 0.0
+ DRTransformAddingIdScopeSeverity1Custom6486
+ LoopBlock1:LoopBlockIterationIndex
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 1.0
+ LoopBlock1:LoopBlockIterationIndex
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity1Custom8505
+ LoopBlock1:Test1:Test2:Severity__c
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 1.0
+ LoopBlock1:Severity
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity1Custom741
+ LoopBlock1:Test1:Test2:Description
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 1.0
+ LoopBlock1:Description
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ 1.0
+ DRTransformAddingIdScopeSeverity1Custom0jIAq0000002e6DMAQItem0
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity1Custom0jIAq0000002e6DMAQItem2
+ LoopBlock1:Test1:Test2:Scope__c
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 1.0
+ LoopBlock1:Scope
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity1Custom0jIAq0000002e6DMAQItem1
+ LoopBlock1:Test1:Test2:Id
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity1
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+ JSON
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 15
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 14
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 10
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 5
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 8
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 8
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 18
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 9
+ }
+ }
+ } ]
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Transform
+ DRTransformAddingIdScopeSeverity1_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity2_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity2_1.rpt-meta.xml
new file mode 100644
index 00000000..e54b34a6
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRTransformAddingIdScopeSeverity2_1.rpt-meta.xml
@@ -0,0 +1,468 @@
+
+
+ false
+ false
+ false
+ false
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+ } ]
+}
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ } ]
+}
+ false
+ JSON
+ DRTransformAddingIdScopeSeverity2
+ false
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem10
+ LoopBlock1:Test1:Test2:Id
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem9
+ LoopBlock1:Test1:Test2:RegulatoryCode
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:RegulatoryCode
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom6999
+ LoopBlock1:Id
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem6
+ LoopBlock1:Test1:Test2:Description
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Description
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem5
+ LoopBlock1:Test1:Test2:RegulatoryCodeId
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:RegulatoryCodeId
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem8
+ LoopBlock1:Test1:Test2:AssessmentQuestion
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:AssessmentQuestion
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem7
+ LoopBlock1:Test1:Test2:Severity
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Severity
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem2
+ LoopBlock1:Test1:Test2:UserScore
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:UserScore
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem1
+ LoopBlock1:Test1:Test2:Category
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Category
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem3
+ LoopBlock1:Test1:Test2:Scope
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:Scope
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ 1.0
+ DRTransformAddingIdScopeSeverity2Custom0jIAq0000002e7pMAAItem0
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ true
+ 0.0
+ DRTransformAddingIdScopeSeverity2Custom5095
+ LoopBlock1:LoopBlockIterationIndex
+ 0.0
+ 0.0
+ DRTransformAddingIdScopeSeverity2
+ 1.0
+ LoopBlock1:LoopBlockIterationIndex
+ json
+ false
+ false
+
+ JSON
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+ } ]
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Transform
+ DRTransformAddingIdScopeSeverity2_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT1_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT1_1.rpt-meta.xml
new file mode 100644
index 00000000..8ce9a371
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT1_1.rpt-meta.xml
@@ -0,0 +1,306 @@
+
+
+ false
+ false
+ false
+ ALR-1258
+ false
+ [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+}, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+} ]
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "RiskScore" : 15,
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "RiskScore" : 14
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "RiskScore" : 10
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "RiskScore" : 5
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "RiskScore" : 8
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "RiskScore" : 8
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "RiskScore" : 18
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "RiskScore" : 9
+ } ]
+}
+ false
+ JSON
+ DRTransformAddingLoopIndexforCAT1
+ false
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT1Custom0jIAq0000002efhMAAItem1
+ LoopBlock1:Test1:Test2:Id
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT1
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT1Custom0jIAq0000002efhMAAItem2
+ LoopBlock1:Test1:Test2:description
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT1
+ 1.0
+ LoopBlock1:description
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT1Custom7218
+ LoopBlock1:Test1:Test2:name
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT1
+ 1.0
+ LoopBlock1:name
+ json
+ false
+ false
+
+ JSON
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 15
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 14
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 10
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 5
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 8
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 8
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 18
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues1Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RiskScore" : 9
+ }
+ }
+ } ]
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Transform
+ DRTransformAddingLoopIndexforCAT1_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT2_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT2_1.rpt-meta.xml
new file mode 100644
index 00000000..2576d9f4
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforCAT2_1.rpt-meta.xml
@@ -0,0 +1,357 @@
+
+
+ false
+ false
+ false
+ ALR-1258
+ false
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+ } ]
+}
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ } ]
+}
+ false
+ JSON
+ DRTransformAddingLoopIndexforCAT2
+ false
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT2Custom0jIAq0000002ehJMAQItem8
+ LoopBlock1:Test1:Test2:Value
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT2
+ 1.0
+ LoopBlock1:Value
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT2Custom0jIAq0000002ehJMAQItem10
+ LoopBlock1:Test1:Test2:Id
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT2
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ DRTransformAddingLoopIndexforCAT2Custom0jIAq0000002ehJMAQItem4
+ LoopBlock1:Test1:Test2:Id
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT2
+ 1.0
+ LoopBlock1:Id
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DRTransformAddingLoopIndexforCAT2Custom0jIAq0000002ehJMAQItem1
+ LoopBlock1:Test1:Test2:comments
+ 0.0
+ 0.0
+ DRTransformAddingLoopIndexforCAT2
+ 1.0
+ LoopBlock1:comments
+ json
+ false
+ false
+
+ JSON
+ {
+ "LoopBlock1" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "Description" : "Hello",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Widespread",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Isolated",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }
+ }
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "SetValues3Status" : true,
+ "LoopBlockIterationStatus" : true,
+ "Test1" : {
+ "Test2" : {
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "More than Minimal Harm",
+ "UserScore" : 5,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ }
+ }
+ } ]
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Transform
+ DRTransformAddingLoopIndexforCAT2_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforList2_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforList2_1.rpt-meta.xml
index 3bc26d85..408de2d1 100644
--- a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforList2_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforList2_1.rpt-meta.xml
@@ -214,12 +214,12 @@
false
0.0
DRTransformAddingLoopIndexforList203220572840611147
- LoopBlock1:Test1:Test2:Severity__c
+ LoopBlock1:Test1:Test2:Severity
0.0
0.0
DRTransformAddingLoopIndexforList2
1.0
- LoopBlock1:Severity__c
+ LoopBlock1:Severity
json
false
false
@@ -284,12 +284,12 @@
false
0.0
DRTransformAddingLoopIndexforList23850427967620682
- LoopBlock1:Test1:Test2:Scope__c
+ LoopBlock1:Test1:Test2:Scope
0.0
0.0
DRTransformAddingLoopIndexforList2
1.0
- LoopBlock1:Scope__c
+ LoopBlock1:Scope
json
false
false
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI1_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI1_1.rpt-meta.xml
index 7d028d91..44677205 100644
--- a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI1_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI1_1.rpt-meta.xml
@@ -191,13 +191,13 @@
false
0.0
- DRTransformAddingLoopIndexforListIAI1Custom0jIbZ000000048TUAQItem3
- LoopBlock1:Test1:Test2:comments
+ DRTransformAddingLoopIndexforListIAI1Custom0jIbZ000000048TUAQItem2
+ LoopBlock1:LoopBlockIterationIndex
0.0
0.0
DRTransformAddingLoopIndexforListIAI1
1.0
- LoopBlock1:comments
+ LoopBlock1:LoopBlockIterationIndex
json
false
false
@@ -205,13 +205,13 @@
false
0.0
- DRTransformAddingLoopIndexforListIAI1Custom0jIbZ000000048TUAQItem2
- LoopBlock1:LoopBlockIterationIndex
+ DRTransformAddingLoopIndexforListIAI1Custom0jIbZ000000048TUAQItem3
+ LoopBlock1:Test1:Test2:comments
0.0
0.0
DRTransformAddingLoopIndexforListIAI1
1.0
- LoopBlock1:LoopBlockIterationIndex
+ LoopBlock1:comments
json
false
false
diff --git a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI2_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI2_1.rpt-meta.xml
index d5b3f4e8..fe908205 100644
--- a/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI2_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRTransformAddingLoopIndexforListIAI2_1.rpt-meta.xml
@@ -157,14 +157,14 @@
false
0.0
- DRTransformAddingLoopIndexforListIAI2Custom0jIbZ00000004A5UAIItem2
- LoopBlock1:LoopBlockIterationIndex
+ 1.0
+ DRTransformAddingLoopIndexforListIAI2Custom0jIbZ00000004A5UAIItem0
0.0
0.0
DRTransformAddingLoopIndexforListIAI2
- 1.0
- LoopBlock1:LoopBlockIterationIndex
- json
+ 0.0
+ Formula
+ Formula
false
false
@@ -185,14 +185,14 @@
false
0.0
- 1.0
- DRTransformAddingLoopIndexforListIAI2Custom0jIbZ00000004A5UAIItem0
+ DRTransformAddingLoopIndexforListIAI2Custom0jIbZ00000004A5UAIItem2
+ LoopBlock1:LoopBlockIterationIndex
0.0
0.0
DRTransformAddingLoopIndexforListIAI2
- 0.0
- Formula
- Formula
+ 1.0
+ LoopBlock1:LoopBlockIterationIndex
+ json
false
false
diff --git a/src/main/default/omniDataTransforms/DRUpdateAccountContactRelation_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRUpdateAccountContactRelation_1.rpt-meta.xml
new file mode 100644
index 00000000..32b7f4d3
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRUpdateAccountContactRelation_1.rpt-meta.xml
@@ -0,0 +1,242 @@
+
+
+ false
+ false
+ false
+ false
+ {
+ "objectList" : {
+ "ContextId" : "001Aq00000Nl1hsIAB",
+ "omniscriptId" : "0jNAq000000Mul7MAC",
+ "language" : "English",
+ "type" : "EHIS",
+ "runMode" : "preview",
+ "sId" : "0jNAq000000Mul7MAC",
+ "theme" : "lightning",
+ "subType" : "AccountContactRelation",
+ "timeStamp" : "2024-05-22T09:11:17.809Z",
+ "userProfile" : "System Administrator",
+ "userTimeZoneName" : "Asia/Kolkata",
+ "userTimeZone" : "330",
+ "userCurrencyCode" : "CAD",
+ "userName" : "anilkumar.kangan@accenture.com.alr.dev",
+ "userId" : "005Aq00000F8Fo6IAF",
+ "omniProcessId" : "0jNAq000000Mul7MAC",
+ "localTimeZoneName" : "Asia/Calcutta",
+ "Error" : null,
+ "Create ACR" : {
+ "Contact" : "Existing Contact"
+ },
+ "AccountId" : "001Aq00000Nl1hsIAB",
+ "Contact Details" : {
+ "Block1" : {
+ "TypeAhead1-Block" : {
+ "TypeAhead1" : "Anil Kumar",
+ "Name" : "Anil Kumar",
+ "Id" : "003Aq00000TabWsIAJ"
+ }
+ },
+ "Block4" : null,
+ "Roles" : "Main Site Manager;General manager",
+ "Roles3" : "Secondary Site Manager;Assistant manager",
+ "Active" : true,
+ "Primary Contact" : true,
+ "AccountName" : "Residence 2"
+ },
+ "contextId" : "001Aq00000Nl1hsIAB"
+ },
+ "bundleName" : "DRUpdateAccountContactRelation",
+ "omniScriptId" : "0jNAq000000Mul7MAC",
+ "elementName" : "ExistingContactRelationship"
+}
+ false
+ JSON
+ DRUpdateAccountContactRelation
+ false
+
+ true
+ 0.0
+ =
+ DRUpdateAccountContactRelationCustom9579
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRUpdateAccountContactRelation
+ 1.0
+ Id
+ Account
+ false
+ false
+
+
+ true
+ 0.0
+ =
+ DRUpdateAccountContactRelationCustom6691
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRUpdateAccountContactRelation
+ 2.0
+ Id
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom6416
+ Contact Details:Roles3
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 2.0
+ Roles
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom169
+ Contact Details:Roles
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 2.0
+ Roles
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom5541
+ Contact Details:Active
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 2.0
+ IsActive
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom188
+ Contact Details:Block1:TypeAhead1-Block:Id
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 2.0
+ ContactId
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom5958
+ Contact Details:Primary Contact
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 2.0
+ PrimaryContact__c
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ DRUpdateAccountContactRelationCustom2711
+ 0.0
+ Id
+ 1.0
+ FAKEMAPPING
+ DRUpdateAccountContactRelation
+ 2.0
+ AccountId
+ AccountContactRelation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateAccountContactRelationCustom1778
+ ContextId
+ 0.0
+ 0.0
+ DRUpdateAccountContactRelation
+ 1.0
+ Id
+ Account
+ false
+ true
+
+ SObject
+ {
+ "objectList" : {
+ "ContextId" : "001Aq00000Nl1hsIAB",
+ "omniscriptId" : "0jNAq000000Mul7MAC",
+ "language" : "English",
+ "type" : "EHIS",
+ "runMode" : "preview",
+ "sId" : "0jNAq000000Mul7MAC",
+ "theme" : "lightning",
+ "subType" : "AccountContactRelation",
+ "timeStamp" : "2024-05-22T09:11:17.809Z",
+ "userProfile" : "System Administrator",
+ "userTimeZoneName" : "Asia/Kolkata",
+ "userTimeZone" : "330",
+ "userCurrencyCode" : "CAD",
+ "userName" : "anilkumar.kangan@accenture.com.alr.dev",
+ "userId" : "005Aq00000F8Fo6IAF",
+ "omniProcessId" : "0jNAq000000Mul7MAC",
+ "localTimeZoneName" : "Asia/Calcutta",
+ "Error" : null,
+ "Create ACR" : {
+ "Contact" : "Existing Contact"
+ },
+ "AccountId" : "001Aq00000Nl1hsIAB",
+ "Contact Details" : {
+ "Block1" : {
+ "TypeAhead1-Block" : {
+ "TypeAhead1" : "Anil Kumar",
+ "Name" : "Anil Kumar",
+ "Id" : "003Aq00000TabWsIAJ"
+ }
+ },
+ "Block4" : null,
+ "Roles" : "Main Site Manager;General manager",
+ "Roles3" : "Secondary Site Manager;Assistant manager",
+ "Active" : true,
+ "Primary Contact" : true,
+ "AccountName" : "Residence 2"
+ },
+ "contextId" : "001Aq00000Nl1hsIAB"
+ },
+ "bundleName" : "DRUpdateAccountContactRelation",
+ "omniScriptId" : "0jNAq000000Mul7MAC",
+ "elementName" : "ExistingContactRelationship"
+}
+ false
+ 0.0
+ true
+ json
+ false
+ 0.0
+ Load
+ DRUpdateAccountContactRelation_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRUpdateRegCodeViolationRecords_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRUpdateRegCodeViolationRecords_1.rpt-meta.xml
index c8427417..15e871e4 100644
--- a/src/main/default/omniDataTransforms/DRUpdateRegCodeViolationRecords_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/DRUpdateRegCodeViolationRecords_1.rpt-meta.xml
@@ -141,7 +141,7 @@
false
0.0
DRUpdateRegCodeViolationRecordsCustom570
- SingleListJSON:Scope__c
+ SingleListJSON:Scope
0.0
0.0
DRUpdateRegCodeViolationRecords
@@ -155,7 +155,7 @@
false
0.0
DRUpdateRegCodeViolationRecordsCustom4773
- SingleListJSON:Severity__c
+ SingleListJSON:Severity
0.0
0.0
DRUpdateRegCodeViolationRecords
diff --git a/src/main/default/omniDataTransforms/DRUpdateScoreComment_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRUpdateScoreComment_1.rpt-meta.xml
new file mode 100644
index 00000000..f78c4f80
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRUpdateScoreComment_1.rpt-meta.xml
@@ -0,0 +1,80 @@
+
+
+ false
+ false
+ false
+ ALR-1258
+ false
+ false
+ JSON
+ DRUpdateScoreComment
+ false
+
+ false
+ 0.0
+ DRUpdateScoreCommentCustom7418
+ CATAssessment:Id
+ 0.0
+ 0.0
+ DRUpdateScoreComment
+ 1.0
+ Id
+ AssessmentIndicatorDefinition
+ false
+ false
+
+
+ true
+ 0.0
+ =
+ DRUpdateScoreCommentCustom9233
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRUpdateScoreComment
+ 1.0
+ Id
+ AssessmentIndicatorDefinition
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateScoreCommentCustom4177
+ CATAssessment:Value
+ 0.0
+ 0.0
+ DRUpdateScoreComment
+ 1.0
+ Score__c
+ AssessmentIndicatorDefinition
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateScoreCommentCustom9627
+ CATAssessment:comments
+ 0.0
+ 0.0
+ DRUpdateScoreComment
+ 1.0
+ Comments__c
+ AssessmentIndicatorDefinition
+ false
+ false
+
+ SObject
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Load
+ DRUpdateScoreComment_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRUpdateScorewhenBlank_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRUpdateScorewhenBlank_1.rpt-meta.xml
new file mode 100644
index 00000000..ee80de01
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRUpdateScorewhenBlank_1.rpt-meta.xml
@@ -0,0 +1,205 @@
+
+
+ false
+ false
+ false
+ To Update the Reg Code Violation as part of ALR-860
+ false
+ {
+ "ParentList" : [ {
+ "LoopBlockIterationIndex" : 1,
+ "RegulatoryCodeId" : "0fCAq00000001VpMAI",
+ "Id" : "0fvAq000000IjI1IAK",
+ "Severity" : "Significant Harm",
+ "UserScore" : 15,
+ "RiskScore" : 10,
+ "RegulatoryCode" : "S 55.3.b.i - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Description" : "Hello",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan ifthe daily menu changes significantly."
+ }, {
+ "LoopBlockIterationIndex" : 2,
+ "RegulatoryCodeId" : "0fCAq00000001VnMAI",
+ "Id" : "0fvAq000000IjJdIAK",
+ "Severity" : "Significant Harm",
+ "RiskScore" : 10,
+ "RegulatoryCode" : "S 55.2.c - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Description" : "Hello",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must ensure that a menu plan is developed thatprovides for a variety of foods and fluids, taking into consideration the nutritional needs and cultural, spiritual and personal preferences of residents."
+ }, {
+ "LoopBlockIterationIndex" : 3,
+ "RegulatoryCodeId" : "0fCAq00000001VaMAI",
+ "Id" : "0fvAq000000IjLFIA0",
+ "Severity" : "Significant Harm",
+ "RiskScore" : 14,
+ "RegulatoryCode" : "S 51.2.b.i - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Widespread",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the registrar, in the form and manner required by the registrar."
+ }, {
+ "LoopBlockIterationIndex" : 4,
+ "RegulatoryCodeId" : "0fCAq00000001VbMAI",
+ "Id" : "0fvAq000000IjMrIAK",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "RiskScore" : 19,
+ "RegulatoryCode" : "S 51.2.b.ii - Resident Health and Safety - Reportable incidents",
+ "Scope" : "Widespread",
+ "Category" : "Health and Safety",
+ "AssessmentQuestion" : "A registrant must do all of the following if this section applies:within 24 hours of the incident, report the incident to all of the following:the resident's contact person, if appropriate, and any other person the resident requests."
+ }, {
+ "LoopBlockIterationIndex" : 5,
+ "RegulatoryCodeId" : "0fCAq00000001U7MAI",
+ "Id" : "0fvAq000000JrdJIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "RiskScore" : 18,
+ "RegulatoryCode" : "S 33.3.b - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is approved by the resident."
+ }, {
+ "LoopBlockIterationIndex" : 6,
+ "RegulatoryCodeId" : "0fCAq00000001U6MAI",
+ "Id" : "0fvAq000000JrevIAC",
+ "Severity" : "Significant Harm",
+ "RiskScore" : 13,
+ "RegulatoryCode" : "S 33.3.a.ii - Start of Residency - Personal service plan",
+ "Scope" : "Pattern",
+ "Category" : "Planning and Support Agreements",
+ "AssessmentQuestion" : "A registrant must ensure that a personal service plan is developed with the participation of to the extent it is reasonably practicable to do so, the persons whom the resident requests to participate."
+ }, {
+ "LoopBlockIterationIndex" : 7,
+ "RegulatoryCodeId" : "0fCAq00000001VoMAI",
+ "Id" : "0fvAq000000JrgXIAS",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "RiskScore" : 18,
+ "RegulatoryCode" : "S 55.3.a - Providing Hospitality Services - Menu plan",
+ "Scope" : "Pattern",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto make an initial menu plan."
+ }, {
+ "LoopBlockIterationIndex" : 8,
+ "RegulatoryCodeId" : "0fCAq00000001VqMAI",
+ "Id" : "0fvAq000000Jri9IAC",
+ "Severity" : "Actual Harm/Immediate Jeopardy",
+ "RiskScore" : 15,
+ "RegulatoryCode" : "S 55.3.b.ii - Providing Hospitality Services - Menu plan",
+ "Scope" : "Isolated",
+ "Category" : "Hospitality Service",
+ "AssessmentQuestion" : "A registrant must consult with a dietitianto review and, if appropriate, revise the menu plan if5 years have passed since the menu plan was last reviewed."
+ } ]
+}
+ false
+ JSON
+ DRUpdateScorewhenBlank
+ false
+
+ false
+ 0.0
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem5
+ SingleListJSON:Id
+ 0.0
+ 0.0
+ DRUpdateScorewhenBlank
+ 1.0
+ Id
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ true
+ 0.0
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem3
+ SingleListJSON:RiskScore
+ 0.0
+ 0.0
+ DRUpdateScorewhenBlank
+ 1.0
+ UserScore__c
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem4
+ SingleListJSON:Description
+ 0.0
+ 0.0
+ DRUpdateScorewhenBlank
+ 1.0
+ Description
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem1
+ SingleListJSON:Scope
+ 0.0
+ 0.0
+ DRUpdateScorewhenBlank
+ 1.0
+ Scope__c
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem2
+ SingleListJSON:Severity
+ 0.0
+ 0.0
+ DRUpdateScorewhenBlank
+ 1.0
+ Severity__c
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ true
+ 0.0
+ =
+ DRUpdateScorewhenBlankCustom0jIAq0000002iL7MAIItem0
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRUpdateScorewhenBlank
+ 1.0
+ Id
+ RegulatoryCodeViolation
+ false
+ false
+
+ SObject
+ {
+ "ParentList" : [ {
+ "Id" : "0fvAq000000IjI1IAK",
+ "RiskScore" : 10
+ }, {
+ "Id" : "0fvAq000000IjJdIAK",
+ "RiskScore" : 16
+ }, {
+ "Id" : "0fvAq000000JrgXIAS"
+ } ]
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Load
+ DRUpdateScorewhenBlank_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DRUpdateSingleScore_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DRUpdateSingleScore_1.rpt-meta.xml
new file mode 100644
index 00000000..c2a4a9f9
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DRUpdateSingleScore_1.rpt-meta.xml
@@ -0,0 +1,66 @@
+
+
+ false
+ false
+ false
+ ALR-1258
+ false
+ false
+ JSON
+ DRUpdateSingleScore
+ false
+
+ true
+ 0.0
+ =
+ DRUpdateSingleScoreCustom1879
+ 0.0
+ 0.0
+ FAKEMAPPING
+ DRUpdateSingleScore
+ 1.0
+ Id
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateSingleScoreCustom8733
+ parent:RiskScore
+ 0.0
+ 0.0
+ DRUpdateSingleScore
+ 1.0
+ UserScore__c
+ RegulatoryCodeViolation
+ false
+ false
+
+
+ false
+ 0.0
+ DRUpdateSingleScoreCustom5457
+ Questions1:Id
+ 0.0
+ 0.0
+ DRUpdateSingleScore
+ 1.0
+ Id
+ RegulatoryCodeViolation
+ false
+ false
+
+ SObject
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Load
+ DRUpdateSingleScore_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DrAccountName_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DrAccountName_1.rpt-meta.xml
new file mode 100644
index 00000000..aab4cfb3
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DrAccountName_1.rpt-meta.xml
@@ -0,0 +1,68 @@
+
+
+ false
+ false
+ false
+ false
+ false
+ JSON
+ DrAccountName
+ false
+
+ false
+ 0.0
+ =
+ contextId
+ DrAccountName49262842651057426
+ Id
+ Account
+ 1.0
+ 0.0
+ DrAccountName
+ 0.0
+ Account
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DrAccountName39964036902938593
+ Account:Name
+ 0.0
+ 0.0
+ DrAccountName
+ 1.0
+ AccountName
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DrAccountNameCustom1527
+ Account:Id
+ 0.0
+ 0.0
+ DrAccountName
+ 1.0
+ AccountId
+ json
+ false
+ false
+
+ JSON
+ { }
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Extract
+ DrAccountName_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/DrExistingContact_1.rpt-meta.xml b/src/main/default/omniDataTransforms/DrExistingContact_1.rpt-meta.xml
new file mode 100644
index 00000000..fc8e5385
--- /dev/null
+++ b/src/main/default/omniDataTransforms/DrExistingContact_1.rpt-meta.xml
@@ -0,0 +1,114 @@
+
+
+ false
+ false
+ false
+ false
+ false
+ JSON
+ DrExistingContact
+ false
+
+ false
+ 0.0
+ DrExistingContactCustom4019
+ Contact:Phone
+ 0.0
+ 0.0
+ DrExistingContact
+ 1.0
+ Phone
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DrExistingContactCustom5713
+ Contact:Email
+ 0.0
+ 0.0
+ DrExistingContact
+ 1.0
+ Email
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ LIKE
+ Key
+ DrExistingContactCustom3669
+ Name
+ Contact
+ 1.0
+ 0.0
+ DrExistingContact
+ 0.0
+ Contact
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ LIMIT
+ 100
+ DrExistingContactCustom8042
+ Contact
+ 1.0
+ 0.0
+ DrExistingContact
+ 0.0
+ Contact
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DrExistingContactCustom7628
+ Contact:Name
+ 0.0
+ 0.0
+ DrExistingContact
+ 1.0
+ Name
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ DrExistingContactCustom2202
+ Contact:Id
+ 0.0
+ 0.0
+ DrExistingContact
+ 1.0
+ Id
+ json
+ false
+ false
+
+ JSON
+ {
+ "Key" : "john"
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Extract
+ DrExistingContact_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/EHISDRToCreateTask_1.rpt-meta.xml b/src/main/default/omniDataTransforms/EHISDRToCreateTask_1.rpt-meta.xml
new file mode 100644
index 00000000..54a42d7f
--- /dev/null
+++ b/src/main/default/omniDataTransforms/EHISDRToCreateTask_1.rpt-meta.xml
@@ -0,0 +1,190 @@
+
+
+ false
+ false
+ false
+ ALR-1316
+ false
+ false
+ JSON
+ EHISDRToCreateTask
+ false
+
+ false
+ 0.0
+ EHISDRToCreateTaskCustom8253
+ ContextId
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ WhatId
+ Task
+ false
+ false
+
+
+ false
+ 0.0
+ "Change/\/\/Residence/\/\/Status/\/\/as/\/\/required/\/\/&/\/\/send/\/\/Web/\/\/Services/\/\/Report"
+ "Change Residence Status as required & send Web Services Report"
+ SubjectName
+ 1.0
+ EHISDRToCreateTaskCustom5186
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ "Not/\/\/Started"
+ "Not Started"
+ Status
+ 2.0
+ EHISDRToCreateTaskCustom7300
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ EHISDRToCreateTaskCustom2289
+ Priority
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ Priority
+ Task
+ false
+ false
+
+
+ false
+ 0.0
+ EHISDRToCreateTaskCustom9801
+ Status
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ Status
+ Task
+ false
+ false
+
+
+ false
+ 0.0
+ "Normal"
+ "Normal"
+ Priority
+ 3.0
+ EHISDRToCreateTaskCustom8474
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | | TODAY 7 ADDDAY
+ ADDDAY(TODAY(), 7)
+ Due Date
+ 4.0
+ EHISDRToCreateTaskCustom6996
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ true
+ 0.0
+ =
+ EHISDRToCreateTaskCustom3180
+ 0.0
+ 0.0
+ FAKEMAPPING
+ EHISDRToCreateTask
+ 1.0
+ Id
+ Task
+ false
+ false
+
+
+ 00GJQ000002nQJa2AM
+ false
+ 0.0
+ EHISDRToCreateTaskCustom9166
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ OwnerId
+ Task
+ false
+ false
+
+
+ false
+ 0.0
+ EHISDRToCreateTaskCustom6529
+ Due Date
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ ActivityDate
+ Task
+ false
+ false
+
+
+ false
+ 0.0
+ EHISDRToCreateTaskCustom5499
+ SubjectName
+ 0.0
+ 0.0
+ EHISDRToCreateTask
+ 1.0
+ Subject
+ Task
+ false
+ false
+
+ SObject
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Load
+ EHISDRToCreateTask_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/EHISDRToFindExistingTask_1.rpt-meta.xml b/src/main/default/omniDataTransforms/EHISDRToFindExistingTask_1.rpt-meta.xml
new file mode 100644
index 00000000..27607e1b
--- /dev/null
+++ b/src/main/default/omniDataTransforms/EHISDRToFindExistingTask_1.rpt-meta.xml
@@ -0,0 +1,74 @@
+
+
+ false
+ false
+ false
+ ALR-1316
+ false
+ false
+ JSON
+ EHISDRToFindExistingTask
+ false
+
+ false
+ 0.0
+ EHISDRToFindExistingTaskCustom5724
+ TaskDetails:Subject
+ 0.0
+ 0.0
+ EHISDRToFindExistingTask
+ 1.0
+ Sub:Subject
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ ContextId
+ EHISDRToFindExistingTaskCustom9090
+ WhatId
+ Task
+ 1.0
+ 0.0
+ EHISDRToFindExistingTask
+ 0.0
+ TaskDetails
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ "Change Residence Status as required & send Web Services Report"
+ EHISDRToFindExistingTaskCustom8925
+ Subject
+ Task
+ 1.0
+ 0.0
+ EHISDRToFindExistingTask
+ 0.0
+ TaskDetails
+ json
+ false
+ false
+
+ JSON
+ {
+ "ContextId" : "0f0Aq0000000UpKIAU"
+}
+ false
+ 0.0
+ false
+ json
+ false
+ 0.0
+ Extract
+ EHISDRToFindExistingTask_1
+ 1.0
+ false
+
diff --git a/src/main/default/omniDataTransforms/GetBusinessLicense_1.rpt-meta.xml b/src/main/default/omniDataTransforms/GetBusinessLicense_1.rpt-meta.xml
index 86eea53a..f00d6a9c 100644
--- a/src/main/default/omniDataTransforms/GetBusinessLicense_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/GetBusinessLicense_1.rpt-meta.xml
@@ -1,6 +1,6 @@
- true
+ false
false
false
false
@@ -8,6 +8,570 @@
JSON
GetBusinessLicense
false
+
+ false
+ 0.0
+ GetBusinessLicenseCustom8676
+ Signature
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ Signature
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Signature var:NULL != var:Signature:Id var:SignatureSue:Id IF
+ IF(Signature!=NULL,Signature:Id,SignatureSue:Id)
+ ApproverSignature
+ 15.0
+ GetBusinessLicenseCustom1650
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ LIKE
+ BLA:Approver_Name__c
+ GetBusinessLicenseCustom2535
+ Name
+ StaticResource
+ 13.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Signature
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ 25
+ 25
+ height
+ 13.0
+ GetBusinessLicenseCustom6592
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom972
+ latestbla:Status
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ BLA:Status
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom5456
+ BLARecordType
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ BLARecordType
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ "New_License_Application_Record_Type"
+ GetBusinessLicenseCustom6772
+ RecordType.DeveloperName
+ BusinessLicenseApplication
+ 3.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ latestbla
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom7092
+ latestbla:CreatedDate
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ BLA:Date
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom8831
+ latestbla:Name
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ BLA:Name
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ "Active"
+ GetBusinessLicenseCustom1789
+ Status__c
+ Service__c
+ 5.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Service
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Unit:Type__c 'Public' == var:Unit:Quantity var:NULL IF
+ IF(Unit:Type__c=='Public',Unit:Quantity,NULL)
+ Unit:PublicQuantityCount
+ 5.0
+ GetBusinessLicenseCustom7579
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | var:BLARecordType "Renewal" == var:RenewalSign2 var:ApproverSignature IF
+ IF(BLARecordType =="Renewal",RenewalSign2,ApproverSignature)
+ MainSign
+ 18.0
+ GetBusinessLicenseCustom2830
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ "DefaultSign"
+ GetBusinessLicenseCustom5023
+ Name
+ StaticResource
+ 14.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ SignatureSue
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom2195
+ latestbla:Approver_Name__c
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ BLA:Approver Name
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ LIKE
+ latestbla:Approver_Name__c
+ GetBusinessLicenseCustom4584
+ Name
+ StaticResource
+ 4.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Renewalsign
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom5729
+ MainSign
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ MainSign
+ json
+ false
+ false
+
+
+ true
+ 0.0
+ GetBusinessLicenseCustom9740
+ test
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ test
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom361
+ ApproverSignature
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ ApproverSignature
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ ResidenceAccount:Id
+ GetBusinessLicenseCustom8220
+ Account__c
+ Service__c
+ 5.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Service
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Unit:PerDiemQuantityCount SUM
+ SUM(Unit:PerDiemQuantityCount)
+ TotalPerDiemUnits
+ 8.0
+ GetBusinessLicenseCustom9147
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | var:BLARecordType "Renewal" == | var:Renewalsign:Id var:NULL != var:Renewalsign:Id var:SignatureSue:Id IF var:SignatureSue:Id IF
+ IF (BLARecordType =="Renewal",IF( Renewalsign:Id != NULL,Renewalsign:Id,SignatureSue:Id),SignatureSue:Id)
+ RenewalSign2
+ 17.0
+ GetBusinessLicenseCustom2676
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ | var:ResidenceAccount:Conditions__c var:NULL == "/\/\/" var:ResidenceAccount:Conditions__c IF
+ IF(ResidenceAccount:Conditions__c==NULL," ",ResidenceAccount:Conditions__c)
+ Condition
+ 10.0
+ GetBusinessLicenseCustom1093
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ ResidenceAccount:Id
+ GetBusinessLicenseCustom3602
+ AccountId
+ BusinessLicenseApplication
+ 3.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ latestbla
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom9412
+ LatestBLASign
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ LatestBLASign
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ 150
+ 150
+ width
+ 12.0
+ GetBusinessLicenseCustom35
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom8811
+ Condition
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ Condition
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Unit:PublicQuantityCount SUM
+ SUM(Unit:PublicQuantityCount)
+ TotalPublicUnits
+ 6.0
+ GetBusinessLicenseCustom9206
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem19
+ Unit:Name
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ String
+ Units:Name
+ json
+ false
+ false
+
+
+ []
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem18
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ List<Map>
+ Units
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem17
+ Unit:Price
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ Currency
+ Units:Price
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem16
+ Unit:Amount__c
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ Units:Amount
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem11
+ Certificate:RegistrationCertificate__c
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ CertificateId
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem12
+ Certificate:CreatedDate
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ Date(MM/dd/yyyy)
+ InvoiceCreatedDate
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ ResidenceAccount:Id
+ GetBusinessLicenseCustom0jIAs0000000U4XMAUItem8
+ AccountId
+ Asset
+ 6.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Unit
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ ORDER BY
+ CreatedDate desc
+ GetBusinessLicenseCustom6753
+ BusinessLicenseApplication
+ 3.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ latestbla
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ =
+ "Assisted Living Service"
+ GetBusinessLicenseCustom3069
+ ServiceType__c
+ Service__c
+ 5.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Service
+ json
+ false
+ false
+
false
0.0
@@ -25,6 +589,20 @@
false
false
+
+ false
+ 0.0
+ GetBusinessLicenseCustom3304
+ ServiceName2
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ SN:ServiceName
+ json
+ false
+ false
+
false
0.0
@@ -158,6 +736,20 @@
false
false
+
+ false
+ 0.0
+ GetBusinessLicenseCustom1338
+ BLA:LicensePermitNameId
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 1.0
+ LicenseId
+ json
+ false
+ false
+
false
0.0
@@ -180,7 +772,7 @@
GetBusinessLicenseCustom8961
ActiveTo
AssociatedLocation
- 5.0
+ 8.0
0.0
GetBusinessLicense
0.0
@@ -212,7 +804,7 @@
GetBusinessLicenseCustom426
ParentId
Address
- 7.0
+ 10.0
0.0
GetBusinessLicense
0.0
@@ -269,23 +861,6 @@
false
false
-
- false
- 0.0
- | var:Unit:Type__c 'Public' == var:Unit:Quantity var:NULL IF
- IF(Unit:Type__c=='Public',Unit:Quantity,NULL)
- Unit:PublicQuantityCount
- 5.0
- GetBusinessLicenseCustom7579
- 0.0
- 0.0
- GetBusinessLicense
- 0.0
- Formula
- Formula
- false
- false
-
false
0.0
@@ -322,7 +897,7 @@
GetBusinessLicenseCustom1856
Id
Location
- 6.0
+ 9.0
0.0
GetBusinessLicense
0.0
@@ -339,7 +914,7 @@
GetBusinessLicenseCustom0jIAs0000000U4XMAUItem0
Id
Account
- 4.0
+ 7.0
0.0
GetBusinessLicense
0.0
@@ -348,6 +923,23 @@
false
false
+
+ false
+ 0.0
+ =
+ Certificate:Id
+ GetBusinessLicenseCustom3117
+ LicensePermitNameId
+ BusinessLicenseApplication
+ 12.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ BLA
+ json
+ false
+ false
+
false
0.0
@@ -370,7 +962,7 @@
GetBusinessLicenseCustom1786
Id
RegulatoryAuthorizationType
- 8.0
+ 11.0
0.0
GetBusinessLicense
0.0
@@ -379,6 +971,23 @@
false
false
+
+ false
+ 0.0
+ | var:ResidenceAccount:Conditions__c var:NULL == "Not/\/\/Applicable" "/\/\/" IF
+ IF(ResidenceAccount:Conditions__c==NULL,"Not Applicable"," ")
+ Condition1
+ 11.0
+ GetBusinessLicenseCustom1127
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
false
0.0
@@ -387,7 +996,7 @@
GetBusinessLicenseCustom2162
ParentRecordId
AssociatedLocation
- 5.0
+ 8.0
0.0
GetBusinessLicense
0.0
@@ -396,6 +1005,22 @@
false
false
+
+ false
+ 0.0
+ LIMIT
+ 1
+ GetBusinessLicenseCustom2707
+ BusinessLicenseApplication
+ 3.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ latestbla
+ json
+ false
+ false
+
false
0.0
@@ -435,7 +1060,7 @@
GetBusinessLicenseCustom0jIAs0000000U4XMAUItem7
ParentId
Asset
- 3.0
+ 6.0
0.0
GetBusinessLicense
0.0
@@ -444,23 +1069,6 @@
false
false
-
- false
- 0.0
- | var:Unit:PerDiemQuantityCount SUM
- SUM(Unit:PerDiemQuantityCount)
- TotalPerDiemUnits
- 8.0
- GetBusinessLicenseCustom9147
- 0.0
- 0.0
- GetBusinessLicense
- 0.0
- Formula
- Formula
- false
- false
-
false
0.0
@@ -498,11 +1106,28 @@
false
0.0
- | var:Unit:PublicQuantityCount SUM
- SUM(Unit:PublicQuantityCount)
- TotalPublicUnits
- 6.0
- GetBusinessLicenseCustom9206
+ =
+ "Approved"
+ GetBusinessLicenseCustom4143
+ Status
+ BusinessLicenseApplication
+ 3.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ latestbla
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ | var:Service:Name TOSTRING
+ TOSTRING(Service:Name)
+ ServiceName2
+ 14.0
+ GetBusinessLicenseCustom2481
0.0
0.0
GetBusinessLicense
@@ -515,29 +1140,27 @@
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem19
- Unit:Name
+ GetBusinessLicenseCustom4667
+ latestbla:Id
0.0
0.0
GetBusinessLicense
1.0
- String
- Units:Name
+ BLA:BLAID
json
false
false
- []
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem18
+ GetBusinessLicenseCustom5534
+ Condition1
0.0
0.0
GetBusinessLicense
1.0
- List<Map>
- Units
+ Condition1
json
false
false
@@ -545,14 +1168,30 @@
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem17
- Unit:Price
+ var:BLA:RecordType.DeveloperName
+ BLA:RecordType.DeveloperName
+ BLARecordType
+ 16.0
+ GetBusinessLicenseCustom9405
+ 0.0
+ 0.0
+ GetBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ GetBusinessLicenseCustom9849
+ Renewalsign:Name
0.0
0.0
GetBusinessLicense
1.0
- Currency
- Units:Price
+ Renewalsign:Name
json
false
false
@@ -560,13 +1199,13 @@
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem16
- Unit:Amount__c
+ GetBusinessLicenseCustom2315
+ RenewalSign3
0.0
0.0
GetBusinessLicense
1.0
- Units:Amount
+ RenewalSign3
json
false
false
@@ -574,13 +1213,13 @@
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem11
- Certificate:RegistrationCertificate__c
+ GetBusinessLicenseCustom6119
+ RenewalSign2
0.0
0.0
GetBusinessLicense
1.0
- CertificateId
+ RenewalSign2
json
false
false
@@ -588,14 +1227,13 @@
false
0.0
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem12
- Certificate:CreatedDate
+ GetBusinessLicenseCustom4101
+ BLA:Id
0.0
0.0
GetBusinessLicense
1.0
- Date(MM/dd/yyyy)
- InvoiceCreatedDate
+ Id
json
false
false
@@ -603,23 +1241,20 @@
false
0.0
- =
- ResidenceAccount:Id
- GetBusinessLicenseCustom0jIAs0000000U4XMAUItem8
- AccountId
- Asset
- 3.0
+ GetBusinessLicenseCustom1640
+ BLA:Approver_Name__c
+ 0.0
0.0
GetBusinessLicense
- 0.0
- Unit
+ 1.0
+ Approver Name
json
false
false
JSON
{
- "Id" : "0cEAq0000004yaHMAQ"
+ "Id" : "0cEAq0000005w3NMAQ"
}
false
0.0
diff --git a/src/main/default/omniDataTransforms/TransformBusinessLicense_1.rpt-meta.xml b/src/main/default/omniDataTransforms/TransformBusinessLicense_1.rpt-meta.xml
index 72d643c0..fa2b85d8 100644
--- a/src/main/default/omniDataTransforms/TransformBusinessLicense_1.rpt-meta.xml
+++ b/src/main/default/omniDataTransforms/TransformBusinessLicense_1.rpt-meta.xml
@@ -5,24 +5,69 @@
false
false
{
+ "SN" : {
+ "ServiceName" : "Safekeeping of Money/Personal Property, Assistance Managing Therapeutic Diets, Assistance with Behaviour Management, Psychosocial Support, Assistance with Daily Living Activities"
+ },
"Units" : [ {
- "Name" : "Units",
- "Quantity" : 5,
- "Type" : "Private"
+ "Type" : "Public",
+ "Quantity" : 100,
+ "Name" : "Unit-Public"
}, {
- "Name" : "Units",
- "Quantity" : 10,
- "Amount" : "Unit Fee",
- "Type" : "Per Diem"
+ "Type" : "Per Diem",
+ "Quantity" : 123,
+ "Name" : "Unit-Per Diem"
+ }, {
+ "Type" : "Private",
+ "Quantity" : 100,
+ "Name" : "Unit-Private"
+ }, {
+ "Type" : "Independent Living",
+ "Quantity" : 100,
+ "Name" : "Unit-Independent Living"
+ }, {
+ "Type" : "Other",
+ "Quantity" : 100,
+ "Name" : "Unit-Other"
+ }, {
+ "Type" : "Licensed",
+ "Quantity" : 100,
+ "Name" : "Unit-Licensed"
+ }, {
+ "Type" : "Private",
+ "Quantity" : 76,
+ "Name" : "Unit-Private"
+ }, {
+ "Type" : "Private",
+ "Quantity" : 2,
+ "Name" : "Unit-Private"
} ],
- "TotalUnits" : 15,
- "ResidenceName" : "Tom",
+ "RenewalSign3" : "081Aq000000WQDtIAO",
+ "MainSign" : "081Aq000000WQDtIAO",
+ "RenewalSign2" : "081Aq000000WQDtIAO",
+ "NewApproverSignature" : "081Aq000000WQDtIAO",
+ "Condition1" : "Not Applicable",
+ "Condition" : " ",
+ "TotalUnits" : 401,
+ "ResidenceAddress" : "U.S. 101N San Francisco CA1 94103 United States",
+ "LicenseId" : "0cEAq0000005prVMAQ",
"ResidenceClassType" : "Supportive Recovery",
- "InvoiceCreatedDate" : "11/24/2023",
- "CertificateId" : "1234321",
- "RegistrantName" : "Gowtham",
- "CertificateExpiryDate" : "11/24/2023",
- "CertificateEffectiveDate" : "11/24/2023"
+ "AddId" : "130Aq000004vdryIAA",
+ "LocId" : "131Aq000000LewvIAC",
+ "AssId" : "0KtAq00000017KPKAY",
+ "RegistrantName" : "089496 VU Slv. bte Irmhfiu Qldgej dfi Ymllnau / Ludirqvm Lwasb",
+ "BLA" : {
+ "Date" : "2024-05-10T10:05:24.000Z",
+ "Id" : "0f0Aq0000000xcnIAA",
+ "Approver Name" : "SumanLeadership",
+ "Status" : "Approved",
+ "Name" : "BLA-0000001274"
+ },
+ "BLAID" : "0f0Aq0000000zxxIAA",
+ "ResidenceName" : "Agnes Residence",
+ "CertificateExpiryDate" : "03/31/2025",
+ "CertificateEffectiveDate" : "05/14/2024",
+ "InvoiceCreatedDate" : "05/14/2024",
+ "CertificateId" : "MH2024-00001"
}
false
JSON
@@ -31,13 +76,30 @@
false
0.0
- TransformBusinessLicenseCustom5873
- ResidenceName
+ 75
+ 75
+ height
+ 3.0
+ TransformBusinessLicenseCustom5259
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom2312
+ width
0.0
0.0
TransformBusinessLicense
1.0
- ResidenceName
+ IMG_Document_Image:width
json
false
false
@@ -45,13 +107,72 @@
false
0.0
- TransformBusinessLicenseCustom5184
- TotalUnits
+ TransformBusinessLicenseCustom6340
+ FormulaList
0.0
0.0
TransformBusinessLicense
1.0
- TotalUnits
+ Services
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ var:SN:ServiceName
+ SN:ServiceName
+ FormulaList
+ 1.0
+ TransformBusinessLicenseCustom5285
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom7942
+ CertificateEffectiveDate
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ CertificateEffectiveDate
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom4270
+ CertificateId
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ CertificateId
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom7045
+ Condition1
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ Condition1
json
false
false
@@ -87,13 +208,13 @@
false
0.0
- TransformBusinessLicenseCustom7942
- CertificateEffectiveDate
+ TransformBusinessLicenseCustom5873
+ ResidenceName
0.0
0.0
TransformBusinessLicense
1.0
- CertificateEffectiveDate
+ ResidenceName
json
false
false
@@ -101,13 +222,13 @@
false
0.0
- TransformBusinessLicenseCustom4270
- CertificateId
+ TransformBusinessLicenseCustom5184
+ TotalUnits
0.0
0.0
TransformBusinessLicense
1.0
- CertificateId
+ TotalUnits
json
false
false
@@ -140,26 +261,114 @@
false
false
+
+ false
+ 0.0
+ 150
+ 150
+ width
+ 2.0
+ TransformBusinessLicenseCustom9820
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 0.0
+ Formula
+ Formula
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom4062
+ MainSign
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ IMG_Document_Image:src
+ json
+ false
+ {
+ "" : ""
+}
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom2231
+ Condition
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ Condition
+ json
+ false
+ false
+
+
+ false
+ 0.0
+ TransformBusinessLicenseCustom4349
+ height
+ 0.0
+ 0.0
+ TransformBusinessLicense
+ 1.0
+ IMG_Document_Image:height
+ json
+ false
+ {
+ "" : ""
+}
+ false
+
JSON
{
+ "SN" : {
+ "ServiceName" : "null"
+ },
+ "Signature" : [ {
+ "CreatedDate" : "2024-05-14T08:54:22.000Z",
+ "Name" : "DawnWilliams",
+ "Id" : "081Aq000000WNHdIAO"
+ } ],
"Units" : [ {
- "Name" : "Units",
- "Quantity" : 5,
- "Type" : "Private"
- }, {
- "Name" : "Units",
- "Quantity" : 10,
- "Amount" : "Unit Fee",
- "Type" : "Per Diem"
+ "Type" : "Public",
+ "Quantity" : 20,
+ "Name" : "Unit-Public-2009-04-01"
} ],
- "TotalUnits" : 15,
- "ResidenceName" : "Tom",
- "ResidenceClassType" : "Supportive Recovery",
- "InvoiceCreatedDate" : "11/24/2023",
- "CertificateId" : "1234321",
- "RegistrantName" : "Gowtham",
- "CertificateExpiryDate" : "11/24/2023",
- "CertificateEffectiveDate" : "11/24/2023"
+ "BLA" : {
+ "Approver Name" : "SumanLeadership",
+ "Status" : "Approved",
+ "Date" : "2024-05-20T19:08:36.000Z",
+ "BLAID" : "0f0Aq00000016jJIAQ",
+ "Name" : "BLA-0000001309"
+ },
+ "BLARecordType" : "New_License_Application_Record_Type",
+ "MainSign" : "081Aq000000WNHdIAO",
+ "RenewalSign2" : "081Aq000000WQDtIAO",
+ "ApproverSignature" : "081Aq000000WNHdIAO",
+ "Condition1" : "Not Applicable",
+ "Condition" : " ",
+ "TotalUnits" : 20,
+ "ResidenceAddress" : "6068 - 3dl Ujktls Prince George BC N1H 0Z2 Canada",
+ "Approver Name" : "DawnWilliams",
+ "LicenseId" : "0cEAq0000005w09MAA",
+ "Id" : "0f0Aq00000016eZIAQ",
+ "ResidenceClassType" : "Seniors and Persons with Disabilities",
+ "AddId" : "130Aq000004vqnfIAA",
+ "LocId" : "131Aq000000LlHoIAK",
+ "AssId" : "0KtAq00000017nXKAQ",
+ "RegistrantName" : "Onqcsgbh Yiqjji Fflqgrppc",
+ "ResidenceName" : "Residence Name 1731",
+ "CertificateExpiryDate" : "03/31/2025",
+ "CertificateEffectiveDate" : "05/20/2024",
+ "InvoiceCreatedDate" : "05/20/2024",
+ "CertificateId" : "SN2024-00006"
}
false
0.0
@@ -167,7 +376,7 @@
json
false
0.0
- CertificateTemplateSU(Version 1)
+ CertificateTemplateMH(Version 1)
Transform
TransformBusinessLicense_1
1.0
diff --git a/src/main/default/omniIntegrationProcedures/IPMergingList_ForScopeSeverity_Procedure_1.oip-meta.xml b/src/main/default/omniIntegrationProcedures/IPMergingList_ForScopeSeverity_Procedure_1.oip-meta.xml
new file mode 100644
index 00000000..b0e35442
--- /dev/null
+++ b/src/main/default/omniIntegrationProcedures/IPMergingList_ForScopeSeverity_Procedure_1.oip-meta.xml
@@ -0,0 +1,793 @@
+
+
+ {
+ "ContextId": "0Z5Aq0000001T4nKAE",
+ "Questions1": [
+ {
+ "RegulatoryCodeId": "0fCAq00000001ViMAI",
+ "Id": "0fvAq000000bLofIAE",
+ "Severity": "More than Min Harm",
+ "UserScore": 9,
+ "RegulatoryCode": "S 54.1.a - Providing Hospitality Services - Service provision generally",
+ "Scope": "Widespread",
+ "Category": "Hospitality Service",
+ "Description": "test",
+ "AssessmentQuestion": "A registrant must ensure that hospitality services are provided to residents in a manner thatpromotes resident independence."
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bLtVIAU",
+ "Severity": "Actual Harm/Jeopardy",
+ "UserScore": 19,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Widespread",
+ "Category": "Housing",
+ "Description": "jhbgksjgn",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bMG5IAM",
+ "Severity": "Significant Harm",
+ "UserScore": 13,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Pattern",
+ "Category": "Housing",
+ "Description": "[kjhgkg",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SnMAI",
+ "Id": "0fvAq000000bMHhIAM",
+ "Severity": "Minimal Harm",
+ "UserScore": 3,
+ "RegulatoryCode": "S 19.4 - Housing - Safety",
+ "Scope": "Widespread",
+ "Category": "Emergency Preparedness",
+ "Description": "Hello Testing",
+ "AssessmentQuestion": "A registrant must ensure that emergency exits and egress windows are not obstructed or secured in a manner that may hinder exit in an emergency."
+ }
+ ],
+ "omniscriptId": "0jNAq000000MjbBMAS",
+ "language": "English",
+ "type": "Risk",
+ "runMode": "preview",
+ "sId": "0jNAq000000MjbBMAS",
+ "theme": "lightning",
+ "subType": "Assessment",
+ "timeStamp": "2024-05-15T13:52:43.169Z",
+ "userProfile": "System Administrator",
+ "userTimeZoneName": "America/Vancouver",
+ "userTimeZone": "-420",
+ "userCurrencyCode": "CAD",
+ "userName": "komal.d.gupta@accenture.com.alr.dev",
+ "userId": "005Aq00000F8Fo4IAF",
+ "omniProcessId": "0jNAq000000MjbBMAS",
+ "localTimeZoneName": "Asia/Calcutta",
+ "InspectionStep": {
+ "Formula2": true,
+ "Formula3": true
+ },
+ "UpdateData": [
+ {
+ "RegulatoryCodeId": "0fCAq00000001ViMAI",
+ "Id": "0fvAq000000bLofIAE",
+ "Severity": "More than Min Harm",
+ "UserScore": 9,
+ "RegulatoryCode": "S 54.1.a - Providing Hospitality Services - Service provision generally",
+ "Scope": "Widespread",
+ "Category": "Hospitality Service",
+ "Description": "test",
+ "AssessmentQuestion": "A registrant must ensure that hospitality services are provided to residents in a manner thatpromotes resident independence.",
+ "pickListOptions": [
+ {
+ "attributes": null,
+ "label": "Isolated",
+ "validFor": [],
+ "value": "Isolated"
+ },
+ {
+ "attributes": null,
+ "label": "Pattern",
+ "validFor": [],
+ "value": "Pattern"
+ },
+ {
+ "attributes": null,
+ "label": "Widespread",
+ "validFor": [],
+ "value": "Widespread"
+ }
+ ],
+ "Scope__c": "Widespread",
+ "severityOptions": [
+ {
+ "attributes": null,
+ "label": "Actual Harm/Jeopardy",
+ "validFor": [],
+ "value": "Actual Harm/Jeopardy"
+ },
+ {
+ "attributes": null,
+ "label": "Significant Harm",
+ "validFor": [],
+ "value": "Significant Harm"
+ },
+ {
+ "attributes": null,
+ "label": "Minimal Harm",
+ "validFor": [],
+ "value": "Minimal Harm"
+ },
+ {
+ "attributes": null,
+ "label": "More than Min Harm",
+ "validFor": [],
+ "value": "More than Min Harm"
+ }
+ ],
+ "Severity__c": "More than Min Harm"
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bLtVIAU",
+ "Severity": "Actual Harm/Jeopardy",
+ "UserScore": 19,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Widespread",
+ "Category": "Housing",
+ "Description": "jhbgksjgn",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises.",
+ "pickListOptions": [
+ {
+ "attributes": null,
+ "label": "Isolated",
+ "validFor": [],
+ "value": "Isolated"
+ },
+ {
+ "attributes": null,
+ "label": "Pattern",
+ "validFor": [],
+ "value": "Pattern"
+ },
+ {
+ "attributes": null,
+ "label": "Widespread",
+ "validFor": [],
+ "value": "Widespread"
+ }
+ ],
+ "Scope__c": "Widespread",
+ "severityOptions": [
+ {
+ "attributes": null,
+ "label": "Actual Harm/Jeopardy",
+ "validFor": [],
+ "value": "Actual Harm/Jeopardy"
+ },
+ {
+ "attributes": null,
+ "label": "Significant Harm",
+ "validFor": [],
+ "value": "Significant Harm"
+ },
+ {
+ "attributes": null,
+ "label": "Minimal Harm",
+ "validFor": [],
+ "value": "Minimal Harm"
+ },
+ {
+ "attributes": null,
+ "label": "More than Min Harm",
+ "validFor": [],
+ "value": "More than Min Harm"
+ }
+ ],
+ "Severity__c": "Actual Harm/Jeopardy"
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bMG5IAM",
+ "Severity": "Significant Harm",
+ "UserScore": 13,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Pattern",
+ "Category": "Housing",
+ "Description": "[kjhgkg",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises.",
+ "pickListOptions": [
+ {
+ "attributes": null,
+ "label": "Isolated",
+ "validFor": [],
+ "value": "Isolated"
+ },
+ {
+ "attributes": null,
+ "label": "Pattern",
+ "validFor": [],
+ "value": "Pattern"
+ },
+ {
+ "attributes": null,
+ "label": "Widespread",
+ "validFor": [],
+ "value": "Widespread"
+ }
+ ],
+ "Scope__c": "Pattern",
+ "severityOptions": [
+ {
+ "attributes": null,
+ "label": "Actual Harm/Jeopardy",
+ "validFor": [],
+ "value": "Actual Harm/Jeopardy"
+ },
+ {
+ "attributes": null,
+ "label": "Significant Harm",
+ "validFor": [],
+ "value": "Significant Harm"
+ },
+ {
+ "attributes": null,
+ "label": "Minimal Harm",
+ "validFor": [],
+ "value": "Minimal Harm"
+ },
+ {
+ "attributes": null,
+ "label": "More than Min Harm",
+ "validFor": [],
+ "value": "More than Min Harm"
+ }
+ ],
+ "Severity__c": "Significant Harm"
+ },
+ {
+ "RegulatoryCodeId": "0fCAq00000001SnMAI",
+ "Id": "0fvAq000000bMHhIAM",
+ "Severity": "Minimal Harm",
+ "UserScore": 3,
+ "RegulatoryCode": "S 19.4 - Housing - Safety",
+ "Scope": "Widespread",
+ "Category": "Emergency Preparedness",
+ "Description": "Hello Testing",
+ "AssessmentQuestion": "A registrant must ensure that emergency exits and egress windows are not obstructed or secured in a manner that may hinder exit in an emergency.",
+ "pickListOptions": [
+ {
+ "attributes": null,
+ "label": "Isolated",
+ "validFor": [],
+ "value": "Isolated"
+ },
+ {
+ "attributes": null,
+ "label": "Pattern",
+ "validFor": [],
+ "value": "Pattern"
+ },
+ {
+ "attributes": null,
+ "label": "Widespread",
+ "validFor": [],
+ "value": "Widespread"
+ }
+ ],
+ "Scope__c": "Widespread",
+ "severityOptions": [
+ {
+ "attributes": null,
+ "label": "Actual Harm/Jeopardy",
+ "validFor": [],
+ "value": "Actual Harm/Jeopardy"
+ },
+ {
+ "attributes": null,
+ "label": "Significant Harm",
+ "validFor": [],
+ "value": "Significant Harm"
+ },
+ {
+ "attributes": null,
+ "label": "Minimal Harm",
+ "validFor": [],
+ "value": "Minimal Harm"
+ },
+ {
+ "attributes": null,
+ "label": "More than Min Harm",
+ "validFor": [],
+ "value": "More than Min Harm"
+ }
+ ],
+ "Severity__c": "Minimal Harm"
+ }
+ ],
+ "Anotherprop": [
+ {
+ "Id": "0fvAq000000bLofIAE",
+ "Scope__c": "Isolated",
+ "Severity__c": "Actual Harm/Jeopardy",
+ "Description": "testing"
+ },
+ {
+ "Id": "0fvAq000000bLtVIAU",
+ "Scope__c": "Isolated",
+ "Severity__c": "More than Min Harm"
+ },
+ {
+ "Id": "0fvAq000000bMHhIAM",
+ "Scope__c": "Isolated",
+ "Severity__c": "Actual Harm/Jeopardy",
+ "Description": "Hello"
+ }
+ ],
+ "UpdatedListJSON": [
+ {
+ "LoopBlockIterationIndex": 1,
+ "RegulatoryCodeId": "0fCAq00000001ViMAI",
+ "Id": "0fvAq000000bLofIAE",
+ "Severity": "More than Min Harm",
+ "UserScore": 14,
+ "RegulatoryCode": "S 54.1.a - Providing Hospitality Services - Service provision generally",
+ "Scope": "Widespread",
+ "Description": "test",
+ "Category": "Hospitality Service",
+ "AssessmentQuestion": "A registrant must ensure that hospitality services are provided to residents in a manner thatpromotes resident independence."
+ },
+ {
+ "LoopBlockIterationIndex": 2,
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bLtVIAU",
+ "Severity": "Actual Harm/Jeopardy",
+ "UserScore": 19,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Widespread",
+ "Description": "jhbgksjgn",
+ "Category": "Housing",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "LoopBlockIterationIndex": 3,
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bMG5IAM",
+ "Severity": "Significant Harm",
+ "UserScore": 9,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Pattern",
+ "Description": "[kjhgkg",
+ "Category": "Housing",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "LoopBlockIterationIndex": 4,
+ "RegulatoryCodeId": "0fCAq00000001SnMAI",
+ "Id": "0fvAq000000bMHhIAM",
+ "Severity": "Minimal Harm",
+ "UserScore": 3,
+ "RegulatoryCode": "S 19.4 - Housing - Safety",
+ "Scope": "Widespread",
+ "Description": "Hello Testing",
+ "Category": "Emergency Preparedness",
+ "AssessmentQuestion": "A registrant must ensure that emergency exits and egress windows are not obstructed or secured in a manner that may hinder exit in an emergency."
+ }
+ ],
+ "parent": [
+ {
+ "RiskScore": 9
+ },
+ {
+ "RiskScore": 19
+ },
+ {
+ "RiskScore": 13
+ },
+ {
+ "RiskScore": 3
+ }
+ ],
+ "SingleListJSON": [
+ {
+ "LoopBlockIterationIndex": 1,
+ "RegulatoryCodeId": "0fCAq00000001ViMAI",
+ "Id": "0fvAq000000bLofIAE",
+ "Severity": "More than Min Harm",
+ "UserScore": 14,
+ "RiskScore": 9,
+ "RegulatoryCode": "S 54.1.a - Providing Hospitality Services - Service provision generally",
+ "Scope": "Widespread",
+ "Description": "test",
+ "Category": "Hospitality Service",
+ "AssessmentQuestion": "A registrant must ensure that hospitality services are provided to residents in a manner thatpromotes resident independence."
+ },
+ {
+ "LoopBlockIterationIndex": 2,
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bLtVIAU",
+ "Severity": "Actual Harm/Jeopardy",
+ "UserScore": 19,
+ "RiskScore": 19,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Widespread",
+ "Description": "jhbgksjgn",
+ "Category": "Housing",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "LoopBlockIterationIndex": 3,
+ "RegulatoryCodeId": "0fCAq00000001SRMAY",
+ "Id": "0fvAq000000bMG5IAM",
+ "Severity": "Significant Harm",
+ "UserScore": 9,
+ "RiskScore": 13,
+ "RegulatoryCode": "S 15.1.a- Housing- If more than one class or non-residents",
+ "Scope": "Pattern",
+ "Description": "[kjhgkg",
+ "Category": "Housing",
+ "AssessmentQuestion": "This section applies to a registrant who operates an assisted living residence that houses more than one class on the same premises."
+ },
+ {
+ "LoopBlockIterationIndex": 4,
+ "RegulatoryCodeId": "0fCAq00000001SnMAI",
+ "Id": "0fvAq000000bMHhIAM",
+ "Severity": "Minimal Harm",
+ "UserScore": 3,
+ "RiskScore": 3,
+ "RegulatoryCode": "S 19.4 - Housing - Safety",
+ "Scope": "Widespread",
+ "Description": "Hello Testing",
+ "Category": "Emergency Preparedness",
+ "AssessmentQuestion": "A registrant must ensure that emergency exits and egress windows are not obstructed or secured in a manner that may hinder exit in an emergency."
+ }
+ ],
+ "RiskMatrix": 44,
+ "matrixResult": {
+ "AssignedScore": 9
+ },
+ "CATAssessment": [
+ {
+ "Id": "0euAq00000005anIAA",
+ "description": "• appropriate reporting (e.g. 24-hr r, sufficient & relevant information provided)\r\n• plans for prevention & mitigation of future incidents\r\n• responds to & takes appropriate corrective action for RI’s (e.g. sufficient &proactive steps).",
+ "name": "Reportable Incidents Operational History Score"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "description": "Inspection and follow up:\r\n• responds to non-compliance from previous inspections (e.g. respond sufficiently, proactive steps for\r\ncorrective actions).\r\n• identifying & responding to potential issues of non-compliance (e.g. ensures all necessary\r\ndocumentation for staff)",
+ "name": "Inspection & Follow-up Operational History Score"
+ },
+ {
+ "Id": "0euAq00000005e1IAA",
+ "description": "• maintains compliance & with terms/conditions (if appl.)\r\n• cooperation during an investigation (e.g. proactive to H&S plan, timely document submission).\r\n• takes corrective & proactive action for non-compliance\r\n• non-compliance (pattern or ongoing)\"",
+ "name": "Investigations Operational History Score"
+ }
+ ],
+ "Scores": [
+ {
+ "Id": "0euAq00000005anIAA",
+ "scores": "1"
+ },
+ {
+ "Id": "0euAq00000005anIAA",
+ "scores": "2"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "scores": "1"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "scores": "2"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "scores": "3"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "scores": "4"
+ },
+ {
+ "Id": "0euAq00000005cPIAQ",
+ "scores": "5"
+ },
+ {
+ "Id": "0euAq00000005e1IAA",
+ "scores": "1"
+ },
+ {
+ "Id": "0euAq00000005e1IAA",
+ "scores": "2"
+ },
+ {
+ "Id": "0euAq00000005e1IAA",
+ "scores": "3"
+ }
+ ],
+ "OperationalHistoryStep": {
+ "Show Error Message for Score": false,
+ "Formula1": false,
+ "Formula4": false,
+ "OperationalScoreFormula": 0,
+ "CalculatedScoreFormula": 9
+ },
+ "omniScriptId": "0jNAq000000MjbBMAS",
+ "elementName": "IPMergingListForScopeSeverity"
+}
+ {"ElementTypeToHTMLTemplateList":[]}
+ true
+ true
+ false
+ false
+ false
+ false
+ Procedure
+ IPMergingListForScopeSeverity
+
+ true
+ false
+ 0.0
+ DataRaptorTransformAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : {
+ "LoopBlock1" : "%LoopBlock1%"
+ },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : true,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "bundle" : "DRTransformAddingIdScopeSeverity2",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "ignoreCache" : false,
+ "show" : null,
+ "label" : "DataRaptorTransformAction1",
+ "disOnTplt" : false
+}
+ 3.0
+ DataRaptor Transform Action
+
+
+ true
+ false
+ 0.0
+ DataRaptorTransformAction2
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : {
+ "LoopBlock1" : "%LoopBlock2%"
+ },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : true,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "bundle" : "DRTransformAddingIdScopeSeverity1",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "ignoreCache" : false,
+ "show" : null,
+ "label" : "DataRaptorTransformAction2",
+ "disOnTplt" : false
+}
+ 4.0
+ DataRaptor Transform Action
+
+
+ true
+ false
+ 0.0
+ ListAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : { },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : false,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "advancedMerge" : true,
+ "advancedMergeMap" : [ {
+ "listKey" : "DataRaptorTransformAction1:LoopBlock1",
+ "matchingPath" : "Id",
+ "normalizeKey" : "2"
+ }, {
+ "listKey" : "DataRaptorTransformAction2:LoopBlock1",
+ "matchingPath" : "Id",
+ "normalizeKey" : "2"
+ } ],
+ "preventIntraListMerge" : false,
+ "mergeFields" : [ "Id" ],
+ "allowMergeNulls" : true,
+ "hasPrimary" : false,
+ "primaryListKey" : "",
+ "sortBy" : [ ],
+ "sortInDescendingOrder" : false,
+ "mergeListsOrder" : [ "DataRaptorTransformAction1:LoopBlock1", "DataRaptorTransformAction2:LoopBlock1" ],
+ "filterListFormula" : "",
+ "dynamicOutputFields" : "",
+ "updateFieldValue" : { },
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "additionalChainableResponse" : { },
+ "show" : null,
+ "label" : "ListAction1",
+ "disOnTplt" : false
+}
+ 5.0
+ List Merge Action
+
+
+
+ true
+ false
+ 1.0
+ SetValues1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "elementValueMap" : {
+ "Test2" : "%UpdateData%"
+ },
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "show" : null,
+ "label" : "SetValues1",
+ "disOnTplt" : false
+}
+ 1.0
+ Set Values
+
+ true
+ false
+ 0.0
+ LoopBlock1
+ 0.0
+ {
+ "loopList" : "UpdateData",
+ "executionConditionalFormula" : "",
+ "loopOutput" : {
+ "Test1" : "%SetValues1%"
+ },
+ "show" : null,
+ "label" : "LoopBlock1",
+ "disOnTplt" : false
+}
+ 1.0
+ Loop Block
+
+
+
+ true
+ false
+ 1.0
+ SetValues2
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "elementValueMap" : {
+ "Test2" : "%Anotherprop%"
+ },
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "show" : null,
+ "label" : "SetValues2",
+ "disOnTplt" : false
+}
+ 1.0
+ Set Values
+
+ true
+ false
+ 0.0
+ LoopBlock2
+ 0.0
+ {
+ "loopList" : "Anotherprop",
+ "executionConditionalFormula" : "",
+ "loopOutput" : {
+ "Test1" : "%SetValues2%"
+ },
+ "show" : null,
+ "label" : "LoopBlock2",
+ "disOnTplt" : false
+}
+ 2.0
+ Loop Block
+
+
+ true
+ false
+ 0.0
+ ResponseAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "useFormulas" : true,
+ "additionalOutput" : { },
+ "returnOnlyAdditionalOutput" : false,
+ "returnFullDataJSON" : false,
+ "responseFormat" : "JSON",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "ListAction1",
+ "sendJSONNode" : "",
+ "responseDefaultData" : { },
+ "vlcResponseHeaders" : { },
+ "show" : null,
+ "label" : "ResponseAction1",
+ "disOnTplt" : false
+}
+ 6.0
+ Response Action
+
+ IPMergingList_ForScopeSeverity
+ Integration Procedure
+ {
+ "linkToExternalObject" : "",
+ "trackingCustomData" : { },
+ "includeAllActionsInResponse" : false,
+ "columnsPropertyMap" : [ ],
+ "relationshipFieldsMap" : [ ],
+ "labelSingular" : "",
+ "labelPlural" : "",
+ "description" : "",
+ "nameColumn" : "",
+ "rollbackOnError" : false,
+ "chainableQueriesLimit" : 50,
+ "chainableDMLStatementsLimit" : null,
+ "chainableCpuLimit" : 2000,
+ "chainableHeapSizeLimit" : null,
+ "chainableDMLRowsLimit" : null,
+ "chainableQueryRowsLimit" : null,
+ "chainableSoslQueriesLimit" : null,
+ "chainableActualTimeLimit" : null,
+ "additionalChainableResponse" : { },
+ "queueableChainableQueriesLimit" : 120,
+ "queueableChainableCpuLimit" : 40000,
+ "queueableChainableHeapSizeLimit" : 6,
+ "ttlMinutes" : 5,
+ "mockResponseMap" : { }
+}
+ ForScopeSeverity
+ IPMergingList
+ IPMergingList_ForScopeSeverity_Procedure_1
+ 1.0
+ 43952e74-6e25-141e-fffa-38bba36ea0a4
+
diff --git a/src/main/default/omniIntegrationProcedures/IPMerging_List_Procedure_1.oip-meta.xml b/src/main/default/omniIntegrationProcedures/IPMerging_List_Procedure_1.oip-meta.xml
index 76adfa01..756bfe1c 100644
--- a/src/main/default/omniIntegrationProcedures/IPMerging_List_Procedure_1.oip-meta.xml
+++ b/src/main/default/omniIntegrationProcedures/IPMerging_List_Procedure_1.oip-meta.xml
@@ -207,6 +207,7 @@
"matchingPath" : "LoopBlockIterationIndex",
"normalizeKey" : "2"
} ],
+ "preventIntraListMerge" : false,
"mergeFields" : [ ],
"allowMergeNulls" : true,
"hasPrimary" : false,
@@ -282,7 +283,7 @@
"failureConditionalFormula" : "",
"failOnStepError" : true,
"elementValueMap" : {
- "Test2" : "%UpdateData%"
+ "Test2" : "%UpdatedListJSON%"
},
"responseJSONPath" : "",
"responseJSONNode" : "",
@@ -301,7 +302,7 @@
LoopBlock2
0.0
{
- "loopList" : "UpdateData",
+ "loopList" : "UpdatedListJSON",
"executionConditionalFormula" : "",
"loopOutput" : {
"Test1" : "%SetValues3%"
@@ -371,5 +372,5 @@
IPMerging
IPMerging_List_Procedure_1
1.0
- 7decce59-93aa-92e7-0a0f-218e18119917
+ 86fe3177-3c08-99a5-5a9f-df63a86ec367
diff --git a/src/main/default/omniIntegrationProcedures/IPMergingfor_PartBCAT_Procedure_1.oip-meta.xml b/src/main/default/omniIntegrationProcedures/IPMergingfor_PartBCAT_Procedure_1.oip-meta.xml
new file mode 100644
index 00000000..db8e5006
--- /dev/null
+++ b/src/main/default/omniIntegrationProcedures/IPMergingfor_PartBCAT_Procedure_1.oip-meta.xml
@@ -0,0 +1,279 @@
+
+
+ {}
+ ALR-1258
+ {"ElementTypeToHTMLTemplateList":[]}
+ true
+ true
+ false
+ false
+ false
+ false
+ Procedure
+ IPMergingforPartBCAT
+
+ true
+ false
+ 0.0
+ DataRaptorTransformAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : {
+ "LoopBlock1" : "=%LoopBlock1%"
+ },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : true,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "bundle" : "DRTransformAddingLoopIndexforCAT1",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "ignoreCache" : false,
+ "show" : null,
+ "label" : "DataRaptorTransformAction1",
+ "disOnTplt" : false
+}
+ 3.0
+ DataRaptor Transform Action
+
+
+ true
+ false
+ 0.0
+ DataRaptorTransformAction2
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : {
+ "LoopBlock1" : "%LoopBlock2%"
+ },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : true,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "bundle" : "DRTransformAddingLoopIndexforCAT2",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "ignoreCache" : false,
+ "show" : null,
+ "label" : "DataRaptorTransformAction2",
+ "disOnTplt" : false
+}
+ 4.0
+ DataRaptor Transform Action
+
+
+ true
+ false
+ 0.0
+ ListAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "useFormulas" : true,
+ "additionalInput" : { },
+ "additionalOutput" : { },
+ "failureResponse" : { },
+ "sendOnlyAdditionalInput" : false,
+ "returnOnlyAdditionalOutput" : false,
+ "returnOnlyFailureResponse" : false,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "advancedMerge" : true,
+ "advancedMergeMap" : [ {
+ "listKey" : "DataRaptorTransformAction2:LoopBlock1",
+ "matchingPath" : "Id",
+ "normalizeKey" : "2"
+ }, {
+ "listKey" : "DataRaptorTransformAction1:LoopBlock1",
+ "matchingPath" : "Id",
+ "normalizeKey" : "2"
+ } ],
+ "preventIntraListMerge" : false,
+ "mergeFields" : [ ],
+ "allowMergeNulls" : true,
+ "hasPrimary" : false,
+ "primaryListKey" : "",
+ "sortBy" : [ ],
+ "sortInDescendingOrder" : false,
+ "mergeListsOrder" : [ "DataRaptorTransformAction1:LoopBlock1", "DataRaptorTransformAction2:LoopBlock1" ],
+ "filterListFormula" : "",
+ "dynamicOutputFields" : "",
+ "updateFieldValue" : { },
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "additionalChainableResponse" : { },
+ "show" : null,
+ "label" : "ListAction1",
+ "disOnTplt" : false
+}
+ 5.0
+ List Merge Action
+
+
+
+ true
+ false
+ 1.0
+ SetValues1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "elementValueMap" : {
+ "Test2" : "=%CATAssessment%"
+ },
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "show" : null,
+ "label" : "SetValues1",
+ "disOnTplt" : false
+}
+ 1.0
+ Set Values
+
+ true
+ false
+ 0.0
+ LoopBlock1
+ 0.0
+ {
+ "loopList" : "CATAssessment",
+ "executionConditionalFormula" : "",
+ "loopOutput" : {
+ "Test1" : "=%SetValues1%"
+ },
+ "show" : null,
+ "label" : "LoopBlock1",
+ "disOnTplt" : false
+}
+ 1.0
+ Loop Block
+
+
+
+ true
+ false
+ 1.0
+ SetValues2
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "failureConditionalFormula" : "",
+ "failOnStepError" : true,
+ "elementValueMap" : {
+ "Test2" : "=%UpdatedJSONScore%"
+ },
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "chainOnStep" : false,
+ "actionMessage" : "",
+ "show" : null,
+ "label" : "SetValues2",
+ "disOnTplt" : false
+}
+ 1.0
+ Set Values
+
+ true
+ false
+ 0.0
+ LoopBlock2
+ 0.0
+ {
+ "loopList" : "UpdatedJSONScore",
+ "executionConditionalFormula" : "",
+ "loopOutput" : {
+ "Test1" : "=%SetValues2%"
+ },
+ "show" : null,
+ "label" : "LoopBlock2",
+ "disOnTplt" : false
+}
+ 2.0
+ Loop Block
+
+
+ true
+ false
+ 0.0
+ ResponseAction1
+ 0.0
+ {
+ "executionConditionalFormula" : "",
+ "useFormulas" : true,
+ "additionalOutput" : { },
+ "returnOnlyAdditionalOutput" : false,
+ "returnFullDataJSON" : false,
+ "responseFormat" : "JSON",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "sendJSONPath" : "ListAction1",
+ "sendJSONNode" : "",
+ "responseDefaultData" : { },
+ "vlcResponseHeaders" : { },
+ "show" : null,
+ "label" : "ResponseAction1",
+ "disOnTplt" : false
+}
+ 6.0
+ Response Action
+
+ IPMergingfor_PartBCAT
+ Integration Procedure
+ {
+ "linkToExternalObject" : "",
+ "trackingCustomData" : { },
+ "includeAllActionsInResponse" : false,
+ "columnsPropertyMap" : [ ],
+ "relationshipFieldsMap" : [ ],
+ "labelSingular" : "",
+ "labelPlural" : "",
+ "description" : "",
+ "nameColumn" : "",
+ "rollbackOnError" : false,
+ "chainableQueriesLimit" : 50,
+ "chainableDMLStatementsLimit" : null,
+ "chainableCpuLimit" : 2000,
+ "chainableHeapSizeLimit" : null,
+ "chainableDMLRowsLimit" : null,
+ "chainableQueryRowsLimit" : null,
+ "chainableSoslQueriesLimit" : null,
+ "chainableActualTimeLimit" : null,
+ "additionalChainableResponse" : { },
+ "queueableChainableQueriesLimit" : 120,
+ "queueableChainableCpuLimit" : 40000,
+ "queueableChainableHeapSizeLimit" : 6,
+ "ttlMinutes" : 5,
+ "mockResponseMap" : { }
+}
+ PartBCAT
+ IPMergingfor
+ IPMergingfor_PartBCAT_Procedure_1
+ 1.0
+ 70fa1a5a-5203-7093-f2d8-460931345a1e
+
diff --git a/src/main/default/omniScripts/EHIS_AccountContactRelation_English_3.os-meta.xml b/src/main/default/omniScripts/EHIS_AccountContactRelation_English_3.os-meta.xml
new file mode 100644
index 00000000..ca6de1c2
--- /dev/null
+++ b/src/main/default/omniScripts/EHIS_AccountContactRelation_English_3.os-meta.xml
@@ -0,0 +1,1659 @@
+
+
+ {"ElementTypeToHTMLTemplateList":[]}
+ true
+ false
+ false
+ false
+ false
+ true
+ English
+ Contact
+
+ true
+ false
+ 0.0
+ Account Name Dr
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Account Name Dr",
+ "bundle" : "DrAccountName",
+ "ignoreCache" : true,
+ "dataRaptor Input Parameters" : [ {
+ "element" : "ContextId",
+ "inputParam" : "contextId"
+ } ],
+ "remoteTimeout" : 30000,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "lwcComponentOverride" : ""
+}
+ 3.0
+ DataRaptor Extract Action
+
+
+
+ true
+ false
+ 1.0
+ TextBlock2
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock2",
+ "text" : "<p>Contact is successfully created/updated</p>",
+ "show" : null,
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Confirmation
+ 0.0
+ {
+ "label" : "Confirmation",
+ "validationRequired" : true,
+ "previousLabel" : "",
+ "previousWidth" : "0",
+ "nextLabel" : "Done",
+ "nextWidth" : "3",
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "",
+ "saveMessage" : "",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : true,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 9.0
+ Step
+
+
+
+ true
+ false
+ 1.0
+ AccountName
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Account Name",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : "",
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 2.0
+ Text
+
+
+ true
+ false
+ 1.0
+ Active
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "Checkbox1",
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : true,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "checkLabel" : "Active",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false
+}
+ 7.0
+ Checkbox
+
+
+
+ false
+ false
+ 2.0
+ Lookup1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Contact",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "dataSource" : {
+ "type" : "SObject",
+ "mapItems" : {
+ "phase1MapItems" : [ {
+ "InterfaceObjectName__c" : "Contact",
+ "InterfaceFieldAPIName__c" : "Name",
+ "FilterOperator__c" : "=",
+ "FilterValue__c" : "Name",
+ "InterfaceObjectLookupOrder__c" : 1,
+ "DomainObjectFieldAPIName__c" : "Name"
+ } ],
+ "phase2MapItems" : [ ],
+ "inputParameters" : [ {
+ "element" : "%ContactNames.Contact%",
+ "inputParam" : "Name"
+ } ]
+ },
+ "source" : ""
+ },
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "clearValue" : true,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ }
+}
+ 0.0
+ Lookup
+
+
+
+ true
+ false
+ 3.0
+ ExistingContact
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "ExistingContact",
+ "bundle" : "DrExistingContact",
+ "ignoreCache" : false,
+ "dataRaptor Input Parameters" : [ {
+ "element" : "TypeAhead1",
+ "inputParam" : "Key"
+ } ],
+ "remoteTimeout" : 30000,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 0.0
+ DataRaptor Extract Action
+
+ true
+ false
+ 2.0
+ TypeAhead1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Contact",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "googleTransformation" : {
+ "street" : "",
+ "locality" : "",
+ "administrative_area_level_1" : "",
+ "administrative_area_level_2" : "",
+ "country" : "",
+ "postal_code" : ""
+ },
+ "required" : true,
+ "readOnly" : false,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "typeAheadKey" : "Name",
+ "dataProcessorFunction" : "",
+ "callFrequency" : 300,
+ "editMode" : true,
+ "newItemLabel" : "",
+ "hideEditButton" : true,
+ "enableGoogleMapsAutocomplete" : false,
+ "enableLookup" : false,
+ "disableDataFilter" : false,
+ "googleMapsAPIKey" : "",
+ "hideMap" : true,
+ "googleAddressCountry" : "all",
+ "useDataJson" : false,
+ "dataJsonPath" : "",
+ "HTMLTemplateId" : ""
+}
+ 1.0
+ Type Ahead Block
+
+ true
+ false
+ 1.0
+ Block1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Create Existing Contact",
+ "collapse" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "Existing Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false
+}
+ 3.0
+ Block
+
+
+
+ true
+ false
+ 2.0
+ Email
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Email",
+ "controlWidth" : 4
+}
+ 5.0
+ Text
+
+
+ true
+ false
+ 2.0
+ FirstName
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "First Name",
+ "controlWidth" : 5
+}
+ 1.0
+ Text
+
+
+ true
+ false
+ 2.0
+ LastName
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : true,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Last Name",
+ "controlWidth" : 5
+}
+ 2.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Mobile
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Mobile",
+ "controlWidth" : 4
+}
+ 4.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Phone
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Phone",
+ "controlWidth" : 4
+}
+ 3.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Salutation
+ 0.0
+ {
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "controllingField" : {
+ "source" : "",
+ "type" : "",
+ "element" : ""
+ },
+ "optionSource" : {
+ "source" : "Account",
+ "type" : ""
+ },
+ "options" : [ {
+ "autoAdv" : null,
+ "value" : "Mr.",
+ "name" : "Mr."
+ }, {
+ "autoAdv" : null,
+ "value" : "Mrs.",
+ "name" : "Mrs."
+ }, {
+ "name" : "Ms.",
+ "value" : "Ms.",
+ "autoAdv" : null
+ }, {
+ "name" : "Dr.",
+ "value" : "Dr.",
+ "autoAdv" : null
+ }, {
+ "name" : "Prof.",
+ "value" : "Prof.",
+ "autoAdv" : null
+ }, {
+ "name" : "Mx.",
+ "value" : "Mx.",
+ "autoAdv" : null
+ } ],
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Salutation",
+ "controlWidth" : 2
+}
+ 0.0
+ Select
+
+ true
+ false
+ 1.0
+ Block4
+ 0.0
+ {
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "New Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "collapse" : false,
+ "label" : "Create New Contact",
+ "controlWidth" : 12
+}
+ 4.0
+ Block
+
+
+ true
+ false
+ 1.0
+ Primary Contact
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "Checkbox2",
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : false,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "checkLabel" : "Primary Contact",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false
+}
+ 8.0
+ Checkbox
+
+
+ true
+ false
+ 1.0
+ Roles
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Roles",
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "horizontalMode" : false,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "options" : [ {
+ "name" : "Main Site Manager",
+ "developerName" : null,
+ "value" : "Main Site Manager"
+ }, {
+ "name" : "General manager",
+ "developerName" : null,
+ "value" : "General manager"
+ }, {
+ "name" : "Administrative Personnel",
+ "developerName" : null,
+ "value" : "Administrative Personnel"
+ }, {
+ "name" : "Registrant Secondary Contact",
+ "developerName" : null,
+ "value" : "Registrant Secondary Contact"
+ }, {
+ "name" : "Executive Director",
+ "developerName" : null,
+ "value" : "Executive Director"
+ }, {
+ "name" : "Nurse / Care Manager",
+ "developerName" : null,
+ "value" : "Nurse / Care Manager"
+ }, {
+ "name" : "Assistant",
+ "developerName" : null,
+ "value" : "Assistant"
+ }, {
+ "name" : "Other",
+ "developerName" : null,
+ "value" : "Other"
+ } ],
+ "optionSource" : {
+ "type" : "",
+ "source" : ""
+ },
+ "controllingField" : {
+ "element" : "",
+ "type" : "",
+ "source" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "optionWidth" : 100,
+ "optionHeight" : 100,
+ "imageCountInRow" : 3,
+ "enableCaption" : true,
+ "disOnTplt" : false
+}
+ 5.0
+ Multi-select
+
+
+ true
+ false
+ 1.0
+ Roles3
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "",
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "horizontalMode" : false,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "options" : [ {
+ "name" : "Secondary Site Manager",
+ "developerName" : null,
+ "value" : "Secondary Site Manager"
+ }, {
+ "name" : "Assistant manager",
+ "developerName" : null,
+ "value" : "Assistant manager"
+ }, {
+ "name" : "Registrant Main Contact",
+ "developerName" : null,
+ "value" : "Registrant Main Contact"
+ }, {
+ "name" : "Director of Wellness",
+ "developerName" : null,
+ "value" : "Director of Wellness"
+ }, {
+ "name" : "Director",
+ "developerName" : null,
+ "value" : "Director"
+ }, {
+ "name" : "CEO",
+ "developerName" : null,
+ "value" : "CEO"
+ }, {
+ "name" : "Accounts",
+ "developerName" : null,
+ "value" : "Accounts"
+ } ],
+ "optionSource" : {
+ "type" : "",
+ "source" : ""
+ },
+ "controllingField" : {
+ "element" : "",
+ "type" : "",
+ "source" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "optionWidth" : 100,
+ "optionHeight" : 100,
+ "imageCountInRow" : 3,
+ "enableCaption" : true,
+ "disOnTplt" : false
+}
+ 6.0
+ Multi-select
+
+
+ true
+ false
+ 1.0
+ TextBlock3
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock3",
+ "text" : "<h1>Select Existing Contact</h1>",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "Existing Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+
+ true
+ false
+ 1.0
+ TextBlock4
+ 0.0
+ {
+ "sanitize" : false,
+ "textKey" : "",
+ "HTMLTemplateId" : "",
+ "dataJSON" : false,
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "field" : "Contact",
+ "condition" : "=",
+ "data" : "New Contact"
+ } ]
+ }
+ },
+ "text" : "<h1>Create New Contact</h1>",
+ "label" : "TextBlock3",
+ "controlWidth" : 12
+}
+ 1.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Contact Details
+ 0.0
+ {
+ "label" : "",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "3",
+ "nextLabel" : "Next",
+ "nextWidth" : 3,
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "",
+ "saveMessage" : "",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 4.0
+ Step
+
+
+
+ true
+ false
+ 1.0
+ Contact
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "",
+ "required" : true,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "horizontalMode" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "options" : [ {
+ "name" : "Existing Contact",
+ "developerName" : null,
+ "value" : "Existing Contact",
+ "autoAdv" : "next"
+ }, {
+ "name" : "New Contact",
+ "developerName" : null,
+ "value" : "New Contact",
+ "autoAdv" : "next"
+ } ],
+ "optionSource" : {
+ "type" : "",
+ "source" : ""
+ },
+ "controllingField" : {
+ "element" : "",
+ "type" : "",
+ "source" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "optionWidth" : 100,
+ "optionHeight" : 100,
+ "imageCountInRow" : 3,
+ "enableCaption" : true,
+ "disOnTplt" : false
+}
+ 0.0
+ Radio
+
+ true
+ false
+ 0.0
+ Create ACR
+ 0.0
+ {
+ "label" : "Add/Update Contact",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "0",
+ "nextLabel" : "Next",
+ "nextWidth" : "4",
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "",
+ "saveMessage" : "",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : true,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 2.0
+ Step
+
+
+
+ true
+ false
+ 1.0
+ Active1
+ 0.0
+ {
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "checkLabel" : "Active",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : true,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "label" : "Checkbox1",
+ "controlWidth" : 2
+}
+ 3.0
+ Checkbox
+
+
+ true
+ false
+ 1.0
+ PrimaryContact1
+ 0.0
+ {
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "checkLabel" : "Primary Contact",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : false,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "label" : "Checkbox2",
+ "controlWidth" : 2
+}
+ 4.0
+ Checkbox
+
+
+ true
+ false
+ 1.0
+ Roles1
+ 0.0
+ {
+ "disOnTplt" : false,
+ "enableCaption" : true,
+ "imageCountInRow" : 3,
+ "optionHeight" : 100,
+ "optionWidth" : 100,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "controllingField" : {
+ "source" : "",
+ "type" : "",
+ "element" : ""
+ },
+ "optionSource" : {
+ "source" : "",
+ "type" : ""
+ },
+ "options" : [ {
+ "value" : "Main Site Manager",
+ "developerName" : null,
+ "name" : "Main Site Manager"
+ }, {
+ "value" : "General manager",
+ "developerName" : null,
+ "name" : "General manager"
+ }, {
+ "value" : "Administrative Personnel",
+ "developerName" : null,
+ "name" : "Administrative Personnel"
+ }, {
+ "value" : "Registrant Secondary Contact",
+ "developerName" : null,
+ "name" : "Registrant Secondary Contact"
+ }, {
+ "value" : "Executive Director",
+ "developerName" : null,
+ "name" : "Executive Director"
+ }, {
+ "value" : "Nurse / Care Manager",
+ "developerName" : null,
+ "name" : "Nurse / Care Manager"
+ }, {
+ "value" : "Assistant",
+ "developerName" : null,
+ "name" : "Assistant"
+ }, {
+ "value" : "Other",
+ "developerName" : null,
+ "name" : "Other"
+ } ],
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "horizontalMode" : false,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "label" : "Roles",
+ "controlWidth" : 4
+}
+ 1.0
+ Multi-select
+
+
+ true
+ false
+ 1.0
+ Roles2
+ 0.0
+ {
+ "disOnTplt" : false,
+ "enableCaption" : true,
+ "imageCountInRow" : 3,
+ "optionHeight" : 100,
+ "optionWidth" : 100,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "controllingField" : {
+ "source" : "",
+ "type" : "",
+ "element" : ""
+ },
+ "optionSource" : {
+ "source" : "",
+ "type" : ""
+ },
+ "options" : [ {
+ "value" : "Secondary Site Manager",
+ "developerName" : null,
+ "name" : "Secondary Site Manager"
+ }, {
+ "value" : "Assistant manager",
+ "developerName" : null,
+ "name" : "Assistant manager"
+ }, {
+ "value" : "Registrant Main Contact",
+ "developerName" : null,
+ "name" : "Registrant Main Contact"
+ }, {
+ "value" : "Director of Wellness",
+ "developerName" : null,
+ "name" : "Director of Wellness"
+ }, {
+ "value" : "Director",
+ "developerName" : null,
+ "name" : "Director"
+ }, {
+ "value" : "CEO",
+ "developerName" : null,
+ "name" : "CEO"
+ }, {
+ "value" : "Accounts",
+ "developerName" : null,
+ "name" : "Accounts"
+ } ],
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "horizontalMode" : false,
+ "readOnly" : false,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "label" : "",
+ "controlWidth" : 4
+}
+ 2.0
+ Multi-select
+
+
+ true
+ false
+ 1.0
+ Text1
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : "",
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Account Name",
+ "controlWidth" : 12
+}
+ 0.0
+ Text
+
+ false
+ false
+ 0.0
+ Create New Contact
+ 0.0
+ {
+ "businessEvent" : "",
+ "businessCategory" : "",
+ "pubsub" : false,
+ "message" : { },
+ "ssm" : false,
+ "wpm" : false,
+ "errorMessage" : {
+ "default" : null,
+ "custom" : [ ]
+ },
+ "allowSaveForLater" : true,
+ "chartLabel" : null,
+ "instructionKey" : "",
+ "HTMLTemplateId" : "",
+ "conditionType" : "Hide if False",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "New Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "knowledgeOptions" : {
+ "typeFilter" : "",
+ "remoteTimeout" : 30000,
+ "dataCategoryCriteria" : "",
+ "keyword" : "",
+ "publishStatus" : "Online",
+ "language" : "English"
+ },
+ "remoteOptions" : { },
+ "remoteTimeout" : 30000,
+ "remoteMethod" : "",
+ "remoteClass" : "",
+ "showPersistentComponent" : [ true, false ],
+ "instruction" : "",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "completeLabel" : "Complete",
+ "saveMessage" : "",
+ "saveLabel" : "",
+ "cancelMessage" : "Are you sure?",
+ "cancelLabel" : "Cancel",
+ "nextWidth" : 3,
+ "nextLabel" : "Next",
+ "previousWidth" : "3",
+ "previousLabel" : "Previous",
+ "validationRequired" : true,
+ "label" : "Create New Contact"
+}
+ 5.0
+ Step
+
+
+
+ true
+ false
+ 1.0
+ TextBlock1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock1",
+ "text" : "<p><em>You must specify either Phone, Mobile or Email for this record.</em></p>",
+ "show" : null,
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Error
+ 0.0
+ {
+ "label" : "Error",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "3",
+ "nextLabel" : "",
+ "nextWidth" : "0",
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "",
+ "saveMessage" : "",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "New Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ }, {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "field" : "Phone",
+ "condition" : "=",
+ "data" : null
+ }, {
+ "field" : "Mobile",
+ "condition" : "=",
+ "data" : null
+ }, {
+ "field" : "Email",
+ "condition" : "=",
+ "data" : null
+ } ]
+ }
+ } ]
+ }
+ },
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : true,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 6.0
+ Step
+
+
+ true
+ false
+ 0.0
+ ExistingContactRelationship
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "ExistingContactRelationship",
+ "bundle" : "DRUpdateAccountContactRelation",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "Existing Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 7.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ NavigateAction1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NavigateAction1",
+ "validationRequired" : "Submit",
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "pubsub" : false,
+ "message" : { },
+ "targetType" : "Record",
+ "objectAction" : "home",
+ "recordAction" : "view",
+ "loginAction" : "login",
+ "targetFilter" : "Recent",
+ "targetId" : "%AccountId%",
+ "variant" : "brand",
+ "iconName" : "",
+ "iconVariant" : "",
+ "iconPosition" : "left",
+ "replace" : true,
+ "targetLWCLayout" : "lightning",
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "targetName" : "Account",
+ "targetParams" : "AccountId"
+}
+ 10.0
+ Navigate Action
+
+
+ true
+ false
+ 0.0
+ NewContactRelationship
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NewContactRelationship",
+ "bundle" : "DRCreateAccountContactRelation",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "New Contact",
+ "condition" : "=",
+ "field" : "Contact"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 8.0
+ DataRaptor Post Action
+
+
+ false
+ false
+ 0.0
+ SetValues1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "SetValues1",
+ "elementValueMap" : {
+ "AccountId" : "ContextId"
+ },
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false
+}
+ 0.0
+ Set Values
+
+
+ true
+ false
+ 0.0
+ SetValues2
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "SetValues2",
+ "elementValueMap" : {
+ "ContextId" : "%ContextId%"
+ },
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false
+}
+ 1.0
+ Set Values
+
+ OmniScript
+ {"persistentComponent":[{"render":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","sendJSONPath":"","sendJSONNode":"","responseJSONPath":"","responseJSONNode":"","id":"vlcCart","itemsKey":"cartItems","modalConfigurationSetting":{"modalHTMLTemplateId":"vlcProductConfig.html","modalController":"ModalProductCtrl","modalSize":"lg"}},{"render":false,"dispOutsideOmni":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","id":"vlcKnowledge","itemsKey":"knowledgeItems","modalConfigurationSetting":{"modalHTMLTemplateId":"","modalController":"","modalSize":"lg"}}],"allowSaveForLater":true,"saveNameTemplate":null,"saveExpireInDays":null,"saveForLaterRedirectPageName":"sflRedirect","saveForLaterRedirectTemplateUrl":"vlcSaveForLaterAcknowledge.html","saveContentEncoded":false,"saveObjectId":"%ContextId%","saveURLPatterns":{},"autoSaveOnStepNext":false,"elementTypeToHTMLTemplateMapping":{},"seedDataJSON":{},"trackingCustomData":{},"enableKnowledge":false,"bLK":false,"lkObjName":null,"knowledgeArticleTypeQueryFieldsMap":{},"timeTracking":false,"hideStepChart":true,"mergeSavedData":false,"visualforcePagesAvailableInPreview":{},"cancelType":"SObject","allowCancel":true,"cancelSource":"%ContextId%","cancelRedirectPageName":"OmniScriptCancelled","cancelRedirectTemplateUrl":"vlcCancelled.html","consoleTabLabel":"New","wpm":false,"ssm":false,"message":{},"pubsub":false,"autoFocus":false,"currencyCode":"","showInputWidth":false,"rtpSeed":false,"consoleTabTitle":null,"consoleTabIcon":"custom:custom18","errorMessage":{"custom":[]},"stylesheet":{"newport":"","lightning":"","newportRtl":"","lightningRtl":""},"stepChartPlacement":"right","disableUnloadWarn":true,"scrollBehavior":"auto","currentLanguage":"en_US"}
+ AccountContactRelation
+ EHIS
+ EHIS_AccountContactRelation_English_3
+ 3.0
+ b2b47b2a-80aa-6255-3024-c7c12dcbe489
+
diff --git a/src/main/default/omniScripts/EHIS_GenerateBusinessLicense_English_8.os-meta.xml b/src/main/default/omniScripts/EHIS_GenerateBusinessLicense_English_8.os-meta.xml
new file mode 100644
index 00000000..19aa2476
--- /dev/null
+++ b/src/main/default/omniScripts/EHIS_GenerateBusinessLicense_English_8.os-meta.xml
@@ -0,0 +1,451 @@
+
+
+ ALR-1316
+ {"ElementTypeToHTMLTemplateList":[]}
+ true
+ false
+ false
+ false
+ false
+ true
+ English
+ Generate Business License
+
+
+ true
+ false
+ 1.0
+ Warning message
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock1",
+ "text" : "<p>By clicking on 'Generate License' button will create new business license and any exsisting business license for the residence will become inactive.<br />Are you sure you want to continue ?</p>",
+ "show" : null,
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Confirm
+ 0.0
+ {
+ "label" : "Confirm",
+ "validationRequired" : true,
+ "previousLabel" : "No",
+ "previousWidth" : "2",
+ "nextLabel" : "Generate License",
+ "nextWidth" : "5",
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "lwcComponentOverride" : ""
+}
+ 0.0
+ Step
+
+
+
+ true
+ false
+ 1.0
+ blFlowContainer
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "blFlowContainer",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "true",
+ "condition" : "=",
+ "field" : "test"
+ } ]
+ }
+ },
+ "conditionType" : "Hide if False",
+ "hide" : false,
+ "lwcName" : "blFlowContainer",
+ "bStandalone" : false,
+ "customAttributes" : [ {
+ "name" : "record-Id",
+ "source" : "%ContextId%"
+ } ]
+}
+ 0.0
+ Custom Lightning Web Component
+
+
+ true
+ false
+ 1.0
+ Formula1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula1",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "IF(%Sub%, true, false)",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 3.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ TextBlock1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock1",
+ "text" : "<p style=\"text-align: center;\">New Business License <a href=\"/lightning/r/BusinessLicense/%output:newLicenseId%/view\">%output:newRegNumber%</a> is successfully created.</p>",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "output:showError"
+ } ]
+ }
+ },
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 2.0
+ Text Block
+
+
+ true
+ false
+ 1.0
+ TextBlock3
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock3",
+ "text" : "<p style=\"text-align: center;\"><br />%output:errorMessage%</p>",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "true",
+ "condition" : "=",
+ "field" : "output:showError"
+ } ]
+ }
+ },
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 1.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Details
+ 0.0
+ {
+ "label" : "Details",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "0",
+ "nextLabel" : "Done",
+ "nextWidth" : 3,
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : "Invoice must be paid prior to generating license"
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 2.0
+ Step
+
+
+ true
+ false
+ 0.0
+ DRToCreateTaskFirstTime
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRToCreateTaskFirstTime",
+ "bundle" : "EHISDRToCreateTask",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Details:Formula1"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 3.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRToFindExistingTask
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRToFindExistingTask",
+ "bundle" : "EHISDRToFindExistingTask",
+ "ignoreCache" : true,
+ "hide" : true,
+ "dataRaptor Input Parameters" : [ {
+ "element" : "ContextId",
+ "inputParam" : "ContextId"
+ } ],
+ "remoteTimeout" : 30000,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "None",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 1.0
+ DataRaptor Extract Action
+
+
+ true
+ false
+ 0.0
+ NavigateToBL
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NavigateToBL",
+ "validationRequired" : "Submit",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "output:showError"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "pubsub" : false,
+ "message" : { },
+ "targetType" : "Record",
+ "objectAction" : "home",
+ "recordAction" : "view",
+ "loginAction" : "login",
+ "targetFilter" : "Recent",
+ "targetId" : "%output:newLicenseId%",
+ "variant" : "brand",
+ "iconName" : "",
+ "iconVariant" : "",
+ "iconPosition" : "left",
+ "replace" : false,
+ "targetLWCLayout" : "lightning",
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "targetName" : "BusinessLicense"
+}
+ 4.0
+ Navigate Action
+
+
+ true
+ false
+ 0.0
+ NavigateToBLA
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NavigateToBLA",
+ "validationRequired" : "Submit",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "true",
+ "condition" : "=",
+ "field" : "output:showError"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "pubsub" : false,
+ "message" : { },
+ "targetType" : "Record",
+ "objectAction" : "home",
+ "recordAction" : "view",
+ "loginAction" : "login",
+ "targetFilter" : "Recent",
+ "targetId" : "%ContextId%",
+ "variant" : "brand",
+ "iconName" : "",
+ "iconVariant" : "",
+ "iconPosition" : "left",
+ "replace" : false,
+ "targetLWCLayout" : "lightning",
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "targetName" : "BusinessLicenseApplication"
+}
+ 5.0
+ Navigate Action
+
+ OmniScript
+ {"persistentComponent":[{"render":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","sendJSONPath":"","sendJSONNode":"","responseJSONPath":"","responseJSONNode":"","id":"vlcCart","itemsKey":"cartItems","modalConfigurationSetting":{"modalHTMLTemplateId":"vlcProductConfig.html","modalController":"ModalProductCtrl","modalSize":"lg"}},{"render":false,"dispOutsideOmni":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","id":"vlcKnowledge","itemsKey":"knowledgeItems","modalConfigurationSetting":{"modalHTMLTemplateId":"","modalController":"","modalSize":"lg"}}],"allowSaveForLater":true,"saveNameTemplate":null,"saveExpireInDays":null,"saveForLaterRedirectPageName":"sflRedirect","saveForLaterRedirectTemplateUrl":"vlcSaveForLaterAcknowledge.html","saveContentEncoded":false,"saveObjectId":"%ContextId%","saveURLPatterns":{},"autoSaveOnStepNext":false,"elementTypeToHTMLTemplateMapping":{},"seedDataJSON":{},"trackingCustomData":{},"enableKnowledge":false,"bLK":false,"lkObjName":null,"knowledgeArticleTypeQueryFieldsMap":{},"timeTracking":false,"hideStepChart":false,"mergeSavedData":false,"visualforcePagesAvailableInPreview":{},"cancelType":"SObject","allowCancel":true,"cancelSource":"%ContextId%","cancelRedirectPageName":"OmniScriptCancelled","cancelRedirectTemplateUrl":"vlcCancelled.html","consoleTabLabel":"New","wpm":false,"ssm":false,"message":{},"pubsub":false,"autoFocus":false,"currencyCode":"","showInputWidth":false,"rtpSeed":false,"consoleTabTitle":null,"consoleTabIcon":"custom:custom18","errorMessage":{"custom":[]},"stylesheet":{"newport":"","lightning":"","newportRtl":"","lightningRtl":""},"stepChartPlacement":"right","disableUnloadWarn":true,"scrollBehavior":"auto","currentLanguage":"en_US"}
+ GenerateBusinessLicense
+ EHIS
+ EHIS_GenerateBusinessLicense_English_8
+ 8.0
+ 76e84a19-5663-91a2-221d-52e0e430cec9
+
diff --git a/src/main/default/omniScripts/Risk_Assessment_English_5.os-meta.xml b/src/main/default/omniScripts/Risk_Assessment_English_5.os-meta.xml
new file mode 100644
index 00000000..eebc2500
--- /dev/null
+++ b/src/main/default/omniScripts/Risk_Assessment_English_5.os-meta.xml
@@ -0,0 +1,2977 @@
+
+
+ ALR-860, 861 and 110. Updated Hypercare ALR-1266. Updated and added Previous and Next Button for ALR-1258
+ {"ElementTypeToHTMLTemplateList":[]}
+ true
+ false
+ false
+ false
+ false
+ true
+ English
+ RiskAssessment
+
+
+ true
+ false
+ 1.0
+ AssignedScore
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : 0,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "placeholder" : "",
+ "mask" : null,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 1.0
+ Number
+
+
+ true
+ false
+ 1.0
+ CalculatedScore
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "placeholder" : "",
+ "mask" : null,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 6.0
+ Number
+
+
+ false
+ false
+ 1.0
+ CalculatedScoreFormula
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(%matrixResult:AssignedScore%,%Confirmation:OperationalScoreFormula%)",
+ "hide" : false,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Number",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 7.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ CalculatedText
+ 0.0
+ {
+ "controlWidth" : 5,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : "Calculated Score:",
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 5.0
+ Text
+
+
+ true
+ false
+ 1.0
+ InspectionText
+ 0.0
+ {
+ "controlWidth" : 5,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : "Part A: Inspection Score:",
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 0.0
+ Text
+
+
+ true
+ false
+ 1.0
+ Operational Score
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "mask" : null,
+ "placeholder" : "",
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 3
+}
+ 4.0
+ Number
+
+
+ false
+ false
+ 1.0
+ OperationalScoreFormula
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(%CATAssessment:score%)",
+ "hide" : false,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Number",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 3.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ OperationalText
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : "Part B: Operational History Score:",
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 5
+}
+ 2.0
+ Text
+
+
+ true
+ false
+ 1.0
+ TotalScore
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : "",
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 3
+}
+ 9.0
+ Text
+
+
+ true
+ false
+ 1.0
+ TotalText
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : "Rating:",
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 5
+}
+ 8.0
+ Text
+
+ true
+ false
+ 0.0
+ Confirmation
+ 0.0
+ {
+ "label" : "Confirmation",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "3",
+ "nextLabel" : "Finish",
+ "nextWidth" : 3,
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 19.0
+ Step
+
+
+ true
+ false
+ 0.0
+ DecisionMatrixToGetAssignedScore
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DecisionMatrixToGetAssignedScore",
+ "matrix Input Parameters" : [ {
+ "name" : "RiskMatrix",
+ "value" : "RiskMatrix"
+ } ],
+ "remoteOptions" : {
+ "matrixName" : "Assigned Score Decision Matrix",
+ "postTransformBundle" : ""
+ },
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "matrixResult",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "defaultMatrixResult" : { },
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 11.0
+ Matrix Action
+
+
+ true
+ false
+ 0.0
+ DecisionMatrixToGetRiskScore
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DecisionMatrixToGetRiskScore",
+ "matrix Input Parameters" : [ {
+ "name" : "UpdatedListJSON:Scope",
+ "value" : "Scope"
+ }, {
+ "name" : "UpdatedListJSON:Severity",
+ "value" : "Severity"
+ } ],
+ "remoteOptions" : {
+ "matrixName" : "Risk Score Decision Matrix",
+ "postTransformBundle" : "DRTransformDecisionMatrixRiskScore"
+ },
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "responseJSONPath" : "parent",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "defaultMatrixResult" : { },
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 4.0
+ Matrix Action
+
+
+ true
+ false
+ 0.0
+ DecisionMatrixToGetTotalScore
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "DecisionMatrixToGetTotalScore",
+ "matrix Input Parameters" : [ {
+ "name" : "ScoreTotal",
+ "value" : "TotalComplianceScore"
+ } ],
+ "remoteOptions" : {
+ "matrixName" : "Total Compliance Score Decision Matrix",
+ "postTransformBundle" : ""
+ },
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "matrixResult",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "defaultMatrixResult" : { },
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 17.0
+ Matrix Action
+
+
+ true
+ false
+ 0.0
+ DRCATAssessmentQuestions
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRCATAssessmentQuestions",
+ "bundle" : "DRCATExtractwithoutScoreComments",
+ "ignoreCache" : true,
+ "dataRaptor Input Parameters" : [ ],
+ "remoteTimeout" : 30000,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "None",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 1.0
+ DataRaptor Extract Action
+
+
+ false
+ false
+ 0.0
+ DRCreateRCVRecord
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRCreateRCVRecord",
+ "bundle" : "DRToCreateRCVRecords",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 24.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRGetNonCompliantIssueFromInspection
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRGetNonCompliantIssueFromInspection",
+ "bundle" : "DRGetNonCompliantIssueFromInspection",
+ "ignoreCache" : true,
+ "dataRaptor Input Parameters" : [ {
+ "element" : "ContextId",
+ "inputParam" : "ContextId"
+ } ],
+ "remoteTimeout" : 30000,
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 9.0
+ DataRaptor Extract Action
+
+
+ true
+ false
+ 0.0
+ DRGetRecords
+ 0.0
+ {
+ "businessEvent" : "",
+ "businessCategory" : "",
+ "enableActionMessage" : false,
+ "enableDefaultAbort" : false,
+ "errorMessage" : {
+ "default" : null,
+ "custom" : [ ]
+ },
+ "pubsub" : false,
+ "message" : { },
+ "ssm" : false,
+ "wpm" : false,
+ "HTMLTemplateId" : "",
+ "show" : null,
+ "showPersistentComponent" : [ true, false ],
+ "redirectPreviousWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectNextWidth" : 3,
+ "redirectNextLabel" : "Next",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectPageName" : "",
+ "validationRequired" : "Step",
+ "failureAbortMessage" : "Are you sure?",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortLabel" : "Abort",
+ "failureNextLabel" : "Continue",
+ "postMessage" : "Done",
+ "inProgressMessage" : "In Progress",
+ "responseJSONNode" : "",
+ "responseJSONPath" : "",
+ "remoteTimeout" : 30000,
+ "dataRaptor Input Parameters" : [ {
+ "inputParam" : "ContextId",
+ "element" : "ContextId"
+ } ],
+ "ignoreCache" : true,
+ "bundle" : "DRGetNonCompliantIssueFromInspection",
+ "label" : "DRGetNonCompliantIssueFromInspection",
+ "controlWidth" : 12
+}
+ 0.0
+ DataRaptor Extract Action
+
+
+ true
+ false
+ 0.0
+ DRtoGetUpdatedJSONScore
+ 0.0
+ {
+ "businessEvent" : "",
+ "businessCategory" : "",
+ "enableActionMessage" : false,
+ "enableDefaultAbort" : false,
+ "errorMessage" : {
+ "default" : null,
+ "custom" : [ ]
+ },
+ "pubsub" : false,
+ "message" : { },
+ "ssm" : false,
+ "wpm" : false,
+ "HTMLTemplateId" : "",
+ "show" : null,
+ "showPersistentComponent" : [ true, false ],
+ "redirectPreviousWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectNextWidth" : 3,
+ "redirectNextLabel" : "Next",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectPageName" : "",
+ "validationRequired" : "None",
+ "failureAbortMessage" : "Are you sure?",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortLabel" : "Abort",
+ "failureNextLabel" : "Continue",
+ "postMessage" : "Done",
+ "inProgressMessage" : "In Progress",
+ "responseJSONNode" : "",
+ "responseJSONPath" : "",
+ "remoteTimeout" : 30000,
+ "dataRaptor Input Parameters" : [ {
+ "element" : "matrixResult:AssignedScore",
+ "inputParam" : "AssignedScoreValue"
+ } ],
+ "ignoreCache" : true,
+ "bundle" : "CATAssessmentQuestions",
+ "label" : "DRtoGetUpdatedJSONScore",
+ "controlWidth" : 12
+}
+ 16.0
+ DataRaptor Extract Action
+
+
+ true
+ false
+ 0.0
+ DRToUpdateScoreValues
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRToUpdateScoreValues",
+ "bundle" : "DRToUpdateScoreValues",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 21.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRUpdateRegCodeViolationRecords
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRUpdateRegCodeViolationRecords",
+ "bundle" : "DRUpdateRegCodeViolationRecords",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ }, {
+ "field" : "SingleListJSON:RiskScore",
+ "condition" : "<>",
+ "data" : null
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 6.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRUpdateScoreComment
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRUpdateScoreComment",
+ "bundle" : "DRUpdateScoreComment",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 14.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRUpdateScorewhenBlank
+ 0.0
+ {
+ "businessEvent" : "",
+ "businessCategory" : "",
+ "enableActionMessage" : false,
+ "enableDefaultAbort" : false,
+ "errorMessage" : {
+ "default" : null,
+ "custom" : [ ]
+ },
+ "pubsub" : false,
+ "message" : { },
+ "ssm" : false,
+ "wpm" : false,
+ "HTMLTemplateId" : "",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "field" : "SingleListJSON:RiskScore",
+ "condition" : "=",
+ "data" : null
+ }, {
+ "field" : "Formula7",
+ "condition" : "=",
+ "data" : "false"
+ } ]
+ }
+ },
+ "showPersistentComponent" : [ true, false ],
+ "redirectPreviousWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectNextWidth" : 3,
+ "redirectNextLabel" : "Next",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectPageName" : "",
+ "validationRequired" : "Submit",
+ "failureAbortMessage" : "Are you sure?",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortLabel" : "Abort",
+ "failureNextLabel" : "Continue",
+ "postMessage" : "Done",
+ "inProgressMessage" : "In Progress",
+ "sendJSONNode" : "",
+ "sendJSONPath" : "",
+ "postTransformBundle" : "",
+ "remoteTimeout" : 30000,
+ "bundle" : "DRUpdateScorewhenBlank",
+ "label" : "DRUpdateScorewhenBlank",
+ "controlWidth" : 12
+}
+ 7.0
+ DataRaptor Post Action
+
+
+ true
+ false
+ 0.0
+ DRUpdateSingleScore
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "DRUpdateSingleScore",
+ "bundle" : "DRUpdateSingleScore",
+ "remoteTimeout" : 30000,
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Submit",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : null,
+ "condition" : "=",
+ "field" : "SingleListJSON:RiskScore"
+ }, {
+ "field" : "Formula7",
+ "condition" : "=",
+ "data" : "false"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 8.0
+ DataRaptor Post Action
+
+
+
+
+ true
+ false
+ 2.0
+ Text1
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "Category",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 1.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Text2
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "Code",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 0.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Text3
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "Assessment Question",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "",
+ "helpText" : "",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 2
+}
+ 2.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Text4
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "The scale (or breadth) of non-compliance observed. Scope may be isolated (single), a pattern (multiple), or a widespread (extensive) observation of non-compliance.",
+ "helpTextPos" : "bottom-right",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "Scope",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 3.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Text5
+ 0.0
+ {
+ "autocomplete" : null,
+ "disOnTplt" : false,
+ "hide" : false,
+ "HTMLTemplateId" : "",
+ "debounceValue" : 0,
+ "accessibleInFutureSteps" : false,
+ "conditionType" : "Hide if False",
+ "show" : null,
+ "placeholder" : "Severity",
+ "maxLength" : 255,
+ "minLength" : 0,
+ "ptrnErrText" : "",
+ "pattern" : "",
+ "mask" : "",
+ "helpTextPos" : "top-right",
+ "helpText" : "The potential risk of harm presented by the scope of non-compliance observed at the time of the assessment (I.e. the risk situation identified during the inspection).",
+ "help" : false,
+ "defaultValue" : null,
+ "readOnly" : true,
+ "repeatLimit" : null,
+ "repeatClone" : false,
+ "repeat" : false,
+ "required" : false,
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "",
+ "controlWidth" : 2
+}
+ 4.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Text6
+ 0.0
+ {
+ "controlWidth" : 2,
+ "label" : "",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "Comments",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 5.0
+ Text
+
+ false
+ false
+ 1.0
+ Block1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "",
+ "collapse" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false
+}
+ 1.0
+ Block
+
+
+ true
+ false
+ 1.0
+ Formula2
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula2",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(COUNT(%Questions1:Severity%), COUNT(%Anotherprop:Severity__c%)) == COUNT(%Questions1:Id%)",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 9.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ Formula3
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula3",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(COUNT(%Questions1:Scope%), COUNT(%Anotherprop:Scope__c%)) == COUNT(%Questions1:Id%)",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 10.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ Formula5
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula5",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "AND(COUNT(%Questions1:Scope%) == COUNT(%Questions1:Id%), COUNT(%Questions1:Severity%) == COUNT(%Questions1:Id%))",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 11.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ Formula7
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula7",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "COUNT(%Questions1:Id%) == 0",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 6.0
+ Formula
+
+
+
+ true
+ false
+ 2.0
+ AssessmentQuestion
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "AssessmentQuestion",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true,
+ "autocomplete" : null
+}
+ 2.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Category
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Category",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true,
+ "autocomplete" : null
+}
+ 0.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Comments
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Comments",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true,
+ "autocomplete" : null
+}
+ 5.0
+ Text
+
+
+ true
+ false
+ 2.0
+ RegulatoryCode
+ 0.0
+ {
+ "controlWidth" : 8,
+ "label" : "RegulatoryCode",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true,
+ "autocomplete" : null
+}
+ 1.0
+ Text
+
+
+ true
+ false
+ 2.0
+ Scope
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "Scope",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : null,
+ "help" : true,
+ "helpText" : "Testtttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
+ "helpTextPos" : "",
+ "options" : [ ],
+ "optionSource" : {
+ "type" : "SObject",
+ "source" : "RegulatoryCodeViolation.Scope__c"
+ },
+ "controllingField" : {
+ "element" : "",
+ "type" : "",
+ "source" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true
+}
+ 3.0
+ Select
+
+
+ true
+ false
+ 2.0
+ Severity
+ 0.0
+ {
+ "controlWidth" : 3,
+ "label" : "Severity",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : false,
+ "defaultValue" : null,
+ "help" : true,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "options" : [ ],
+ "optionSource" : {
+ "type" : "SObject",
+ "source" : "RegulatoryCodeViolation.Severity__c"
+ },
+ "controllingField" : {
+ "element" : "",
+ "type" : "",
+ "source" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : true
+}
+ 4.0
+ Select
+
+ false
+ false
+ 1.0
+ NonComplianceQuestions
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "",
+ "collapse" : false,
+ "repeat" : true,
+ "display" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "headingLevel" : null
+}
+ 2.0
+ Block
+
+
+
+ false
+ false
+ 2.0
+ AssessmentQuestion1
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Assessment Question",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 2.0
+ Text
+
+
+ false
+ false
+ 2.0
+ Category1
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Category",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 0.0
+ Text
+
+
+ false
+ false
+ 2.0
+ RegulatoryCode1
+ 0.0
+ {
+ "controlWidth" : 4,
+ "label" : "Code",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "required" : false,
+ "repeat" : false,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "readOnly" : true,
+ "defaultValue" : null,
+ "help" : false,
+ "helpText" : "",
+ "helpTextPos" : "",
+ "mask" : "",
+ "pattern" : "",
+ "ptrnErrText" : "",
+ "minLength" : 0,
+ "maxLength" : 255,
+ "placeholder" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "debounceValue" : 0,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "disOnTplt" : false,
+ "autocomplete" : null
+}
+ 1.0
+ Text
+
+ false
+ false
+ 1.0
+ NonComplianceQuestions1
+ 0.0
+ {
+ "controlWidth" : 20,
+ "label" : "",
+ "collapse" : false,
+ "repeat" : true,
+ "repeatClone" : false,
+ "repeatLimit" : null,
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false
+}
+ 4.0
+ Block
+
+
+
+ true
+ false
+ 2.0
+ RemoteAction1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "RemoteAction1",
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : ""
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "useContinuation" : false,
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "disOnTplt" : false
+}
+ 0.0
+ Remote Action
+
+ false
+ false
+ 1.0
+ NonComplianceQuestions7
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NonComplianceQuestions",
+ "allowEdit" : true,
+ "allowNew" : false,
+ "allowDelete" : false,
+ "newLabel" : "New",
+ "editLabel" : "Edit",
+ "deleteLabel" : "Delete",
+ "selectMode" : "Single",
+ "selectCheckBox" : "",
+ "svgSprite" : "utility",
+ "svgIcon" : "user",
+ "elementName" : "",
+ "valueSvgMap" : [ ],
+ "selectSobject" : "RegulatoryCodeViolation",
+ "sobjectMapping" : [ {
+ "osElement" : "Scope",
+ "sObjectField" : "Scope__c",
+ "duplicateKey" : false
+ }, {
+ "osElement" : "Severity",
+ "sObjectField" : "Severity__c",
+ "duplicateKey" : false
+ }, {
+ "osElement" : "Comments",
+ "sObjectField" : "Description",
+ "duplicateKey" : false
+ } ],
+ "sumElement" : "",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "accessibleInFutureSteps" : false,
+ "HTMLTemplateId" : "",
+ "hide" : false,
+ "mode" : "Table",
+ "maxDisplay" : 10,
+ "allowClear" : false
+}
+ 3.0
+ Edit Block
+
+
+ true
+ false
+ 1.0
+ Required Error Message
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Required Error Message",
+ "validateExpression" : {
+ "group" : {
+ "operator" : "OR",
+ "rules" : [ {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "field" : "Formula2",
+ "condition" : "=",
+ "data" : "true"
+ }, {
+ "field" : "Formula3",
+ "condition" : "=",
+ "data" : "true"
+ } ]
+ }
+ }, {
+ "field" : "Formula5",
+ "condition" : "=",
+ "data" : "true"
+ } ]
+ }
+ },
+ "messages" : [ {
+ "value" : true,
+ "type" : "Success",
+ "text" : "This is success",
+ "active" : false
+ }, {
+ "value" : false,
+ "type" : "Requirement",
+ "text" : "Please fill the required fields. i.e. Scope and Severity",
+ "active" : true
+ } ],
+ "hideLabel" : true,
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "showMessageAs" : "inline"
+}
+ 7.0
+ Validation
+
+
+ false
+ false
+ 1.0
+ SetErrors1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "SetErrors1",
+ "validationRequired" : "Step",
+ "elementErrorMap" : { },
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "True",
+ "condition" : "=",
+ "field" : "Formula3"
+ }, {
+ "field" : "Formula2",
+ "condition" : "=",
+ "data" : "True"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false
+}
+ 12.0
+ Set Errors
+
+
+ true
+ false
+ 1.0
+ showRegulatoryViolationRecords
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "showRegulatoryViolationRecords",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "conditionType" : "Hide if False",
+ "hide" : false,
+ "lwcName" : "showRegulatoryViolationRecords",
+ "bStandalone" : false,
+ "customAttributes" : [ {
+ "name" : "record-id",
+ "source" : "%ContextId%"
+ }, {
+ "name" : "Questions1JSON",
+ "source" : "%Questions1%"
+ } ]
+}
+ 8.0
+ Custom Lightning Web Component
+
+
+ false
+ false
+ 1.0
+ TextBlock1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock1",
+ "text" : "",
+ "show" : null,
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+
+ true
+ false
+ 1.0
+ TextBlock2
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock2",
+ "text" : "<p>There are no RCV Records. Hence, Proceed with Part B Assessment and click on Next.</p>",
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "true",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 5.0
+ Text Block
+
+ true
+ false
+ 0.0
+ InspectionStep
+ 0.0
+ {
+ "label" : "Part A: Inspection Assessment",
+ "validationRequired" : true,
+ "previousLabel" : "",
+ "previousWidth" : "0",
+ "nextLabel" : "Next",
+ "nextWidth" : 3,
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 2.0
+ Step
+
+
+ true
+ false
+ 0.0
+ IPCreatingAssessmentRecords
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPCreatingAssessmentRecords",
+ "integrationProcedureKey" : "Create_Records",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 22.0
+ Integration Procedure Action
+
+
+ true
+ false
+ 0.0
+ IPMergingforPartBCAT
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPMergingforPartBCAT",
+ "integrationProcedureKey" : "IPMergingfor_PartBCAT",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "CATAssessment",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 13.0
+ Integration Procedure Action
+
+
+ true
+ false
+ 0.0
+ IPMergingList
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPMergingList",
+ "integrationProcedureKey" : "IPMerging_List",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "SingleListJSON",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 5.0
+ Integration Procedure Action
+
+
+ false
+ false
+ 0.0
+ IPMergingList_ForRCV
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPMergingList_ForRCV",
+ "integrationProcedureKey" : "IPMergingList_ForRCV",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "SingleListForRCVJSON",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 23.0
+ Integration Procedure Action
+
+
+ true
+ false
+ 0.0
+ IPMergingListForScopeSeverity
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPMergingListForScopeSeverity",
+ "integrationProcedureKey" : "IPMergingList_ForScopeSeverity",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "UpdatedListJSON",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 3.0
+ Integration Procedure Action
+
+
+ true
+ false
+ 0.0
+ IPMergingListIAI
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "IPMergingListIAI",
+ "integrationProcedureKey" : "IPMergingList_ForIAI",
+ "useContinuation" : false,
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "useFuture" : false,
+ "chainable" : false
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "IAISingleJSON",
+ "extraPayload" : { },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 20.0
+ Integration Procedure Action
+
+
+ false
+ false
+ 0.0
+ NavigateAction1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "NavigateAction1",
+ "validationRequired" : "Submit",
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "pubsub" : false,
+ "message" : { },
+ "targetType" : "Record",
+ "objectAction" : "home",
+ "recordAction" : "view",
+ "loginAction" : "login",
+ "targetFilter" : "Recent",
+ "targetId" : "%ContextId%",
+ "variant" : "brand",
+ "iconName" : "",
+ "iconVariant" : "",
+ "iconPosition" : "left",
+ "replace" : false,
+ "targetLWCLayout" : "lightning",
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 26.0
+ Navigate Action
+
+
+
+ true
+ false
+ 1.0
+ Formula1
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula1",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(COUNT(%CATAssessment:comments%), COUNT(%UpdatedJSONScore:comments%)) == COUNT(%CATAssessment:Id%)",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 2.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ Formula4
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Formula4",
+ "showInputWidth" : false,
+ "inputWidth" : 12,
+ "expression" : "SUM(COUNT(%CATAssessment:score%), COUNT(%UpdatedJSONScore:Value%)) == COUNT(%CATAssessment:Id%)",
+ "hide" : true,
+ "show" : null,
+ "mask" : null,
+ "dataType" : "Boolean",
+ "hideGroupSep" : false,
+ "dateFormat" : "MM-dd-yyyy",
+ "HTMLTemplateId" : "",
+ "disOnTplt" : false
+}
+ 3.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ Formula6
+ 0.0
+ {
+ "disOnTplt" : false,
+ "HTMLTemplateId" : "",
+ "dateFormat" : "MM-dd-yyyy",
+ "hideGroupSep" : false,
+ "dataType" : "Boolean",
+ "mask" : null,
+ "show" : null,
+ "hide" : true,
+ "expression" : "AND(COUNT(%CATAssessment:score%) == COUNT(%CATAssessment:Id%), COUNT(%CATAssessment:comments%) == COUNT(%CATAssessment:Id%))",
+ "inputWidth" : 12,
+ "showInputWidth" : false,
+ "label" : "Formula6",
+ "controlWidth" : 12
+}
+ 4.0
+ Formula
+
+
+ true
+ false
+ 1.0
+ operationAssessmentRecords
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "operationAssessmentRecords",
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "hide" : false,
+ "lwcName" : "operationAssessmentRecords",
+ "bStandalone" : true,
+ "customAttributes" : [ {
+ "name" : "CATAssessmentJSON",
+ "source" : "%CATAssessment%"
+ } ]
+}
+ 1.0
+ Custom Lightning Web Component
+
+
+ true
+ false
+ 1.0
+ Show Error Message for Score
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "Show Error Message for Score",
+ "validateExpression" : {
+ "group" : {
+ "operator" : "OR",
+ "rules" : [ {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "field" : "Formula1",
+ "condition" : "=",
+ "data" : "true"
+ }, {
+ "field" : "Formula4",
+ "condition" : "=",
+ "data" : "true"
+ } ]
+ }
+ }, {
+ "field" : "Formula6",
+ "condition" : "=",
+ "data" : "true"
+ } ]
+ }
+ },
+ "messages" : [ {
+ "value" : true,
+ "type" : "Success",
+ "text" : "",
+ "active" : false
+ }, {
+ "value" : false,
+ "type" : "Requirement",
+ "text" : "Please fill the required fields. i.e. Score and Comments",
+ "active" : true
+ } ],
+ "hideLabel" : true,
+ "show" : null,
+ "HTMLTemplateId" : ""
+}
+ 0.0
+ Validation
+
+ true
+ false
+ 0.0
+ OperationalHistoryStep
+ 0.0
+ {
+ "label" : "Part B: Operation History Assessment",
+ "validationRequired" : true,
+ "previousLabel" : "Previous",
+ "previousWidth" : "3",
+ "nextLabel" : "Next",
+ "nextWidth" : 3,
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 12.0
+ Step
+
+
+ true
+ false
+ 0.0
+ RAToGetCalculatedValueForInspectionScore
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "RAToGetCalculatedValueForInspectionScore",
+ "remoteClass" : "calculateInspectionScore",
+ "remoteMethod" : "getInspectionScores",
+ "remoteOptions" : {
+ "preTransformBundle" : "",
+ "postTransformBundle" : ""
+ },
+ "remoteTimeout" : 30000,
+ "preTransformBundle" : "",
+ "postTransformBundle" : "",
+ "sendJSONPath" : "",
+ "sendJSONNode" : "",
+ "responseJSONPath" : "",
+ "responseJSONNode" : "",
+ "extraPayload" : {
+ "InspectionId" : "%ContextId%"
+ },
+ "inProgressMessage" : "In Progress",
+ "postMessage" : "Done",
+ "failureNextLabel" : "Continue",
+ "failureAbortLabel" : "Abort",
+ "failureGoBackLabel" : "Go Back",
+ "failureAbortMessage" : "Are you sure?",
+ "validationRequired" : "Step",
+ "redirectPageName" : "",
+ "redirectTemplateUrl" : "vlcAcknowledge.html",
+ "redirectNextLabel" : "Next",
+ "redirectNextWidth" : 3,
+ "redirectPreviousLabel" : "Previous",
+ "redirectPreviousWidth" : 3,
+ "showPersistentComponent" : [ true, false ],
+ "show" : {
+ "group" : {
+ "operator" : "AND",
+ "rules" : [ {
+ "data" : "false",
+ "condition" : "=",
+ "field" : "Formula7"
+ } ]
+ }
+ },
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "svgSprite" : "",
+ "svgIcon" : "",
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "enableDefaultAbort" : false,
+ "enableActionMessage" : false,
+ "useContinuation" : false,
+ "businessCategory" : "",
+ "businessEvent" : "",
+ "sendOnlyExtraPayload" : true
+}
+ 10.0
+ Remote Action
+
+
+ true
+ false
+ 0.0
+ SetValues
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "SetValues1",
+ "elementValueMap" : {
+ "AssignedScore" : "%matrixResult:AssignedScore%",
+ "TotalScore" : "%matrixResult:TotalScore%"
+ },
+ "showPersistentComponent" : [ true, false ],
+ "show" : null,
+ "HTMLTemplateId" : "",
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false
+}
+ 18.0
+ Set Values
+
+
+ true
+ false
+ 0.0
+ SetValuesAssignedScore
+ 0.0
+ {
+ "pubsub" : false,
+ "message" : { },
+ "ssm" : false,
+ "wpm" : false,
+ "HTMLTemplateId" : "",
+ "show" : null,
+ "showPersistentComponent" : [ true, false ],
+ "elementValueMap" : {
+ "AssignedScore" : "%matrixResult:AssignedScore%"
+ },
+ "label" : "SetValuesAssignedScore",
+ "controlWidth" : 12
+}
+ 15.0
+ Set Values
+
+
+
+ true
+ false
+ 1.0
+ SuccessText
+ 0.0
+ {
+ "controlWidth" : 12,
+ "label" : "TextBlock2",
+ "text" : "<p><em><strong><span style=\"color: #2dc26b;\">Risk Assessment Process has been successfully completed.</span></strong></em></p>",
+ "show" : null,
+ "dataJSON" : false,
+ "HTMLTemplateId" : "",
+ "textKey" : "",
+ "sanitize" : false
+}
+ 0.0
+ Text Block
+
+ true
+ false
+ 0.0
+ Success Message
+ 0.0
+ {
+ "label" : "Success Message",
+ "validationRequired" : true,
+ "previousLabel" : "",
+ "previousWidth" : "0",
+ "nextLabel" : "",
+ "nextWidth" : "0",
+ "cancelLabel" : "Cancel",
+ "cancelMessage" : "Are you sure?",
+ "saveLabel" : "Save for later",
+ "saveMessage" : "Are you sure you want to save it for later?",
+ "completeLabel" : "Complete",
+ "completeMessage" : "Are you sure you want to complete the script?",
+ "instruction" : "",
+ "showPersistentComponent" : [ true, false ],
+ "remoteClass" : "",
+ "remoteMethod" : "",
+ "remoteTimeout" : 30000,
+ "remoteOptions" : { },
+ "knowledgeOptions" : {
+ "language" : "English",
+ "publishStatus" : "Online",
+ "keyword" : "",
+ "dataCategoryCriteria" : "",
+ "remoteTimeout" : 30000,
+ "typeFilter" : ""
+ },
+ "show" : null,
+ "conditionType" : "Hide if False",
+ "HTMLTemplateId" : "",
+ "instructionKey" : "",
+ "chartLabel" : null,
+ "allowSaveForLater" : false,
+ "errorMessage" : {
+ "custom" : [ ],
+ "default" : null
+ },
+ "wpm" : false,
+ "ssm" : false,
+ "message" : { },
+ "pubsub" : false,
+ "businessCategory" : "",
+ "businessEvent" : ""
+}
+ 25.0
+ Step
+
+ OmniScript
+ {"persistentComponent":[{"render":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","sendJSONPath":"","sendJSONNode":"","responseJSONPath":"","responseJSONNode":"","id":"vlcCart","itemsKey":"cartItems","modalConfigurationSetting":{"modalHTMLTemplateId":"vlcProductConfig.html","modalController":"ModalProductCtrl","modalSize":"lg"}},{"render":false,"dispOutsideOmni":false,"label":"","remoteClass":"","remoteMethod":"","remoteTimeout":30000,"remoteOptions":{"preTransformBundle":"","postTransformBundle":""},"preTransformBundle":"","postTransformBundle":"","id":"vlcKnowledge","itemsKey":"knowledgeItems","modalConfigurationSetting":{"modalHTMLTemplateId":"","modalController":"","modalSize":"lg"}}],"allowSaveForLater":true,"saveNameTemplate":null,"saveExpireInDays":null,"saveForLaterRedirectPageName":"sflRedirect","saveForLaterRedirectTemplateUrl":"vlcSaveForLaterAcknowledge.html","saveContentEncoded":false,"saveObjectId":"%ContextId%","saveURLPatterns":{},"autoSaveOnStepNext":false,"elementTypeToHTMLTemplateMapping":{},"seedDataJSON":{},"trackingCustomData":{},"enableKnowledge":false,"bLK":false,"lkObjName":null,"knowledgeArticleTypeQueryFieldsMap":{},"timeTracking":false,"hideStepChart":false,"mergeSavedData":false,"visualforcePagesAvailableInPreview":{},"cancelType":"SObject","allowCancel":true,"cancelSource":"%ContextId%","cancelRedirectPageName":"OmniScriptCancelled","cancelRedirectTemplateUrl":"vlcCancelled.html","consoleTabLabel":"New","wpm":false,"ssm":false,"message":{},"pubsub":false,"autoFocus":false,"currencyCode":"","showInputWidth":false,"rtpSeed":false,"consoleTabTitle":null,"consoleTabIcon":"custom:custom18","errorMessage":{"custom":[]},"stylesheet":{"newport":"","lightning":"","newportRtl":"","lightningRtl":""},"stepChartPlacement":"right","disableUnloadWarn":true,"scrollBehavior":"auto","currentLanguage":"en_US"}
+ Assessment
+ Risk
+ Risk_Assessment_English_5
+ 5.0
+ 12609a46-cc4e-6ed4-c7e2-04a0bf985e1b
+
diff --git a/src/main/default/reportTypes/Inspection_Account_Report_Type.reportType-meta.xml b/src/main/default/reportTypes/Inspection_Account_Report_Type.reportType-meta.xml
index 7675469a..f564c879 100644
--- a/src/main/default/reportTypes/Inspection_Account_Report_Type.reportType-meta.xml
+++ b/src/main/default/reportTypes/Inspection_Account_Report_Type.reportType-meta.xml
@@ -91,6 +91,11 @@
Account.LicenseType__c
+
+ false
+ CreatedDate
+
+
Accounts
@@ -104,6 +109,11 @@
BLAContextId__c
+
+ false
+ Status
+
+
Inspections
diff --git a/src/main/default/reports/ALRAdministrativeReports.reportFolder-meta.xml b/src/main/default/reports/ALRAdministrativeReports.reportFolder-meta.xml
new file mode 100644
index 00000000..66a27e16
--- /dev/null
+++ b/src/main/default/reports/ALRAdministrativeReports.reportFolder-meta.xml
@@ -0,0 +1,24 @@
+
+
+
+ Manage
+ ALRAdminUsersPG
+ Group
+
+
+ Manage
+ ALRDataAnalystUsersPG
+ Group
+
+
+ View
+ ALRLeadershipUsersPG
+ Group
+
+
+ View
+ ALRRegistrarUsersPG
+ Group
+
+ ALR Administrative Reports
+
diff --git a/src/main/default/reports/ALRLeadershipReports.reportFolder-meta.xml b/src/main/default/reports/ALRLeadershipReports.reportFolder-meta.xml
index befd85ea..5529f34f 100644
--- a/src/main/default/reports/ALRLeadershipReports.reportFolder-meta.xml
+++ b/src/main/default/reports/ALRLeadershipReports.reportFolder-meta.xml
@@ -10,11 +10,6 @@
ALRDataAnalystUsersPG
Group
-
- View
- ALRInvestigatorUsersPG
- Group
-
View
ALRLeadershipUsersPG
diff --git a/src/main/default/reports/ALRUserReports.reportFolder-meta.xml b/src/main/default/reports/ALRUserReports.reportFolder-meta.xml
new file mode 100644
index 00000000..7196ad79
--- /dev/null
+++ b/src/main/default/reports/ALRUserReports.reportFolder-meta.xml
@@ -0,0 +1,29 @@
+
+
+
+ Manage
+ ALRAdminUsersPG
+ Group
+
+
+ Manage
+ ALRDataAnalystUsersPG
+ Group
+
+
+ View
+ ALRInvestigatorUsersPG
+ Group
+
+
+ View
+ ALRLeadershipUsersPG
+ Group
+
+
+ View
+ ALRRegistrarUsersPG
+ Group
+
+ ALR User Reports
+
diff --git a/src/main/default/reports/DashboardReportsAdoption.reportFolder-meta.xml b/src/main/default/reports/DashboardReportsAdoption.reportFolder-meta.xml
new file mode 100644
index 00000000..c1e7ec3c
--- /dev/null
+++ b/src/main/default/reports/DashboardReportsAdoption.reportFolder-meta.xml
@@ -0,0 +1,9 @@
+
+
+
+ Manage
+ admin-dsa1iqqe0xtm@example.com
+ User
+
+ Dashboard Reports - Adoption
+
diff --git a/src/main/default/reports/MMHAReports.reportFolder-meta.xml b/src/main/default/reports/MMHAReports.reportFolder-meta.xml
index 54afef93..538b9f7a 100644
--- a/src/main/default/reports/MMHAReports.reportFolder-meta.xml
+++ b/src/main/default/reports/MMHAReports.reportFolder-meta.xml
@@ -1,5 +1,10 @@
+
+ Manage
+ ALRDataAnalystUsersPG
+ Group
+
View
ALR_MMHA_Users_PG
diff --git a/src/main/default/reports/SDPRReports.reportFolder-meta.xml b/src/main/default/reports/SDPRReports.reportFolder-meta.xml
index d95fabab..022fd4d7 100644
--- a/src/main/default/reports/SDPRReports.reportFolder-meta.xml
+++ b/src/main/default/reports/SDPRReports.reportFolder-meta.xml
@@ -11,4 +11,4 @@
Group
SDPR Reports
-
\ No newline at end of file
+
diff --git a/src/main/default/reports/Sales_Marketing_Reports.reportFolder-meta.xml b/src/main/default/reports/Sales_Marketing_Reports.reportFolder-meta.xml
new file mode 100644
index 00000000..bb244ca0
--- /dev/null
+++ b/src/main/default/reports/Sales_Marketing_Reports.reportFolder-meta.xml
@@ -0,0 +1,9 @@
+
+
+
+ Manage
+ admin-dsa1iqqe0xtm@example.com
+ User
+
+ Sales & Marketing Dashboards Reports
+
diff --git a/src/main/default/reports/Service_Dashboards_Reports.reportFolder-meta.xml b/src/main/default/reports/Service_Dashboards_Reports.reportFolder-meta.xml
new file mode 100644
index 00000000..c6e1788c
--- /dev/null
+++ b/src/main/default/reports/Service_Dashboards_Reports.reportFolder-meta.xml
@@ -0,0 +1,9 @@
+
+
+
+ Manage
+ admin-dsa1iqqe0xtm@example.com
+ User
+
+ Service Dashboards Reports
+
diff --git a/src/main/default/sharingRules/AssessmentTask.sharingRules-meta.xml b/src/main/default/sharingRules/AssessmentTask.sharingRules-meta.xml
index b2ff8142..26291b1f 100644
--- a/src/main/default/sharingRules/AssessmentTask.sharingRules-meta.xml
+++ b/src/main/default/sharingRules/AssessmentTask.sharingRules-meta.xml
@@ -1,11 +1,12 @@
- AssessmentTaskSharingRuleALRMMHAUser
- Read
-
+ Assessment_Task_Sharing_Rule_ALR_Data_Analyst_PG
+ Edit
+ ALR 1582
+
- ALR_MMHA_Users_PG
+ ALRDataAnalystUsersPG
Name
@@ -14,29 +15,4 @@
true
-
- Assessment_Task_SharingRule_ALR_SDPR_User
- Read
-
-
- ALR_SDPR_User_PG
-
-
- Name
- notEqual
-
-
- true
-
-
- ALR_Sharing_for_Owner
- Read
-
-
- ALRAllUsersPG
-
-
- ALRAllUsersPG
-
-
diff --git a/src/main/default/sharingRules/BusinessMilestone.sharingRules-meta.xml b/src/main/default/sharingRules/BusinessMilestone.sharingRules-meta.xml
new file mode 100644
index 00000000..f6624999
--- /dev/null
+++ b/src/main/default/sharingRules/BusinessMilestone.sharingRules-meta.xml
@@ -0,0 +1,15 @@
+
+
+
+ Sharing_with_All_ALR_users
+ Read
+ ALR-990
+
+
+ ALRAllUsersPG
+
+
+ ALRAllUsersPG
+
+
+
diff --git a/src/main/default/sharingRules/Case.sharingRules-meta.xml b/src/main/default/sharingRules/Case.sharingRules-meta.xml
index b0f7f77d..e70cea04 100644
--- a/src/main/default/sharingRules/Case.sharingRules-meta.xml
+++ b/src/main/default/sharingRules/Case.sharingRules-meta.xml
@@ -1,114 +1,9 @@
-
- CaseComplaintSharingRuleALRDataAnalyst
- Edit
- Read/Write access to Public Complaint Case record type to ALR Data Analyst - ALR-77
-
-
- ALRDataAnalystUsersPG
-
-
- RecordTypeId
- equals
- Complaint
-
- true
-
-
- CaseComplaintSharingRuleALRRegistrator
- Edit
- Read/Write access to Public Complaint Case record type to ALR Registrar - ALR-46
-
-
- ALRRegistrarUsersPG
-
-
- RecordTypeId
- equals
- Complaint
-
- true
-
-
- CaseIncidentSharingRuleALRAdmin
- Edit
- Edit access to Reportable Incident Case record type to ALR Admin - ALR-89
-
-
- ALRAdminUsersPG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
-
- CaseIncidentSharingRuleALRInvestigator
- Edit
- Edit access to Reportable Incident Case record type to ALR Investigator - ALR-89
-
-
- ALRInvestigatorUsersPG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
-
- CaseIncidentSharingRuleALRLeadership
- Edit
- Edit access to Reportable Incident Case record type to ALR Leadership - ALR-89
-
-
- ALRLeadershipUsersPG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
-
- CaseIncidentSharingRuleMMHAUser
- Read
- Share RI Case to MMHA User
-
-
- ALR_MMHA_Users_PG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
-
- CaseSharingRuleALRAdmin
- Edit
- Read/Write access to Public Complaint Case record type to ALR Admin - ALR-352/266
-
-
- ALRAdminUsersPG
-
-
- RecordTypeId
- equals
- Complaint
-
- true
-
CaseSharingRuleALRDataAnalyst
- Read
- Read access to Reportable Incident Case record type to ALR Data Analyst - ALR-352
+ Edit
+ Read access to Reportable Incident Case record type to ALR Data Analyst - ALR-352. Adding edit access as per ALR 1582
ALRDataAnalystUsersPG
@@ -120,63 +15,4 @@
true
-
- CaseSharingRuleALRInvestigator
- Edit
- Read/Write access to Public Complaint Case record type to ALR Investigator - ALR-352/266
-
-
- ALRInvestigatorUsersPG
-
-
- RecordTypeId
- equals
- Complaint
-
- true
-
-
- CaseSharingRuleALRLeadership
- Edit
- Read/Write access to Public Complaint Case record type to ALR Leadership - ALR-352/266
-
-
- ALRLeadershipUsersPG
-
-
- RecordTypeId
- equals
- Complaint
-
- true
-
-
- CaseSharingRuleALRRegistrar
- Read
- Read access to Reportable Incident Case record type to ALR Registrar - ALR-352
-
-
- ALRRegistrarUsersPG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
-
- Case_Incident_Sharing_Rule_SDPR_User
- Read
-
-
- ALR_SDPR_User_PG
-
-
- RecordTypeId
- equals
- Reportable Incident
-
- true
-
diff --git a/src/main/default/sharingRules/RegulatoryCodeViolation.sharingRules-meta.xml b/src/main/default/sharingRules/RegulatoryCodeViolation.sharingRules-meta.xml
index c8fba32a..be82815a 100644
--- a/src/main/default/sharingRules/RegulatoryCodeViolation.sharingRules-meta.xml
+++ b/src/main/default/sharingRules/RegulatoryCodeViolation.sharingRules-meta.xml
@@ -40,4 +40,16 @@
ALRAllUsersPG
+
+ Regulatory_Code_Violation_Sharing_Rule_ALR_DataAnalysts_PG
+ Edit
+ Giving ALR Data analyst access to CRE on ALR violations - ALR 1582
+
+
+ ALRDataAnalystUsersPG
+
+
+ ALRAllUsersPG
+
+
diff --git a/src/main/default/sharingRules/Visit.sharingRules-meta.xml b/src/main/default/sharingRules/Visit.sharingRules-meta.xml
index 184f59a0..59d338e9 100644
--- a/src/main/default/sharingRules/Visit.sharingRules-meta.xml
+++ b/src/main/default/sharingRules/Visit.sharingRules-meta.xml
@@ -1,19 +1,5 @@
-
- InspectionSharingRuleALRAdminUsersPG
- Edit
-
-
- ALRAdminUsersPG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
InspectionSharingRuleALRDataAnalystUsersPG
Edit
@@ -28,74 +14,4 @@
true
-
- InspectionSharingRuleALRInvestigatorUsersPG
- Read
-
-
- ALRInvestigatorUsersPG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
-
- InspectionSharingRuleALRLeadershipUsersPG
- Read
-
-
- ALRLeadershipUsersPG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
-
- InspectionSharingRuleALRMMHAUser
- Read
-
-
- ALR_MMHA_Users_PG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
-
- InspectionSharingRuleALRRegistrarUsersPG
- Read
-
-
- ALRRegistrarUsersPG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
-
- Inspection_Sharing_Rule_ALR_SDPR_User
- Read
-
-
- ALR_SDPR_User_PG
-
-
- RecordTypeId
- equals
- Inspection
-
- true
-
diff --git a/src/main/default/standardValueSets/BusinessMilestoneType.standardValueSet-meta.xml b/src/main/default/standardValueSets/BusinessMilestoneType.standardValueSet-meta.xml
new file mode 100644
index 00000000..012e1221
--- /dev/null
+++ b/src/main/default/standardValueSets/BusinessMilestoneType.standardValueSet-meta.xml
@@ -0,0 +1,34 @@
+
+
+ false
+
+ CURR Application in Progress
+ false
+
+
+
+ CURR Not in Compliance
+ false
+
+
+
+ CURR in Compliance
+ false
+
+
+
+ CURR SIU Referral
+ false
+
+
+
+ Follow-up Inspection(s)
+ false
+
+
+
+ CURR Final Type
+ false
+
+
+
diff --git a/src/main/default/triggers/Inspectiontrigger.trigger b/src/main/default/triggers/Inspectiontrigger.trigger
new file mode 100644
index 00000000..8e1ab4ca
--- /dev/null
+++ b/src/main/default/triggers/Inspectiontrigger.trigger
@@ -0,0 +1,17 @@
+/**
+* @Name : Inspectiontrigger
+* @Description : trigger for Regulatory Code Violation Records Creation
+* @Author : Anilkumar (Accenture)
+* @StoryNo : ALR-1291 & ALR-1173
+**/
+trigger Inspectiontrigger on Visit (after update) {
+ List completedVisits = New List();
+ if(Trigger.isAfter && Trigger.isUpdate){
+ for(Visit insp : trigger.new){
+ if(insp.status == 'Completed'&& Trigger.oldMap.get(insp.Id).Status != 'Completed'){
+ RCVCreationHelper.createRegulatoryCodeViolations(insp.Id);
+ }
+ }
+
+}
+}
\ No newline at end of file
diff --git a/src/main/default/triggers/Inspectiontrigger.trigger-meta.xml b/src/main/default/triggers/Inspectiontrigger.trigger-meta.xml
new file mode 100644
index 00000000..9d9fc96d
--- /dev/null
+++ b/src/main/default/triggers/Inspectiontrigger.trigger-meta.xml
@@ -0,0 +1,5 @@
+
+
+ 60.0
+ Active
+
diff --git a/src/main/default/workflows/BusinessLicenseApplication.workflow-meta.xml b/src/main/default/workflows/BusinessLicenseApplication.workflow-meta.xml
index b95c59e0..2aa01cee 100644
--- a/src/main/default/workflows/BusinessLicenseApplication.workflow-meta.xml
+++ b/src/main/default/workflows/BusinessLicenseApplication.workflow-meta.xml
@@ -1,5 +1,15 @@
+
+ ALR_ApproverName
+ Approver_Name__c
+ LastModifiedBy.FirstName & LastModifiedBy.LastName
+ ALR ApproverName
+ false
+ Formula
+ false
+ false
+
ApprovalFieldUpdate
Updates Status of BLA to "Approved" if approver approves the record - ALR-204
@@ -11,6 +21,37 @@
false
false
+
+ ApprovedDateFieldUpdate
+ Update Approved Date of BLA once Approved - ALR-204
+ ApprovedDate
+ NOW()
+ Approved Date Field Update
+ false
+ Formula
+ false
+ false
+
+
+ ApproverName
+ Description
+ LastModifiedBy.FirstName & LastModifiedBy.LastName
+ ApproverName
+ false
+ Formula
+ false
+ false
+
+
+ ApproverName1
+ Description
+ LastModifiedBy.FirstName & LastModifiedBy.LastName
+ ApproverName1
+ false
+ Formula
+ false
+ false
+
OnSubmitFieldUpdate
Update Application Status to "Pending Approval" immediately after Submit for Approval is clicked - ALR-204
@@ -64,17 +105,6 @@
false
false
-
- ApprovedDateFieldUpdate
- Update Approved Date of BLA once Approved - ALR-204
- ApprovedDate
- NOW()
- Approved Date Field Update
- false
- Formula
- false
- false
-
BLAApprovalTaskAction
owner
@@ -83,6 +113,6 @@
Normal
false
Not Started
- Unit Fee Invoice and Follow-up with Webservices
-
+ Send Unit Invoice to Registrant Primary Contact
+