Hi,
I have a function to validate start date and end date.
I use the setValidationConfig function to set the fields with the validation finction.
For some reason the setValidationConfig function is not even firing (added a log to check this)
These function are added to the ProjectPageV2 schema.
I have the almost exact same functions on the OrderPageV2 and there it works.
Any ideas?
methods: {
implementationStartEndValidator: function() {
console.log("implementationStartEndValidator!!!!!!!!!!!");
var invalidMessage = "";
var StartDate = this.get("UsrStartDate");
var EndDate = this.get("UsrEndDate");
if(StartDate > EndDate)
{
console.log("StartDate and EndDate",StartDate," ",EndDate);
invalidMessage = this.get("Resources.Strings.ImplementationStartEndValidator");
}
return {
invalidMessage: invalidMessage
};
},
// Redefining the base method initiating custom validators.
setValidationConfig: function() {
console.log("Got Here!!!!!!!!!!!setValidationConfig");
this.callParent(arguments);
this.addColumnValidator("UsrEndDate", this.implementationStartEndValidator);
this.addColumnValidator("UsrStartDate", this.implementationStartEndValidator);
},
Like
Chani Karel,
thank you! There is a duplicated setValidationConfig method in your schema methods (rows 1531 and 1656). Please make sure it's declared once, save the schema and check the result after that.
Best regards,
Oscar
Hi Chani,
The validator worked perfectly in my ProjectPageV2:
In case you have several edit pages for the "Project" section you also need to add this validator to all these edit pages to make sure it triggers. Additionally to it check if the code doesn't contain an error and the start and end date fields are called "UsrStartDate" and "UsrEndDate".
Best regards,
Oscar
Oscar Dylan,
I do have 2 edit pages for the project section, added the functions to other edit page but still not working.
I have no errors in the functions and the fields are called "UsrStartDate" and "UsrEndDate".
What else can be the issue?
Chani Karel,
please send a complete code of one of those edit pages, I will try this on my local app.
Best regards,
Oscar
Oscar Dylan,
define("ProjectPageV2", ["MultiChoiceMixin"], function() {
return {
entitySchemaName: "Project",
attributes: {
"UsrWelcomeEmailContact": {
dataValueType: this.Terrasoft.DataValueType.LOOKUP,
"lookupListConfig": {
"filters": [
function() {
var recordId = this.get("Id");
var filterGroup = new this.Terrasoft.createFilterGroup();
filterGroup.logicalOperation = this.Terrasoft.LogicalOperatorType.AND;
filterGroup.add("Project", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "UsrImplementationPlan", recordId));
return filterGroup;
}
]
}
}
},
mixins: {
MultiChoiceMixin: "Terrasoft.MultiChoiceMixin"
},
modules: /**SCHEMA_MODULES*/{
"Chart0800e668-ec7b-404c-8924-d1f0edcd21bf": {
"moduleId": "Chart0800e668-ec7b-404c-8924-d1f0edcd21bf",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Chart0800e668-ec7b-404c-8924-d1f0edcd21bf",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Chartaaf0037e-3551-49f6-b247-be9dab32e4c6": {
"moduleId": "Chartaaf0037e-3551-49f6-b247-be9dab32e4c6",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Chartaaf0037e-3551-49f6-b247-be9dab32e4c6",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Chart61f8f60e-e160-48ea-a078-ed1b8ba244ac": {
"moduleId": "Chart61f8f60e-e160-48ea-a078-ed1b8ba244ac",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Chart61f8f60e-e160-48ea-a078-ed1b8ba244ac",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Chart9adebab1-fe92-405e-99f7-0e87ccba2410": {
"moduleId": "Chart9adebab1-fe92-405e-99f7-0e87ccba2410",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Chart9adebab1-fe92-405e-99f7-0e87ccba2410",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gaugecd647b44-e1c7-4f97-9a08-0f3d60049471": {
"moduleId": "Gaugecd647b44-e1c7-4f97-9a08-0f3d60049471",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gaugecd647b44-e1c7-4f97-9a08-0f3d60049471",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gauge697bb626-b7ac-4d57-83fc-dab5a0a59d38": {
"moduleId": "Gauge697bb626-b7ac-4d57-83fc-dab5a0a59d38",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gauge697bb626-b7ac-4d57-83fc-dab5a0a59d38",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gauge8e36ac09-5087-4f3a-ac80-4642cce34d3b": {
"moduleId": "Gauge8e36ac09-5087-4f3a-ac80-4642cce34d3b",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gauge8e36ac09-5087-4f3a-ac80-4642cce34d3b",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gaugececdf303-018c-44bc-aa83-e036af31938b": {
"moduleId": "Gaugececdf303-018c-44bc-aa83-e036af31938b",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gaugececdf303-018c-44bc-aa83-e036af31938b",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gaugef356ec3c-2809-4b0f-8fd1-094ee42830ac": {
"moduleId": "Gaugef356ec3c-2809-4b0f-8fd1-094ee42830ac",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gaugef356ec3c-2809-4b0f-8fd1-094ee42830ac",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gauge6fe24e97-b837-4e72-988e-3670125aed31": {
"moduleId": "Gauge6fe24e97-b837-4e72-988e-3670125aed31",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gauge6fe24e97-b837-4e72-988e-3670125aed31",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gauge086390e5-8e44-4288-9bc9-041c7eaa5b40": {
"moduleId": "Gauge086390e5-8e44-4288-9bc9-041c7eaa5b40",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gauge086390e5-8e44-4288-9bc9-041c7eaa5b40",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
},
"Gaugea71a9ebd-8279-4842-a95d-eba612767119": {
"moduleId": "Gaugea71a9ebd-8279-4842-a95d-eba612767119",
"moduleName": "CardWidgetModule",
"config": {
"parameters": {
"viewModelConfig": {
"widgetKey": "Gaugea71a9ebd-8279-4842-a95d-eba612767119",
"recordId": "a0e0e4b7-3b02-4a0a-8751-103eeb692a50",
"primaryColumnValue": {
"getValueMethod": "getPrimaryColumnValue"
}
}
}
}
}
}/**SCHEMA_MODULES*/,
details: /**SCHEMA_DETAILS*/{
"UsrSchemacf00e73eDetail5d3bf252": {
"schemaName": "UsrSchemacf00e73eDetail",
"entitySchemaName": "UsrSchoolInProject",
"filter": {
"detailColumn": "UsrLookup1",
"masterColumn": "Id"
}
},
"UsrSchemacf00e73eDetail7a577bc1": {
"schemaName": "UsrSchemacf00e73eDetail",
"entitySchemaName": "UsrSchoolInProject",
"filter": {
"detailColumn": "UsrLookup1",
"masterColumn": "Id"
}
},
"UsrSchema61243275Detail717bca7c": {
"schemaName": "UsrSchema61243275Detail",
"entitySchemaName": "UsrGoal",
"filter": {
"detailColumn": "UsrProject",
"masterColumn": "Id"
}
},
"UsrSchema119b0a97Detail7f1be439": {
"schemaName": "UsrSchema119b0a97Detail",
"entitySchemaName": "UsrProjectContact",
"filter": {
"detailColumn": "UsrImplementationPlan",
"masterColumn": "Id"
}
},
"UsrSchema49627747Detail6574e539": {
"schemaName": "UsrSchema49627747Detail",
"entitySchemaName": "UsrImplementationPlanEvent",
"filter": {
"detailColumn": "UsrImplementationPlan",
"masterColumn": "Id"
},
"sortColumn": "StartDate",
"sortColumnDirection": 2,
"sortColumnIndex": 0
},
"UsrSchema8a6c01f0Detaild9d4d59d": {
"schemaName": "UsrSchema8a6c01f0Detail",
"entitySchemaName": "UsrIPActivity",
"filter": {
"detailColumn": "UsrIP",
"masterColumn": "Id"
}
},
"OpportunityHistoryActivityDetaild5f80230": {
"schemaName": "OpportunityHistoryActivityDetail",
"entitySchemaName": "Activity",
"filter": {
"detailColumn": "Project",
"masterColumn": "Id"
}
},
"UsrSchemaa1fc78e9Detail8abc40a4": {
"schemaName": "UsrSchemaa1fc78e9Detail",
"entitySchemaName": "UsrEventIP",
"filter": {
"detailColumn": "UsrLookup3",
"masterColumn": "Id"
}
},
"ProjectStructureDetailV2504a12a0": {
"schemaName": "ProjectStructureDetailV2",
"entitySchemaName": "Project",
"filter": {
"detailColumn": "ParentProject",
"masterColumn": "Id"
}
},
"UsrSchemab5f074bdDetaile92b9c60": {
"schemaName": "UsrSchemab5f074bdDetail",
"entitySchemaName": "Account",
"filter": {
"detailColumn": "Id",
"masterColumn": "Account"
}
},
"UsrSchema915cd61aDetail9252e4aa": {
"schemaName": "UsrSchema915cd61aDetail",
"entitySchemaName": "Project",
"filter": {
"detailColumn": "Id",
"masterColumn": "Id"
}
},
"UsrSchema607e5d17Detailf4014c7c": {
"schemaName": "UsrSchema607e5d17Detail",
"entitySchemaName": "Project",
"filter": {
"detailColumn": "Id",
"masterColumn": "Id"
}
},
"UsrSchemabf12124eDetail41dff0a3": {
"schemaName": "UsrSchemabf12124eDetail",
"entitySchemaName": "UsrStatusNotes",
"filter": {
"detailColumn": "UsrProject",
"masterColumn": "Id"
}
},
"UsrSchemae82228e2Detail99ddf41c": {
"schemaName": "UsrSchemae82228e2Detail",
"entitySchemaName": "Activity",
"filter": {
"detailColumn": "Project",
"masterColumn": "Id"
},
"filterMethod": "activityCallFilter"
},
"UsrAccountCalendarDetail": {
"schemaName": "UsrSchemaad1a2577Detail",
"entitySchemaName": "UsrAccountCalendar",
"filter": {
"detailColumn": "UsrAccount",
"masterColumn": "Account"
},
"filterMethod": "accountCalendarFilter"
},
"UsrRelatedAccountUsageSummaryDetailSection": {
"schemaName": "UsrSchemad7dc0e31Detail",
"entitySchemaName": "Account",
"filter": {
"detailColumn": "UsrRelatedAccountsUsageSummaryAccount",
"masterColumn": "Account"
}
},
"UsrSchemae7a2fab5Detail22802b45": {
"schemaName": "UsrSchemae7a2fab5Detail",
"entitySchemaName": "Account",
"filter": {
"detailColumn": "Id",
"masterColumn": "Account"
}
},
"OpportunityHistoryActivityDetaildd2df12b": {
"schemaName": "OpportunityHistoryActivityDetail",
"entitySchemaName": "Activity",
"filter": {
"detailColumn": "Project",
"masterColumn": "Id"
},
"filterMethod": "activityTaskFilter"
},
"UsrSchema394a596bDetail81fba300": {
"schemaName": "UsrSchema394a596bDetail",
"entitySchemaName": "UsrProjectInOrder",
"filter": {
"detailColumn": "UsrProject",
"masterColumn": "Id"
}
},
"UsrSchemab6d7ee12Detailbd6fd734": {
"schemaName": "UsrSchemab6d7ee12Detail",
"entitySchemaName": "UsrProjectInOrder",
"filter": {
"detailColumn": "UsrProject",
"masterColumn": "Id"
}
},
"UsrSchema1caf5016Detail133bc718": {
"schemaName": "UsrSchema1caf5016Detail",
"entitySchemaName": "UsrProjectInOrder",
"filter": {
"detailColumn": "UsrProject",
"masterColumn": "Id"
}
}
}/**SCHEMA_DETAILS*/,
businessRules: /**SCHEMA_BUSINESS_RULES*/{
"Account": {
"9ec8b6c2-8874-45b2-abd7-62a39d30066c": {
"uId": "9ec8b6c2-8874-45b2-abd7-62a39d30066c",
"enabled": true,
"removed": false,
"ruleType": 3,
"property": 1,
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
],
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "Account"
}
}
}
},
"UsrState": {
"e0a98bc9-9d98-4db0-8317-fbaeffd0c821": {
"uId": "e0a98bc9-9d98-4db0-8317-fbaeffd0c821",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrState"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrString1": {
"a2da2592-fc9b-4b0d-a424-c81ca3b5db8b": {
"uId": "a2da2592-fc9b-4b0d-a424-c81ca3b5db8b",
"enabled": true,
"removed": true,
"ruleType": 0,
"property": 0,
"logical": 0,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "UsrRosterType"
},
"rightExpression": {
"type": 0,
"value": "ca880255-6cef-4c82-bd42-7b889bc30a95",
"dataValueType": 10
}
}
]
}
},
"UsrString2": {
"3598860b-ff41-46ff-a710-55f665fc308e": {
"uId": "3598860b-ff41-46ff-a710-55f665fc308e",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "Account.Address"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrOpportunity": {
"9f252e8d-a34d-41d7-a170-ea2f3397815a": {
"uId": "9f252e8d-a34d-41d7-a170-ea2f3397815a",
"enabled": false,
"removed": false,
"ruleType": 0,
"property": 1,
"logical": 0,
"conditions": [
{
"comparisonType": 1,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"Usrproduct": {
"8b5ddb39-2132-4f9a-be90-e04ff7a4baf2": {
"uId": "8b5ddb39-2132-4f9a-be90-e04ff7a4baf2",
"enabled": true,
"removed": true,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "UsrProductsTypes"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrNetOrderToatl": {
"f9a3ffaf-30ff-4385-a24f-3b231543a4da": {
"uId": "f9a3ffaf-30ff-4385-a24f-3b231543a4da",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "UsrFinalTotal"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrOrderStartDate": {
"66e7c0bc-c5e4-44fb-9f4b-0ae5326ca0a1": {
"uId": "66e7c0bc-c5e4-44fb-9f4b-0ae5326ca0a1",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "UsrStartDate"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrOrdeEndDate": {
"45a8209b-db91-444e-aa14-8d398578625a": {
"uId": "45a8209b-db91-444e-aa14-8d398578625a",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "UsrEndDate"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrOtherRoster": {
"38a36cff-e2c4-47c5-bdc3-64082322a4fc": {
"uId": "38a36cff-e2c4-47c5-bdc3-64082322a4fc",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 0,
"logical": 0,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "UsrRosterType"
},
"rightExpression": {
"type": 0,
"value": "ca880255-6cef-4c82-bd42-7b889bc30a95",
"dataValueType": 10
}
}
]
}
},
"UsrOtherSSO": {
"68f8a2a1-2dda-4cb3-b057-74a74cfd698e": {
"uId": "68f8a2a1-2dda-4cb3-b057-74a74cfd698e",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 0,
"logical": 0,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "UsrSSOTYPE"
},
"rightExpression": {
"type": 0,
"value": "a1284fad-eb1b-429f-a7ae-513326930816",
"dataValueType": 10
}
}
]
}
},
"UsrRosteringAdditionalInformation": {
"17d821a9-d6ea-4499-86c8-0bdfc8978b78": {
"uId": "17d821a9-d6ea-4499-86c8-0bdfc8978b78",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 0,
"logical": 0,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "UsrRequireAgreement"
},
"rightExpression": {
"type": 0,
"value": "4ed28cb6-9954-4547-80fe-bb79aeee99a1",
"dataValueType": 10
}
}
]
}
},
"UsrDistrictWebsite": {
"1b7fd611-f639-496e-b080-42ff516e0fd8": {
"uId": "1b7fd611-f639-496e-b080-42ff516e0fd8",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "Account",
"attributePath": "Web"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrConfirmedPURL": {
"b17dfaff-9a5f-4991-9fad-d5de1b3463bc": {
"uId": "b17dfaff-9a5f-4991-9fad-d5de1b3463bc",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "Account",
"attributePath": "UsrBeabePURL"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrCurriculumStartDate": {
"beb6d628-4c0a-43f3-8201-d1027bc0881c": {
"uId": "beb6d628-4c0a-43f3-8201-d1027bc0881c",
"enabled": true,
"removed": true,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOrderStartDate"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOrderStartDate"
}
}
]
}
},
"UsrCurriculumEndDate": {
"fae7c096-2241-4607-a2ee-0becba771820": {
"uId": "fae7c096-2241-4607-a2ee-0becba771820",
"enabled": true,
"removed": true,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOrdeEndDate"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOrdeEndDate"
}
}
]
}
},
"UsrLookup9": {
"bdb217ac-c568-47cc-bfc9-8133ea9bca2e": {
"uId": "bdb217ac-c568-47cc-bfc9-8133ea9bca2e",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 2,
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "Name"
}
}
]
},
"264c90d4-ee5b-4c3c-a7ba-389f74d4d339": {
"uId": "264c90d4-ee5b-4c3c-a7ba-389f74d4d339",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrDefaultSchoolYear"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrSemester": {
"2ba1c148-83ab-4bd5-b634-c8e4470e0462": {
"uId": "2ba1c148-83ab-4bd5-b634-c8e4470e0462",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 2,
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "Name"
}
}
]
},
"28a0f4a8-4230-4fa6-9233-55d92953dc77": {
"uId": "28a0f4a8-4230-4fa6-9233-55d92953dc77",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrDefaultSemester"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrReseller": {
"5f4431fa-5a73-42ed-8f25-ea5048709f2f": {
"uId": "5f4431fa-5a73-42ed-8f25-ea5048709f2f",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "UsrReseller"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
},
"31ddd518-34fa-420c-8a33-c53d788f4b99": {
"uId": "31ddd518-34fa-420c-8a33-c53d788f4b99",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrReseller"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedAdvisoryTime": {
"8527a58d-343d-4281-8ce3-45f106569e00": {
"uId": "8527a58d-343d-4281-8ce3-45f106569e00",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrAdvisoryTime"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedAfterSchool": {
"402928a0-c76a-4326-b944-21b23192ab17": {
"uId": "402928a0-c76a-4326-b944-21b23192ab17",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrAfterSchool"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedBeableLiteracy": {
"30d0cb83-772e-455a-b987-136be23ee003": {
"uId": "30d0cb83-772e-455a-b987-136be23ee003",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBeableLiteracy"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedBeableTestAhead": {
"1d06cccd-7e08-4f10-a079-ab7fd0bb294c": {
"uId": "1d06cccd-7e08-4f10-a079-ab7fd0bb294c",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBeableTestAhead"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedBeableWOW": {
"3632cc00-71a7-46f8-a631-669a50af53c7": {
"uId": "3632cc00-71a7-46f8-a631-669a50af53c7",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBeableWoW"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedCareerCourse": {
"9643e651-30d8-4b7c-81ed-e4ef5a5ce43f": {
"uId": "9643e651-30d8-4b7c-81ed-e4ef5a5ce43f",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrCareerCourse"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedCivics": {
"252c706e-2f73-4bd5-86c3-01cd13c128de": {
"uId": "252c706e-2f73-4bd5-86c3-01cd13c128de",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBooleanCivics"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedELAClasses": {
"33f2a040-a7fe-4b5b-98bb-71bf621a8e5a": {
"uId": "33f2a040-a7fe-4b5b-98bb-71bf621a8e5a",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrELAClasses"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedELL": {
"4a5a4836-ce1f-486b-a123-3720660cb254": {
"uId": "4a5a4836-ce1f-486b-a123-3720660cb254",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBooleanELL"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedGiftedAndTalented": {
"d67af846-0e79-4c41-95fb-db8b2eb35c09": {
"uId": "d67af846-0e79-4c41-95fb-db8b2eb35c09",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBooleanGiftedTalented"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedInterventionPeriodRTI": {
"8bb32760-ef79-4c33-a340-81f7ba1a448e": {
"uId": "8bb32760-ef79-4c33-a340-81f7ba1a448e",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrInterventionPeriodRTI"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedSPED": {
"fdda303a-ed90-48d1-9f75-f3d31367ff53": {
"uId": "fdda303a-ed90-48d1-9f75-f3d31367ff53",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrBooleanSPED"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedSummer": {
"614a3ec6-49f7-4429-ac71-99499b03ca2f": {
"uId": "614a3ec6-49f7-4429-ac71-99499b03ca2f",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrSummer"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"Name": {
"3f94f01d-e114-4c37-828f-5a7f6b77d8a9": {
"uId": "3f94f01d-e114-4c37-828f-5a7f6b77d8a9",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "Title"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"Type": {
"BindParameterRequiredTypeToProjectEntryType": {
"uId": "aad883b2-29d0-45a2-af75-744d0792b4d6",
"enabled": true,
"ruleType": 0,
"property": 2,
"logical": 0,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "ProjectEntryType"
},
"rightExpression": {
"type": 0,
"value": "6b4928d7-456a-4acd-a863-3361d46b7649",
"dataValueType": 10
}
}
]
}
},
"UsrDateStatusChanged": {
"cfef750b-4cb2-4ab4-9ee7-f545bf4bc2ed": {
"uId": "cfef750b-4cb2-4ab4-9ee7-f545bf4bc2ed",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 6,
"formula": {
"type": 2,
"dataType": 7,
"code": "GETDATE",
"arguments": []
}
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOverallStatus"
}
}
]
}
},
"UsrOrderCloseDate": {
"84f81258-689c-4b29-82d1-d03878c330fe": {
"uId": "84f81258-689c-4b29-82d1-d03878c330fe",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "ActualDate"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrSalesRep": {
"c911322e-572d-439e-961a-9bb9459a0507": {
"uId": "c911322e-572d-439e-961a-9bb9459a0507",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrLookup2",
"attributePath": "Owner"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrLookup2"
}
}
]
}
},
"UsrWelcomeEmailContact": {
"a830e8fe-b9ca-411b-9351-ee023905cd92": {
"uId": "a830e8fe-b9ca-411b-9351-ee023905cd92",
"enabled": true,
"removed": false,
"ruleType": 1,
"baseAttributePatch": "UsrImplementationPlan",
"comparisonType": 3,
"autoClean": false,
"autocomplete": false,
"type": 1,
"attribute": "ParentProject"
},
"d91844b3-9824-453c-b168-a82428f78a23": {
"uId": "d91844b3-9824-453c-b168-a82428f78a23",
"enabled": true,
"removed": false,
"ruleType": 1,
"baseAttributePatch": "UsrImplementationPlan",
"comparisonType": 3,
"autoClean": false,
"autocomplete": false,
"type": 1,
"attribute": "ParentProject"
}
},
"UsrRosteringNotes": {
"f5550121-e194-4442-b98f-13dd7666c85b": {
"uId": "f5550121-e194-4442-b98f-13dd7666c85b",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "Name"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 4,
"leftExpression": {
"type": 1,
"attribute": "Name"
},
"rightExpression": {
"type": 0,
"value": "44",
"dataValueType": 1
}
},
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "Owner"
},
"rightExpression": {
"type": 0,
"value": "29b85092-16e6-47b8-92a6-665106992472",
"dataValueType": 10
}
}
]
}
},
"UsrRelatedAccountUsageSummaryDetailSection": {
"e9d5c22c-17ba-487d-9171-be3e4196f1c1": {
"uId": "e9d5c22c-17ba-487d-9171-be3e4196f1c1",
"enabled": true,
"removed": false,
"ruleType": 0,
"property": 0,
"logical": 1,
"conditions": [
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "Account",
"attributePath": "Type"
},
"rightExpression": {
"type": 0,
"value": "9700969d-5ceb-4abd-bd06-6316bae0f540",
"dataValueType": 10
}
},
{
"comparisonType": 3,
"leftExpression": {
"type": 1,
"attribute": "Account",
"attributePath": "Type"
},
"rightExpression": {
"type": 0,
"value": "f7f2cf34-2a70-4f51-8679-8764eaf108de",
"dataValueType": 10
}
}
]
}
},
"UsrNeedSAT": {
"397e20e9-50c7-4027-bbd1-893c3f7841e5": {
"uId": "397e20e9-50c7-4027-bbd1-893c3f7841e5",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrNeedSAT"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
},
"UsrNeedACT": {
"2e59c16d-6bde-4776-8a4f-18ae53b9d151": {
"uId": "2e59c16d-6bde-4776-8a4f-18ae53b9d151",
"enabled": true,
"removed": false,
"ruleType": 3,
"populatingAttributeSource": {
"expression": {
"type": 1,
"attribute": "UsrOpportunity",
"attributePath": "UsrNeedACT"
}
},
"logical": 0,
"conditions": [
{
"comparisonType": 2,
"leftExpression": {
"type": 1,
"attribute": "UsrOpportunity"
}
}
]
}
}
}/**SCHEMA_BUSINESS_RULES*/,
methods: {
implementationStartEndValidator: function() {
console.log("Here!!!!!!!!!!!");
var invalidMessage = "";
var StartDate = this.get("UsrStartDate");
var EndDate = this.get("UsrEndDate");
if(StartDate > EndDate)
{
console.log("StartDate and EndDate",StartDate," ",EndDate);
invalidMessage = this.get("Resources.Strings.ImplementationStartEndValidator");
}
return {
invalidMessage: invalidMessage
};
},
// Redefining the base method initiating custom validators.
setValidationConfig: function() {
console.log("Here!!!!!!!!!!!setValidationConfig");
this.callParent(arguments);
this.addColumnValidator("UsrEndDate", this.implementationStartEndValidator);
this.addColumnValidator("UsrStartDate", this.implementationStartEndValidator);
},
activityCallFilter: function() {
console.log("activityCallFilter got here!!!!!!!!!!!!!!");
var recordId = this.get("Id");
var filterGroup = new this.Terrasoft.createFilterGroup();
filterGroup.logicalOperation = this.Terrasoft.LogicalOperatorType.AND;
var SubFilterGroup = new this.Terrasoft.createFilterGroup();
SubFilterGroup.logicalOperation = this.Terrasoft.LogicalOperatorType.OR;
SubFilterGroup.add("CallCallFilter", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "ActivityCategory", "e52bd583-7825-e011-8165-00155d043204"));
SubFilterGroup.add("CallTaskFilter", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "ActivityCategory", "03df85bf-6b19-4dea-8463-d5d49b80bb28"));
filterGroup.add("Project", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "Project", recordId));
filterGroup.add(SubFilterGroup);
return filterGroup;
},
activityTaskFilter: function() {
var recordId = this.get("Id");
var filterGroup = new this.Terrasoft.createFilterGroup();
filterGroup.logicalOperation = this.Terrasoft.LogicalOperatorType.AND;
filterGroup.add("Type", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "Type", "fbe0acdc-cfc0-df11-b00f-001d60e938c6"));
filterGroup.add("Project", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "Project", recordId));
return filterGroup;
},
accountCalendarFilter: function() {
var account = this.get("Account");
var schoolYear = this.get("UsrLookup9");
var semester = this.get("UsrSemester");
var filterGroup = new this.Terrasoft.createFilterGroup();
filterGroup.logicalOperation = this.Terrasoft.LogicalOperatorType.AND;
filterGroup.add("account", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "UsrAccount", account));
filterGroup.add("schoolYear", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "UsrAcademicYear", schoolYear));
filterGroup.add("semester", this.Terrasoft.createColumnFilterWithParameter(
this.Terrasoft.ComparisonType.EQUAL, "UsrSemester", semester));
return filterGroup;
},
init: function() {
this.callParent(arguments);
this.mixins.MultiChoiceMixin.init.call(this, arguments);
// register our onProcessMessageReceived function to get messages from the server
Terrasoft.ServerChannel.on(Terrasoft.EventName.ON_MESSAGE, this.onProcessMessageReceived, this);
},
onProcessMessageReceived: function(scope, message) {
var sender = message && message.Header.Sender;
if (sender === "RefreshOrderPage") {
this.reloadEntity();
}
else
if (sender === "CheckIfCanSaveIP") {
var someMessageText = message.Body;
this.reloadEntity();
Terrasoft.showErrorMessage(someMessageText);
this.reloadEntity();
}
},
destroy: function() {
// un-register the function when the page is destroyed so it stops receiving messages
Terrasoft.ServerChannel.un(Terrasoft.EventName.ON_MESSAGE, this.onProcessMessageReceived, this);
this.callParent(arguments);
},
PurlValidator: function() {
// Variable for storing a validation error message.
var invalidMessage = "";
// Checking value in the confirmed PURL columns.
var purl = this.get("UsrConfirmedPURL");
var regex = /^[a-z0-9-]+$/;
var isValid = regex.test(purl);
if(!isValid && purl!="")
{
invalidMessage = this.get("Resources.Strings.PurlValidation");
}
return {
// Validation error message.
invalidMessage: invalidMessage
};
},
RosreringCompleteValidator: function() {
var invalidMessage = "";
var purl = this.get("UsrConfirmedPURL");
var rosterType = this.get("UsrRosterType");
var completedRostering = this.get("UsrRosteringInfoCompleted");
if(completedRostering==true)
{
if(purl=="" && rosterType=="")
{
invalidMessage = "Please fill in Confirmed PURL and Roster type before checking";
}
else
if(purl=="")
{
invalidMessage = "Please fill in Confirmed PURL before checking";
}
else
if(rosterType=="")
{
invalidMessage = "Please fill in Roster type before checking";
}
}
return {
invalidMessage: invalidMessage
};
},
// Redefining the base method initiating custom validators.
setValidationConfig: function() {
// This calls the initialization of validators for the parent view model.
this.callParent(arguments);
// The PurlValidator() validate method is added for the [UsrConfirmedPURL] column.
this.addColumnValidator("UsrConfirmedPURL", this.PurlValidator);
this.addColumnValidator("UsrRosteringInfoCompleted", this.RosreringCompleteValidator);
},
},
dataModels: /**SCHEMA_DATA_MODELS*/{}/**SCHEMA_DATA_MODELS*/,
diff: /**SCHEMA_DIFF*/[
{
"operation": "merge",
"name": "Name",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0
},
"enabled": true
}
},
{
"operation": "remove",
"name": "Name",
"properties": [
"tip"
]
},
{
"operation": "insert",
"name": "Account338f146c-a9dc-4b13-96fc-6286675fe0b7",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "Header"
},
"bindTo": "Account",
"enabled": false,
"contentType": 5
},
"parentName": "Header",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrLookup9fb367361-95e5-4ee2-9afc-3f4474b7126b",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Header"
},
"bindTo": "UsrLookup9",
"enabled": true,
"contentType": 3
},
"parentName": "Header",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrParentAccounteed4d154-32ca-4add-9ab2-111155a2bb1a",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "Header"
},
"bindTo": "UsrParentAccount",
"enabled": false,
"contentType": 5
},
"parentName": "Header",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "LOOKUP8e89630c-225f-49ca-ac23-a61daee20ef7",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Header"
},
"bindTo": "UsrSemester",
"enabled": true,
"contentType": 3
},
"parentName": "Header",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrStatea71e8d92-a633-4a5f-8d3b-989ff6d47aa6",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "Header"
},
"bindTo": "UsrState",
"enabled": false,
"contentType": 5
},
"parentName": "Header",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "Owner944127a0-98e5-4513-9a93-eba2971bc08d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "Header"
},
"bindTo": "Owner"
},
"parentName": "Header",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "LOOKUPc2d94c68-c7fa-4943-90a5-802576b6e5b9",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 3,
"layoutName": "Header"
},
"bindTo": "UsrSalesRep",
"enabled": false,
"contentType": 3
},
"parentName": "Header",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "LOOKUP1bb06cc6-8ab5-44d1-aa22-fe2f86e3c285",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "Header"
},
"bindTo": "UsrImplementationStage",
"enabled": false,
"contentType": 5
},
"parentName": "Header",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "DATETIME09c39cdf-c293-423b-aed3-b550d3233ead",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 4,
"layoutName": "Header"
},
"bindTo": "UsrOrderCloseDate",
"enabled": false
},
"parentName": "Header",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "LOOKUP21ca4206-dcb2-459d-b689-e945cbd4522a",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "Header"
},
"bindTo": "UsrOverallStatus",
"enabled": true,
"contentType": 3
},
"parentName": "Header",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "UsrOrderStartDate42ff6456-5725-443d-a423-2ceb457978a0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 6,
"layoutName": "Header"
},
"bindTo": "UsrOrderStartDate",
"enabled": false
},
"parentName": "Header",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "UsrNetOrderToatlea7c2404-b976-4988-85d4-c2d82a83f5f6",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 6,
"layoutName": "Header"
},
"bindTo": "UsrNetOrderToatl",
"enabled": false
},
"parentName": "Header",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "UsrOrdeEndDate948df03f-9de8-415b-94f9-c0f54bec73bf",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 7,
"layoutName": "Header"
},
"bindTo": "UsrOrdeEndDate",
"enabled": false
},
"parentName": "Header",
"propertyName": "items",
"index": 13
},
{
"operation": "insert",
"name": "Usrproductf08c089e-8ac7-477c-ba14-bc3203a6f208",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 7,
"layoutName": "Header"
},
"bindTo": "Usrproduct"
},
"parentName": "Header",
"propertyName": "items",
"index": 14
},
{
"operation": "insert",
"name": "UsrStartDate54def560-fe0a-49ea-8c68-91e37578ca9c",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 8,
"layoutName": "Header"
},
"bindTo": "UsrStartDate"
},
"parentName": "Header",
"propertyName": "items",
"index": 15
},
{
"operation": "insert",
"name": "UsrEndDatee7730b5e-efed-4adf-a1a8-206d684a8b04",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 8,
"layoutName": "Header"
},
"bindTo": "UsrEndDate"
},
"parentName": "Header",
"propertyName": "items",
"index": 16
},
{
"operation": "merge",
"name": "GeneralInfoTab",
"values": {
"order": 0
}
},
{
"operation": "insert",
"name": "GeneralInfoTabGroupbe7b7445",
"values": {
"caption": {
"bindTo": "Resources.Strings.GeneralInfoTabGroupbe7b7445GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "GeneralInfoTabGridLayoutcf5ebd4d",
"values": {
"itemType": 0,
"items": []
},
"parentName": "GeneralInfoTabGroupbe7b7445",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING6cae6682-83a2-4cf4-b812-b3ae9e4083a3",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrOtherNotesGeneralInfoTab",
"enabled": true,
"contentType": 0
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPba04708a-c491-460b-9cee-531eac419442",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrReseller",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "LOOKUP94f3c8c6-45e7-4554-a8da-fff0083f3436",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrLookup9",
"enabled": true,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "LOOKUP2ea725cd-53f8-46ef-8de5-87494f6618c5",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrBuyerContact",
"enabled": false,
"contentType": 3
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrOpportunity95bebef1-d411-4812-82e1-9b00764eeabd",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrOpportunity",
"enabled": true,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrString1554daa1b-27bb-4cdb-badf-42261acb4df7",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrDistrictWebsite",
"enabled": true
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "STRING449d93e7-8eec-4e29-86b3-c5257218c8ec",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "Usrproduct",
"enabled": true
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "STRINGb7106fa4-f590-41b3-8c6e-2bee4e825c41",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 3,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrDistrictCalendar",
"enabled": true
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "FLOAT4648a5fc-fc8a-45b9-bce9-4ec2f6e0e114",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrNetOrderToatl",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "STRINGe5ec7846-8020-422e-a9de-c322058fd386",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 4,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrConfirmedPURL",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "DATETIME7045e909-7e1e-4e44-826b-65999106cabc",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrOrderStartDate",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "STRING3a194252-1800-435f-a5eb-0a44196403f3",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 5,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrIntendedGrades",
"enabled": true
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "DATETIME5075c780-b4ab-4a67-96df-a87d385e2cdc",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 6,
"layoutName": "GeneralInfoTabGridLayoutcf5ebd4d"
},
"bindTo": "UsrOrdeEndDate",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayoutcf5ebd4d",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "UsrSchema394a596bDetail81fba300",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrSchemacf00e73eDetail7a577bc1",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "GeneralInfoTabGroup3b135494",
"values": {
"caption": {
"bindTo": "Resources.Strings.GeneralInfoTabGroup3b135494GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "GeneralInfoTabGridLayout01c02b5d",
"values": {
"itemType": 0,
"items": []
},
"parentName": "GeneralInfoTabGroup3b135494",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "BOOLEANbc2be657-a951-46ee-8f73-5ea3c94f4f70",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedBeableLiteracy",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANbc2be657a95146ee8f735ea3c94f4f70LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "BOOLEAN7d50d7e6-7692-4e00-8316-0c3a82454a0d",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedBeableTestAhead",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN7d50d7e676924e0083160c3a82454a0dLabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "BOOLEANf60f81e5-c542-4f58-83b4-c64ac2a91e6c",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 1,
"row": 1,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedELL",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANf60f81e5c5424f5883b4c64ac2a91e6cLabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "BOOLEAN4487d8aa-e12b-495f-8189-882599b9423e",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 7,
"row": 1,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedSummer",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN4487d8aae12b495f8189882599b9423eLabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "BOOLEAN788a8091-bd8a-4615-b1ed-484e786aff6f",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 13,
"row": 1,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedACT",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN788a8091bd8a4615b1ed484e786aff6fLabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "BOOLEANbc874580-00e1-4ede-a046-585f24999a88",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 1,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedELAClasses",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANbc87458000e14edea046585f24999a88LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "BOOLEANf9e0bf91-378c-4767-8a84-e8d5d9db2898",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 7,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedInterventionPeriodRTI",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANf9e0bf91378c47678a84e8d5d9db2898LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "BOOLEAN350d21ca-8469-4e29-b104-9aef4aff1c36",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 13,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedSAT",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN350d21ca84694e29b1049aef4aff1c36LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "BOOLEAN160eed4c-08dd-4dfc-8af3-21c191fe1962",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 1,
"row": 3,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedAfterSchool",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN160eed4c08dd4dfc8af321c191fe1962LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "BOOLEANc6ee3d08-0aa2-41b7-bcb0-c9638ba664f0",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 7,
"row": 3,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedAdvisoryTime",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANc6ee3d080aa241b7bcb0c9638ba664f0LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "BOOLEANdabdffcd-5b77-4838-8c88-e3acdfff9681",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 1,
"row": 4,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedCivics",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEANdabdffcd5b7748388c88e3acdfff9681LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "BOOLEAN1b444cc2-97c4-4fba-931d-c6efbcf7b7c7",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 7,
"row": 4,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedSPED",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN1b444cc297c44fba931dc6efbcf7b7c7LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "BOOLEAN26de1679-0143-45b7-a9f4-631579284b34",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 1,
"row": 5,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedBeableWOW",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN26de1679014345b7a9f4631579284b34LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "BOOLEAN65a2023b-68f1-40ba-aea8-e7249f6dbd16",
"values": {
"layout": {
"colSpan": 5,
"rowSpan": 1,
"column": 7,
"row": 5,
"layoutName": "GeneralInfoTabGridLayout01c02b5d"
},
"bindTo": "UsrNeedGiftedAndTalented",
"enabled": true,
"labelConfig": {
"caption": {
"bindTo": "Resources.Strings.BOOLEAN65a2023b68f140baaea8e7249f6dbd16LabelCaption"
}
}
},
"parentName": "GeneralInfoTabGridLayout01c02b5d",
"propertyName": "items",
"index": 13
},
{
"operation": "insert",
"name": "ExecutiveSummaryFieldGrouping",
"values": {
"caption": {
"bindTo": "Resources.Strings.ExecutiveSummaryFieldGroupingGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "GeneralInfoTabGridLayout452e4c38",
"values": {
"itemType": 0,
"items": []
},
"parentName": "ExecutiveSummaryFieldGrouping",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING33b1a02c-f82d-4930-9021-cab4ef53d229",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "GeneralInfoTabGridLayout452e4c38"
},
"bindTo": "UsrWhyInCurrentStatus",
"enabled": true,
"contentType": 0
},
"parentName": "GeneralInfoTabGridLayout452e4c38",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING84b1af32-c2f3-4391-99d4-20ed3d07d233",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout452e4c38"
},
"bindTo": "UsrWhatWeDidSoFar",
"enabled": true,
"contentType": 0
},
"parentName": "GeneralInfoTabGridLayout452e4c38",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "STRING54e309bc-93cd-4542-99cc-6b7de1d32743",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "GeneralInfoTabGridLayout452e4c38"
},
"bindTo": "UsrWhatAreNextStepsForIM",
"enabled": true,
"contentType": 0
},
"parentName": "GeneralInfoTabGridLayout452e4c38",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "GeneralInfoTabGroupc7d844d1",
"values": {
"caption": {
"bindTo": "Resources.Strings.GeneralInfoTabGroupc7d844d1GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "GeneralInfoTab",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "GeneralInfoTabGridLayout8bbd0ce0",
"values": {
"itemType": 0,
"items": []
},
"parentName": "GeneralInfoTabGroupc7d844d1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrLatestStatusNoteText6622b3f6e-2586-4242-af1d-730aa6629d23",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrLatestStatusNote",
"enabled": false,
"contentType": 0
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPf7c76a60-f977-49f8-979a-d7371083ebbb",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrPlanningStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "DATETIME28064862-ae93-484d-b43e-30fb29c1240c",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDatePlanning",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "DATETIMEe8d10324-797c-4a50-bb52-ae67d49499fa",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDateStatusChanged",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "LOOKUP9b730bfb-393b-43cb-a152-79881f104686",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrRosteringStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "DATETIME3379e95f-c1d9-43e3-b0db-c1ac5d6e1f1b",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 3,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateRostering",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "LOOKUP17c9249c-7ef4-4aa5-8948-1ea2477d96f7",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrProvisioningStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "DATETIMEf62b218d-66bc-407e-9a91-12142287a72b",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 4,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateProvisioning",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "LOOKUP94f36a48-5db7-466e-9414-48f2f81d5d76",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrFastStartPDStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "DATETIME349a5eda-66a0-40f7-83c2-3b5c62ab6910",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 5,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateFastStart",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "LOOKUP1a7c0602-101b-47f0-b91c-bfaca4e98b2b",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 6,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrFollowUpPDStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "DATETIME0123e7f2-0ee3-4880-a764-96ff6ec742a2",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 6,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateFollowUpPD",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "LOOKUPe22ab2bd-b73e-40f6-9d5c-1fd5a365eb12",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 7,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrAdminCheckIn1Status",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "DATETIMEb462c07e-bf50-4adc-add4-98251329325e",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 7,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateAdminCheckin1",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 13
},
{
"operation": "insert",
"name": "LOOKUP43533b0e-7317-403f-a7e7-fa1d3e7d65ef",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 8,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrAdminCheckIn2Status",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 14
},
{
"operation": "insert",
"name": "DATETIME6f2127c9-9d88-4782-8f16-56e7dd5a9c31",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 8,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateAdminCheckin2",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 15
},
{
"operation": "insert",
"name": "LOOKUP8a6d2b0f-e98f-4e40-9ca8-15b61821c370",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 9,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrAdminEOPStatus",
"enabled": false,
"contentType": 5
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 16
},
{
"operation": "insert",
"name": "DATETIME98de0a41-905c-4755-812e-09cdb189d460",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 9,
"layoutName": "GeneralInfoTabGridLayout8bbd0ce0"
},
"bindTo": "UsrDueDateAdminEOP",
"enabled": false
},
"parentName": "GeneralInfoTabGridLayout8bbd0ce0",
"propertyName": "items",
"index": 17
},
{
"operation": "insert",
"name": "Tabed6bc5eeTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabed6bc5eeTabLabelTabCaption"
},
"items": [],
"order": 1
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 1
},
{
"operation": "insert",
"name": "Tabed6bc5eeTabLabelGroupef2f8306",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabed6bc5eeTabLabelGroupef2f8306GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabed6bc5eeTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabed6bc5eeTabLabelGridLayoutfa7c48be",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabed6bc5eeTabLabelGroupef2f8306",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING44e33fe7-efbb-4db1-b2d4-45aef2de2d8e",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 2,
"column": 0,
"row": 0,
"layoutName": "Tabed6bc5eeTabLabelGridLayoutfa7c48be"
},
"bindTo": "UsrOtherNotesGoalTab",
"enabled": true,
"contentType": 0
},
"parentName": "Tabed6bc5eeTabLabelGridLayoutfa7c48be",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrSchema61243275Detail717bca7c",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tabed6bc5eeTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab131fa04dTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab131fa04dTabLabelTabCaption"
},
"items": [],
"order": 2
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 2
},
{
"operation": "insert",
"name": "Tab131fa04dTabLabelGroup4cc14d4c",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab131fa04dTabLabelGroup4cc14d4cGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab131fa04dTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab131fa04dTabLabelGridLayouta03c74a4",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab131fa04dTabLabelGroup4cc14d4c",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING6c44b922-9a6d-42e6-9860-dd5731dd0580",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOtherNotesProfssionalDevPlan",
"enabled": true,
"contentType": 0
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER6b0fdd33-8072-45e6-8696-a7e3552ac490",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 8,
"row": 0,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnsitePDDaysStartingBalance",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "INTEGERfbb95973-10e9-45c2-8f52-eb11a9187a3f",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 16,
"row": 0,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnlinePDSegmentsStartingBalance",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "STRINGe6530c27-0fc5-4f76-be9c-3d4ec8c53e8b",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrProfessionalDevelopmentConatct",
"enabled": false,
"contentType": 0
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "INTEGER37c947b3-31f1-4a2d-aeb9-1c71f23c1e8e",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 8,
"row": 1,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnsitePDDaysScheduled",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "INTEGERef2130e7-10f9-4c3b-8c16-e23c7eb125c0",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 16,
"row": 1,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnlinePDSegmentsScheduled",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "INTEGER8c5a0815-9052-4825-8e92-9d761bee4333",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrNumberTeachersAttendingPD",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "INTEGER0a23604a-82ad-4b73-aaf8-d294fdcbfdc1",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 8,
"row": 2,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnsitePDDaysCompleted",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "INTEGERc5ab289a-b2d2-445c-b0ac-10479897a275",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 16,
"row": 2,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnlinePDSegmentsCompleted",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "INTEGERa541f01c-14be-4564-8378-03dfa8f9fe57",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 8,
"row": 3,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnsitePDDaysRemaining",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "INTEGER662a7acf-1cb6-4fd3-9b3a-2f652eee725f",
"values": {
"layout": {
"colSpan": 8,
"rowSpan": 1,
"column": 16,
"row": 3,
"layoutName": "Tab131fa04dTabLabelGridLayouta03c74a4"
},
"bindTo": "UsrOnlinePDSegmentsRemaining",
"enabled": false
},
"parentName": "Tab131fa04dTabLabelGridLayouta03c74a4",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "UsrSchema49627747Detail6574e539",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab131fa04dTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab815f87e9TabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab815f87e9TabLabelTabCaption"
},
"items": [],
"order": 3
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 3
},
{
"operation": "insert",
"name": "Tab815f87e9TabLabelGroup0f82c78a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab815f87e9TabLabelGroup0f82c78aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab815f87e9TabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab815f87e9TabLabelGridLayout1a7284c5",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab815f87e9TabLabelGroup0f82c78a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRINGcdd4e42a-e256-4771-986c-0fd1d7414402",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab815f87e9TabLabelGridLayout1a7284c5"
},
"bindTo": "UsrOtherNotesContactsAndCommunication",
"enabled": true,
"contentType": 0
},
"parentName": "Tab815f87e9TabLabelGridLayout1a7284c5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrSchema119b0a97Detail7f1be439",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab815f87e9TabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0b6dfdefTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0b6dfdefTabLabelTabCaption"
},
"items": [],
"order": 4
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 4
},
{
"operation": "insert",
"name": "Tab0b6dfdefTabLabelGroup7dfa3b9d",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0b6dfdefTabLabelGroup7dfa3b9dGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0b6dfdefTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0b6dfdefTabLabelGroup7dfa3b9d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRINGc4156162-e97f-4fa3-b8ac-c5d1b0a8d741",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrOtherNotesRosteringTab",
"enabled": true,
"contentType": 0
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP960b6ff4-daca-419e-991b-de2bb2107c8b",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRosterType",
"enabled": true,
"contentType": 3
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "STRING1f1f7309-856a-4b53-a705-fa5e61e4810b",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrOtherRoster",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "STRING973ab553-44bf-4a98-8e54-1852ebac01a0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrIntendedPopulationRosteringTab",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "LOOKUPcf44ee0b-b02a-4da8-bfe4-414b8b88e448",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrSSO",
"enabled": true,
"contentType": 3
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "LOOKUP53329e49-d4fe-4d05-9884-737c04f8b4db",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrSSOTYPE",
"enabled": true,
"contentType": 3
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "STRING55b1cc39-f61b-43ce-9912-b409fd6dd7ef",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 4,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrOtherSSO",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "STRINGf379c1d3-5afa-478f-9cf6-5e2f44a5bfd8",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrSISsystem",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "UsrString11192dfbf3-f6a7-4d75-bbbe-f16d11ed96f5",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 6,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRosteringNotes",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "LOOKUP7db19df5-b6eb-48b4-b670-af212835df8e",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 7,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRequireAgreement",
"enabled": true,
"contentType": 3
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "STRING0d7abbc1-393f-401a-8573-f6141bf95a93",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 7,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRosteringAdditionalInformation",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "UsrConfirmedPURLbd8327af-f9fd-421e-88e8-75f01ff7d556",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 8,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrConfirmedPURL",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "LOOKUPc343a1f6-81eb-44fd-9627-c5c2d1376c5e",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 9,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRenewalCustomer",
"enabled": true,
"contentType": 5
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "STRING97017bf5-455a-488f-aaae-cb72a6e0c319",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 10,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrRenewingPlan",
"enabled": true,
"contentType": 0
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 13
},
{
"operation": "insert",
"name": "STRINGacbf3f4d-e314-4d01-b865-d917d30c0fa6",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 11,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrITContact",
"enabled": false,
"contentType": 0
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 14
},
{
"operation": "insert",
"name": "STRING59130c2c-fec9-483e-940b-97c8d8f0f155",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 2,
"column": 0,
"row": 13,
"layoutName": "Tab0b6dfdefTabLabelGridLayout214a2ea1"
},
"bindTo": "UsrUserInstructions",
"enabled": true,
"contentType": 0
},
"parentName": "Tab0b6dfdefTabLabelGridLayout214a2ea1",
"propertyName": "items",
"index": 15
},
{
"operation": "insert",
"name": "Tab0b6dfdefTabLabelGroupbf3c0ae5",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0b6dfdefTabLabelGroupbf3c0ae5GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0b6dfdefTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0b6dfdefTabLabelGridLayout51bb716a",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0b6dfdefTabLabelGroupbf3c0ae5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP0e4116f3-ad2e-49ef-b142-e41993b9e898",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0b6dfdefTabLabelGridLayout51bb716a"
},
"bindTo": "UsrWhoManagesPasswords",
"enabled": true,
"contentType": 3
},
"parentName": "Tab0b6dfdefTabLabelGridLayout51bb716a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRINGa10c745d-e518-46c3-8d7e-0f0d80e01f1c",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0b6dfdefTabLabelGridLayout51bb716a"
},
"bindTo": "UsrPasswordHintSentence",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout51bb716a",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "STRING302f4116-f7fa-4316-a959-d57b6e2744a4",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab0b6dfdefTabLabelGridLayout51bb716a"
},
"bindTo": "UsrAdditionalPasswordHelpInstructions",
"enabled": true
},
"parentName": "Tab0b6dfdefTabLabelGridLayout51bb716a",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrAccountCalendarDetail",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab0b6dfdefTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrSchemab6d7ee12Detailbd6fd734",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab0b6dfdefTabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Tab429ada5fTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab429ada5fTabLabelTabCaption"
},
"items": [],
"order": 5
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 5
},
{
"operation": "insert",
"name": "Tab429ada5fTabLabelGroupb552887d",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab429ada5fTabLabelGroupb552887dGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab429ada5fTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab429ada5fTabLabelGridLayout8d9d7211",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab429ada5fTabLabelGroupb552887d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrDefaultCurriculum1c32bd64c-bc37-42e2-9ecb-5282b7f0affc",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrUseOurDefaultCurriculum",
"enabled": true,
"contentType": 3
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Usrproduct7b1b639f-5485-4fed-bd66-aae51e55b6bf",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "Usrproduct",
"enabled": false
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "LOOKUPa6ab5052-62bd-49b2-aa3b-6969f5f8a763",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrCustAttached",
"enabled": true,
"contentType": 3
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "DATETIME3e187f53-8c6d-4e18-b14e-b1ab26061f39",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrCurriculumStartDate",
"enabled": true
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "BOOLEAN15129a2e-407c-4f03-a1bc-01780319f806",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrChangeCurriculum",
"enabled": true
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrCurriculumEndDate0ccd67e4-5505-478f-a342-5f49a1a789b9",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrCurriculumEndDate"
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "STRINGa3f84660-44a0-4e26-a3ae-4192d261fd97",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 2,
"column": 0,
"row": 3,
"layoutName": "Tab429ada5fTabLabelGridLayout8d9d7211"
},
"bindTo": "UsrOtherNotesCurriculumTab",
"enabled": true,
"contentType": 0
},
"parentName": "Tab429ada5fTabLabelGridLayout8d9d7211",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "Tab429ada5fTabLabelGroup8546a0c9",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab429ada5fTabLabelGroup8546a0c9GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab429ada5fTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab429ada5fTabLabelGroup8546a0c9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrDeliverySchedule99da258f-5f1e-4bae-b44e-d5018b3e1368",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab429ada5fTabLabelGridLayoutaff2d09e"
},
"bindTo": "UsrDeliverySchedule"
},
"parentName": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrCurriculumContact6b0d11c8-2567-4230-81f8-77dbf8ca7eaa",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "Tab429ada5fTabLabelGridLayoutaff2d09e"
},
"bindTo": "UsrCurriculumContact"
},
"parentName": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrDeliveringSchedulee9bf6a05-9033-47d1-a154-0973e23679a0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab429ada5fTabLabelGridLayoutaff2d09e"
},
"bindTo": "UsrDeliveringSchedule"
},
"parentName": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrCalAttached470000ae-4e30-4358-8ad6-f21ee2635ee2",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab429ada5fTabLabelGridLayoutaff2d09e"
},
"bindTo": "UsrCalAttached"
},
"parentName": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrCalNotAttachedaec14a7e-7afa-42a3-92a1-5191c02f3423",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "Tab429ada5fTabLabelGridLayoutaff2d09e"
},
"bindTo": "UsrCalNotAttached"
},
"parentName": "Tab429ada5fTabLabelGridLayoutaff2d09e",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrSchema1caf5016Detail133bc718",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab429ada5fTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "ExecSummaryTab",
"values": {
"caption": {
"bindTo": "Resources.Strings.ExecSummaryTabTabCaption"
},
"items": [],
"order": 6
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 6
},
{
"operation": "insert",
"name": "ExecSummaryTabGroupf134baf0",
"values": {
"caption": {
"bindTo": "Resources.Strings.ExecSummaryTabGroupf134baf0GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "ExecSummaryTabGridLayout194dae52",
"values": {
"itemType": 0,
"items": []
},
"parentName": "ExecSummaryTabGroupf134baf0",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrImplementationStageb90007c9-cdb0-4c3a-9842-fe73a3c17b10",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrImplementationStage"
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrOverallStatus8408a324-9871-481d-9458-8ea59888c467",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrOverallStatus"
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrPlanningStatuse3fe6b9c-d698-48ca-8271-adc7802ff360",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrPlanningStatus",
"enabled": false,
"contentType": 5
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrRosteringStatus31262913-91d7-43e0-8eeb-b7370fd79fc4",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrRosteringStatus",
"enabled": false,
"contentType": 5
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrProvisioningStatus322a6d3f-ab60-476f-8142-421eefe9f391",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrProvisioningStatus",
"enabled": false,
"contentType": 5
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrFastStartPDStatus1d3c910a-4463-4936-aedd-95360d3d7de5",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrFastStartPDStatus",
"enabled": false,
"contentType": 5
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "UsrOtherNotesGoalTabc7e4d4f6-7bc9-4d2d-b0f0-58c2e446bada",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 3,
"column": 0,
"row": 3,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrOtherNotesGoalTab",
"enabled": true,
"contentType": 0
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "UsrWhyInCurrentStatusee9e295c-19dd-4f75-a33f-f0feb04a4b4e",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 3,
"column": 12,
"row": 3,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrWhyInCurrentStatus",
"enabled": true,
"contentType": 0
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "UsrLatestStatusNote3fde99c4-bc7d-4eba-af93-3e15e3965988",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 3,
"column": 0,
"row": 6,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrLatestStatusNote",
"enabled": false,
"contentType": 0
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "UsrWhatWeDidSoFarbaf020f3-6a30-4415-9617-7bf549387d03",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 3,
"column": 12,
"row": 6,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrWhatWeDidSoFar",
"enabled": true,
"contentType": 0
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "UsrWhatAreNextStepsForIM9e28043a-aa54-4d0a-8260-e8d76baf97db",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 3,
"column": 12,
"row": 9,
"layoutName": "ExecSummaryTabGridLayout194dae52"
},
"bindTo": "UsrWhatAreNextStepsForIM",
"enabled": true,
"contentType": 0
},
"parentName": "ExecSummaryTabGridLayout194dae52",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "UsrSchema607e5d17Detailf4014c7c",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrSchema915cd61aDetail9252e4aa",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "ExecSummaryTabGroupb6535223",
"values": {
"caption": {
"bindTo": "Resources.Strings.ExecSummaryTabGroupb6535223GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "ExecSummaryTabGridLayoute2a53581",
"values": {
"itemType": 0,
"items": []
},
"parentName": "ExecSummaryTabGroupb6535223",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Gauge697bb626-b7ac-4d57-83fc-dab5a0a59d38",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 0,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoute2a53581",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoute2a53581",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Gaugecd647b44-e1c7-4f97-9a08-0f3d60049471",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 5,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoute2a53581",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoute2a53581",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Gauge8e36ac09-5087-4f3a-ac80-4642cce34d3b",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 10,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoute2a53581",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoute2a53581",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Gaugef356ec3c-2809-4b0f-8fd1-094ee42830ac",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 15,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoute2a53581",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoute2a53581",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrSchemab5f074bdDetaile92b9c60",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "ExecSummaryTabGroupd92c7d32",
"values": {
"caption": {
"bindTo": "Resources.Strings.ExecSummaryTabGroupd92c7d32GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "ExecSummaryTabGridLayoutd43a378d",
"values": {
"itemType": 0,
"items": []
},
"parentName": "ExecSummaryTabGroupd92c7d32",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Gauge6fe24e97-b837-4e72-988e-3670125aed31",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 0,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoutd43a378d",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoutd43a378d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Gauge086390e5-8e44-4288-9bc9-041c7eaa5b40",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 5,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoutd43a378d",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoutd43a378d",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Gaugea71a9ebd-8279-4842-a95d-eba612767119",
"values": {
"layout": {
"colSpan": 4,
"rowSpan": 4,
"column": 10,
"row": 0,
"layoutName": "ExecSummaryTabGridLayoutd43a378d",
"useFixedColumnHeight": true
},
"itemType": 4,
"classes": {
"wrapClassName": [
"card-widget-grid-layout-item"
]
}
},
"parentName": "ExecSummaryTabGridLayoutd43a378d",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrSchemae7a2fab5Detail22802b45",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "UsrRelatedAccountUsageSummaryDetailSection",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "UsrSchemabf12124eDetail41dff0a3",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "ExecSummaryTab",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "Tabdcf2db33TabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabdcf2db33TabLabelTabCaption"
},
"items": [],
"order": 7
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 7
},
{
"operation": "insert",
"name": "OpportunityHistoryActivityDetaildd2df12b",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tabdcf2db33TabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "ProjectStructureDetailV2504a12a0",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tabdcf2db33TabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "merge",
"name": "ESNTab",
"values": {
"order": 10
}
},
{
"operation": "merge",
"name": "HistoryTab",
"values": {
"order": 8
}
},
{
"operation": "insert",
"name": "HistoryTabGroupba7f22e5",
"values": {
"caption": {
"bindTo": "Resources.Strings.HistoryTabGroupba7f22e5GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "HistoryTab",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "HistoryTabGridLayouta85ebd65",
"values": {
"itemType": 0,
"items": []
},
"parentName": "HistoryTabGroupba7f22e5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "CreatedOnf474d608-c4a8-4c13-bc5c-71b281a3ef5d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "HistoryTabGridLayouta85ebd65"
},
"bindTo": "CreatedOn"
},
"parentName": "HistoryTabGridLayouta85ebd65",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "ModifiedOn38ff26ce-dffa-428c-8e90-c2db9d01ca61",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0,
"layoutName": "HistoryTabGridLayouta85ebd65"
},
"bindTo": "ModifiedOn"
},
"parentName": "HistoryTabGridLayouta85ebd65",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "CreatedByd9cac54d-944e-4f63-be25-594c2673394d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "HistoryTabGridLayouta85ebd65"
},
"bindTo": "CreatedBy"
},
"parentName": "HistoryTabGridLayouta85ebd65",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "ModifiedBy60b0403a-f0a4-473e-84cf-30ca4d46d173",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 1,
"layoutName": "HistoryTabGridLayouta85ebd65"
},
"bindTo": "ModifiedBy"
},
"parentName": "HistoryTabGridLayouta85ebd65",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrSchemae82228e2Detail99ddf41c",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "HistoryTab",
"propertyName": "items",
"index": 3
},
{
"operation": "merge",
"name": "NotesAndFilesTab",
"values": {
"order": 9
}
},
{
"operation": "remove",
"name": "Status"
},
{
"operation": "remove",
"name": "Owner"
},
{
"operation": "remove",
"name": "GeneralInfoControlGroup"
},
{
"operation": "remove",
"name": "GeneralInfoBlock"
},
{
"operation": "remove",
"name": "Account"
},
{
"operation": "remove",
"name": "Contact"
},
{
"operation": "remove",
"name": "ActualCompletion"
},
{
"operation": "remove",
"name": "Type"
},
{
"operation": "remove",
"name": "Deadline"
},
{
"operation": "remove",
"name": "EndDate"
},
{
"operation": "remove",
"name": "getDurationByMask"
},
{
"operation": "remove",
"name": "StartDate"
},
{
"operation": "remove",
"name": "IsAutoCalcCompletion"
},
{
"operation": "remove",
"name": "LinksControlGroup"
},
{
"operation": "remove",
"name": "LinksControlBlock"
},
{
"operation": "remove",
"name": "Supplier"
},
{
"operation": "remove",
"name": "Opportunity"
},
{
"operation": "remove",
"name": "ProjectResourceElement"
},
{
"operation": "remove",
"name": "StructureTab"
},
{
"operation": "remove",
"name": "ProjectStructureDetailV2"
},
{
"operation": "remove",
"name": "FinanceTab"
},
{
"operation": "remove",
"name": "Finance"
},
{
"operation": "remove",
"name": "Cashflow"
},
{
"operation": "remove",
"name": "NotesControlGroup"
},
{
"operation": "remove",
"name": "Notes"
}
]/**SCHEMA_DIFF*/
};
});
Thank you so much!
Chani Karel,
thank you! There is a duplicated setValidationConfig method in your schema methods (rows 1531 and 1656). Please make sure it's declared once, save the schema and check the result after that.
Best regards,
Oscar
Oscar Dylan,
Thank you so much!!! I didn't think to look for such a thing.
This is very appreciated.