Learn about the Automation involved when Importing Data into Maica
What are the Data Import Flows?
As part of the Data Import Utility, Automation is involved to ensure it's successful completion.
When using the tool, you are prompted to select a Flow Setting that essentially tells Maica which type of Data you are wanting to Import and allows the Automation to read the files correctly. It is important to understand the logic within the Automation and the altercations to the Data that will be involved when doing so. This article explains the logic behind each Flow Setting in more detail.
Maica - NDIS Import Support Items Catalogue
This flow is designed to automate the import of NDIS support items and their associated prices based on various state-specific rates and conditions.
Flow Detail
Flow Label
Maica - NDIS Import Support Items Catalogue
API Name
maica__Maica_NDIS_Import_Support_Item_Prices
Type
Autolaunched Flow
Flow Summary
This flow imports NDIS support items and their associated prices based on state-specific rates and conditions.
Starts automatically and checks if the Support Item Number is present.
Calls the import support item Apex action if the item number is valid.
Passes variables like allowed states, claim types, prices for different regions, and item details.
Handles errors by assigning appropriate fault messages when required.
Flow Description
Start (Auto-Launched Flow):
The flow is auto-launched and starts by verifying whether the Support Item Number is present.
It checks if the Support Item Number is not null or empty.
Decision (Support Item Number Is Not Null):
Outcome: Null: If the Support Item Number is empty or null, the flow proceeds to the Handle Support Item Number Null step, which sets an error message.
Outcome: Not Null: If the Support Item Number is present, the flow proceeds to the Call Import Support Item step.
Call Import Support Item (Apex Action):
The flow uses the NDISImportSupportItemsPricesInvocable Apex class to import the support item and its associated prices.
The following input parameters are passed to the Apex class:
allowedStates: The states where this item is applicable.
claimTypesFormula: The applicable claim types, built from multiple variables like CANC, IRSS, etc.
priceACT, priceNSW, priceNT, priceQLD, priceRemote, priceSA, priceTAS, priceVeryRemote, priceVIC, priceWA: The price of the support item for each state or region.
priceBookDescription: Describes how the item appears in the price book.
isQuoteRequired: A Boolean indicating if a quote is required, calculated using the quoteFormula.
registrationGroupCode, supportCategoryName, supportCategoryNumber, itemName, itemNumber, supportItemType, unit: Key details such as the support item's name, number, type, and unit.
Handle Error (Assignment):
If an error occurs during any stage of the flow, the FlowFaultMessage variable is assigned the error message for tracking and troubleshooting purposes.
Handle Support Item Number Null (Assignment):
If the Support Item Number is not provided, the flow assigns the error message: "Support Item Number is required for import."
Maica - NDIS Support Catalogue Import Configuration
This flow is designed to facilitate the configuration and import process for the NDIS Support Catalogue. It allows users to select specific areas (states) and provides the option to include additional descriptions for the generated Price Books.
Flow Detail
Flow Label
Maica - NDIS Support Catalogue Import Configuration
This flow streamlines the process of importing NDIS support catalogue data into Maica by allowing users to configure Price Book creation for specific states.
Users select states for which Price Books will be generated.
A description can be added for each Price Book.
The created Price Book records are used to organise NDIS support items based on regions.
Flow Description
Start (Screen Element):
The flow begins with a screen to configure the NDIS Support Catalogue import.
It contains two key options:
Selection of areas (states) for which Price Books will be created.
An optional description field to save relevant notes on the new Price Book(s).
Dynamic Choice Set (StateOptions):
Retrieves available states from the Pricebook2 object.
This dynamic choice set is used in the screen for state selection.
Assignment (Assignment):
The selected areas (states) and the description for the Price Books are stored in the respective variables.
The allowedStates and priceBookDescription variables are updated based on user inputs.
Maica - Client Care Reference Data Import Handler
This flow is designed to handle the import of CSV data into the Maica system, populating various reference data objects such as Appointment Service, Availability, Checklist, Client Goal, and others. The flow allows for creating and updating records for these objects based on imported data, and provides error handling mechanisms for any issues during the import process.
This flow processes CSV imports and creates or updates reference data records for the Maica system, handling various objects related to client care.
Determines the object type from Object_API_Name and processes it accordingly.
Creates or updates records for objects such as Appointment_Service, Availability, Checklist, Client_Goal, Resource, and more.
Provides error handling mechanisms to capture and log faults during the import process.
Flow Description
Start (Auto-launched Flow):
The flow starts by evaluating the Object_API_Name to determine which type of record to process.
Decision (DECISION_Object_API_Name):
Determines the object type based on Object_API_Name and routes the flow accordingly to handle specific objects like Resource, Availability, Unavailability, etc.
If an unknown object type is encountered, it triggers the fault message.
Assignment (ASSIGN_Appointment_Service_Values):
Assigns values to various fields in the Appointment_Service object, such as Available_Sections__c, Claim_Types__c, Client_Note_Template__c, End_Date__c, and others.
Assignment (ASSIGN_Availability_Values):
Assigns values to the Availability object, including fields like Active__c, Effective_From__c, Effective_To__c, Location__c, and others.
Assignment (ASSIGN_Checklist_Values):
Assigns values to the Checklist object, such as Create_During_Quick_Complete__c, Default_Checklist_Item_Status__c, End_Date__c, and others.
Record Lookup (GET_Resource):
Retrieves a Resource record based on the provided Resource_Name.
If the record is found, the flow assigns the Resource_Id and proceeds to update the relevant object.
Record Create (CREATE_Appointment_Service):
Creates a new Appointment_Service record using the assigned values.
If an error occurs, the flow assigns a fault message to handle the error.
Record Create (CREATE_Availability):
Creates a new Availability record with the provided values.
Record Create (CREATE_Client_Goal):
Creates a Client_Goal record by assigning values like Contact__c, Goal__c, Description__c, Stage__c, and others.
Maica - Client Management Reference Data Import Handler
This flow is designed to handle the import of reference data objects for Maica Client Management via a CSV. It looks up and creates records for several Salesforce objects such as Product2, Pricebook2, Connection__c, Support_Category__c, and PricebookEntry.
Flow Detail
Flow Label
Maica - Client Management Reference Data Import Handler