v4.13.14 - Custom Field Mappings Support #716
jongpie
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Thanks to @pankaj0509 and @codejester90 for suggesting this enhancement & providing some great feedback!
Core Unlocked Package Changes
This release resolves #655 by adding support for defining, setting, and mapping custom fields within Nebula Logger's data model. This is helpful in orgs that want to extend Nebula Logger's included data model by creating their own org/project-specific fields.
Adding custom fields to the platform event
LogEntryEvent__eTo get started, the first step is to add a field to the platform LogEntryEvent__e`
Create your own custom fields on
LogEntryEvent__e. Any data type supported by platform events can be used.In this example, a custom text field called
SomeCustomField__chas been added:Populate your own custom fields in Apex by calling one of the two new instance methods on
LogEntryEventBuilder:setField(Schema.SObjectField field, Object fieldValue)setField(Map<Schema.SObjectField, Object> fieldToValue)For now, this functionality is available in Apex. Long-term, equivalent functionality will hopefully be added for Flow & Lightning Components. Here is an example of using the 2 new methods in Apex:
Adding custom fields to the custom objects
Log__c,LogEntry__c, andLoggerScenario__cIf you want to store the data in one of Nebula Logger's custom objects, you can follow the above steps, and also...
Create an equivalent custom field on one of Nebula Logger's custom objects - right now, only
Log__c,LogEntry__c, andLoggerScenario__care supported.In this example, a custom text field also called
SomeCustomField__chas been added toLog__cobject - this will be used to store the value of the fieldLogEntryEvent__e.SomeCustomField__c:Create a record in the new CMDT
LoggerFieldMapping__mdtto map theLogEntryEvent__ecustom field to the custom object's custom field, shown below. Nebula Logger will automatically populate the custom object's target field with the value of the sourceLogEntryEvent__efield.In this example, a custom text field called
SomeCustomField__chas been added to bothLogEntryEvent__eandLog__c.New
extra-testsMetadataTo help with testing Nebula Logger, a few new metadata items have been added to the
extra-testsdirectory. This directory is not included in any of Nebula Logger's packages - its metadata is used to help both with automated tests in the pipeline, as well as manual functional tests.LogEntryEvent__e,Log__c,LogEntry__c, andLoggerScenario__cto theextra-testsdirectory to provide sample fields that are only used for testing the custom field mapping functionalityLoggerFieldMapping__mdt. These records map the (new) included custom fields (mentioned above)Installation Info
Core Unlocked Package - no namespace
Full Changelog: v4.13.13...v4.13.14
sf package install --wait 20 --security-type AdminsOnly --package 04t5Y0000015oE2QAIsfdx force:package:install --wait 20 --securitytype AdminsOnly --package 04t5Y0000015oE2QAIThis discussion was created from the release Custom Field Mappings Support.
Beta Was this translation helpful? Give feedback.
All reactions