wkcc__CommandCenterMapping__c
Stores the mappings for all tabs in the Command Center Settings app, which you
access from App Launcher. This object is available in orgs that have Workplace Command
Center installed.
A single mapping in a Command Center Settings app tab corresponds to multiple records in wkcc__CommandCenterMapping__c, based on the number of columns in the mapping. The multiple records are correlated with the Name field; each record with the same Name link together to form one mapping. This dynamic method of storing different types of mappings in the same object makes it easier to add other types of mappings in the future.
For example, the Wellness Status Mapping tab (in the Command Center Settings app) allows
you to create mappings between crisis assessment values and wellness status values. Let’s
say it contains these mappings.
CRISIS ASSESSMENT | WELLNESS STATUS |
---|---|
Declined | Remote Work Only |
COVID-19 Symptoms or Exposed | Unavailable |
COVID-19 No Symptoms | Available to Work |
Because the Wellness Status Mapping has two columns, each mapping corresponds to two
records in the wkcc__CommandCenterMapping__c object. The Name field is the same for each
record. The wkcc__MappedValue__c field contains the actual values or a reference to an
object ID. The wkcc_Mapping*__c fields are used for internal processing, such as populating
dropdown lists with picklists values. Here’s an example of two wkcc__CommandCenterMapping__c
records associated with the Declined mapping; only relevant fields of the object are shown.
Name | wkcc__MappedValue__c | wkcc__MappingKey__c | wkcc__MappingType__c |
---|---|---|---|
WellnessStatusMap3 | Declined | WSAssessment | WellnessStatusMap |
WellnessStatusMap3 | Remote Work Only | WSCurrentWellnessStatus | WellnessStatusMap |
Supported Calls
create(), delete(), describeLayout(), describeSObjects(), getDeleted(), getUpdated(), query(), retrieve(), undelete(), update(), upsert()
Fields
Field | Details |
---|---|
LastReferencedDate |
|
LastViewedDate |
|
Name |
|
OwnerId |
|
wkcc__MappedValueName__c |
|
wkcc__MappedValue__c |
|
wkcc__MappingKey__c |
|
wkcc__MappingTypeId__c |
|
wkcc__MappingType__c |
|