DataRaptors

DataRaptors are part of the architectural service management layer and is basically a mapping tool that enables data to be read, transformed and written to Salesforce. In a typical process, we will extract the data, display the data, if data got modified we will post the update back. Dataraptor data are normally displayed in UI… Read More DataRaptors

OmniStudio Calculation Procedures

Calculation Procedures allow complex math to be configured within OmniStudio. To handle many factors, values and calculations, a Calculation Procedure can call up one more more Calculation Matrices. Basically, these are simple lookup tables that takes an input and returns output. A Calculation Matrix adds more functionality to OmniScripts and Integration Procedures. Types of Calculation… Read More OmniStudio Calculation Procedures

Swift – Solving Fatal error: Unresolved error Foundation._GenericObjCError.nilError, [:]

You are likely to get this error on CoreData when trying to update the manageObjectContext in the init() of your struct. I was trying calling a function that saves the context upon navigating to a new view from the initializer. A better approach instead is when the view has been rendered use the .onAppear(perform:) modifier… Read More Swift – Solving Fatal error: Unresolved error Foundation._GenericObjCError.nilError, [:]