You can download the full release notes as a PDF above for detailed information on all updates and fixes included in this version.
If there are any post-install steps required, they will be listed below.
Following installation, a post-install script must be executed via the Salesforce Developer Console to normalise existing PACE Plan Budget NDIS Reference values. The script retrieves all Plan Budget records associated with PACE Plans, appends the Effective Date to each NDIS Reference value to ensure uniqueness, and processes the updates in batches of 100.
Map<Id, maica__Plan_Budget__c> budgets = new Map<Id, maica__Plan_Budget__c>([
SELECT Id, maica__NDIS_Reference__c, maica__Effective_Date__c
FROM maica__Plan_Budget__c
WHERE maica__Plan__r.maica__PACE_Plan__c = TRUE
]);
System.debug(budgets.size());
for(maica__Plan_Budget__c pb : budgets.values()){
pb.maica__NDIS_Reference__c = '' + pb.maica__NDIS_Reference__c + '-' + String.valueOf(pb.maica__Effective_Date__c);
}
Database.executeBatch(
new maica.vertic_DMLBatch(budgets, null),
100
);
The new fields included in this release are created automatically when the updated package version is installed. No manual field creation is required. The following steps must be completed manually by an administrator after installation.
The new fields are not automatically added to Lightning Record Pages. Update the following pages in Setup → Lightning App Builder: maica__Service_Agreement_Statement__c — Statement Line record page
Add the following fields to the page layout component:
maica__Is_Prior_Period__cmaica__Prior_Period_Budget_Type__cmaica__Total_Claimable_Services_Expenses__c
maica__Budget_Usage__c — Budget Usage record page
Add the following field to the page layout component:
: maica__Service_Agreement_Statement__c




