5 things to consider when you plan to implement work.com in your org for Higher Ed.

If you are a Higher Ed Institution using Salesforce,  with COVID 19,  there is a need to safely open your campus,  maintain employee safety, and comply with state and county guidelines. One of the most recent features of Salesforce has been work.com with its features around tracking locations, contact tracing, and other features. So the question for most salesforce admins, CRM directors is the following questions.

  1. How can I use work.com for my institution?
  2. If I end up using work.com and its features, what features of Salesforce will be impacted in my current org with EDA  and how can I plan around it?
  3. How can I leverage my HR systems like Workday, PeopleSoft, Success Factors, and Salesforce effectively to enable my users to perform their jobs?

My post here will help you answer these questions and help you make the right decisions effectively.

How can I use work.com and how are other institutions planning to use it?

For a university that is now tasked with campus re-opening, most of them are considering a hybrid model where they can keep their campuses open for a small part of their time with limited students and do the rest of the classes online.  So here are some use cases on how it applies to Higher Ed.

  1. Build trust with your students and parents by sharing locations of your campuses and ensuring compliance. Now most of your campus location data, shifts could be in your SIS or HR system. But if you have community portals where you want to be transparent to your students and parents on your campus locations, bring the data to salesforce communities, and displaying it as a dashboard will enable more trust to your students.
  2. If you have employee portals in Salesforce, one of the challenges for employees is to see how Safe their campuses are. Leveraging surveys from employees and sharing COVID 19 data of your campus locations will ease your employee’s fears and build trust.
  3. With the latest contact tracing module of salesforce, if your admission team logs meetings in person with the prospective students and parents and in the scenario of the admission team member turning positive, contact tracing network graphs can help to visualize the impact in your locations.

If I end up using work.com and its features, what features of Salesforce will be impacted in my current org and how can I plan around it?

Org strategy

  1. Keep in mind work.com with Salesforce health cloud is an independent salesforce org that will stand out by itself as a separate org.
  2. When keeping orgs in synch, avoid using bi-directional synchronization, as manual conflict management between org data will be required. Instead, I  recommend having a single “source of truth” org. If a data change occurs in a different org, use Salesforce APIs to make the change in the “source of truth” org first, and then synchronize the change back to the org where the change initially occurred.

    3.  If other orgs only need read-only access to Work.com org data, use Salesforce Connect to display the Work.com org data in the other orgs.

    4. If Salesforce Connect won’t work for your scenario, you can use Salesforce API calls to query the Work.com org. For example, you could use on-demand API calls in your Lightning Web Components to query your Work.com org data and display the data in your component.

    5. Here are some things to consider to keep the data in sync between orgs. Consider doing initial data synchs followed by smaller incremental data synchs. A strategy might work as follows:

    • Run an initial data load job to move data to the new org.
    • Run nightly or hourly incremental data load jobs to keep orgs in synch.
    • If a record is updated in the new org, use Salesforce APIs to update the existing org first, and then migrate that incremental change back to the new org. This avoids unnecessary data conflicts.

EDA Impact.

    1. Work.com comes with the following major objects
      1. Employee
      2. Individual
      3. Location
      4. Person object
      5. Internal organization unit
    2. Here is a sample data model of the major work.com objects involved.
    3. EDA has a person account-model where an individual student record is stored as an account and contact. In a scenario where student data is captured in the work.com org , a person account record of the student data in the work.com org should sync with EDA account/contact model. To keep this in sync, here are some options.
      1. For Current Students, Leverage student email, Single Sign-on  login id or SIS id to keep the data sync between the 2 orgs.
      2. For Prospective Students, EDA org will be the system of record. In a scenario where the prospective student visits campus visits, most of the data will be stored in EDA Org. In a scenario where you need to do contact tracing, Eda Org Salesforce id can be the key to link the EDA org prospective student to work.com Student data. This might involve creating a custom field on the work.com org to keep the data in sync. Another option is to generate a combined key field like Lastname, date of birth, email as the key and use that as a syncing field to ensure prospective data is synced between orgs.
      3. If you have to enable the survey feature, you need to use employee objects in the work.com org. So current student and prospective student records in the EDA org will need to be linked to the employee record in work.com Org.
    4. Create a process that synchronizes Employee object data in work.com org with your HR system data. This synchronization has to be done on an ongoing basis for any new and changed records. You may also have to keep some amount of duplicate data between Employee records and solution data. Out of the box, work.com leverages an employee number field but you can use a unique id to keep the data in sync.
    5. Individual object is the junction object which can be used to link employee object to your other objects like person accounts or any custom object which you use to store employee data.
    6. here are  examples for utilizing Individual’s connection to Work.com include:
      • Solutions leveraging User can tie back via User > Individual < Employee.
      • Solutions leveraging Contact can tie back via Contact > Individual < Employee.
      • Solutions leveraging PersonAccount can tie back via PersonAccount > Individual < Employee.
      • Solutions leveraging custom Employee objects can tie back via Employee > Individual < Custom employee object.

      7.  Location data is used by  Work.com to associate Employees to physical locations. In a scenario where you want to track campus locations, EDA.com accounts will need to be synced with location objects in work.com org.

      8. The location object uses hierarchies to store multiple levels of data. Here is an example of a query that you would need to get the location data.

      SELECT Id, Name, wkcc__LocationPath__c FROM Location 
      WHERE wkcc__LocationPath__c LIKE '1314R000000PZ0eQAG:1314R000000PZ0jQAG:%'
      
      Schema.Location parentLoc = [SELECT Id, wkcc__LocationPath__c FROM Location 
          WHERE LocationLevel = 2 LIMIT 1];
      String parentLikeClause = parentLoc.wkcc__LocationPath__c + ':%';
      List<Schema.Location> locs = [SELECT Id, Name, wkcc__LocationPath__c FROM Location 
          WHERE wkcc__LocationPath__c LIKE :parentLikeClause];

       9. Internal organization unit is another major object which stores your organization data. Typically this object is seldom used by companies or you might have an account with contacts associated with your org. You will need a syncing strategy to sync the internal organization unit with EDA department accounts to sync data between departments.

      10. You also need to consider the impact of summary fields like wellness fact and other fields that need to architected carefully to effectively leverage them.

      11.  Work.com comes with out of the box triggers which needs to be reviewed and enabled upon review.  When Work.com triggers are enabled, bulk operations on affected Work.com objects may incur additional limits. For EmployeeCrisisAssessment, batch sizes should be limited to 3000 records. For Location, batch sizes should be limited to 4000 records.

      12. If you enable contact tracing, you would need to use person accounts on the org. This would mean that you would need to associate one time data load to keep the person accounts in sync with your existing accounts and contacts and a plan to keep them sync on an ongoing basis.

      13. If you have to leverage contact tracing on work.com org, medical tests in Health Cloud go on EhrObservation__c. That has a direct lookup to the Patient (Person Account) record.

      Security Impact

      If Work.com has been installed in a new, dedicated org, but your org must access the original org, you need a strategy for authenticating to the other org.

      The following are recommended strategies for authenticating to another org.

      1. Use the existing EDA org as an identity provider. Use user authentication from the original org to log in to the Work.com org. Avoid creating replicated logins in the new Work.com org.

      2. If the existing org is already using a different identity provider, you can either connect the Work.com org to the same identity provider or connect the Work.com org to the existing org.

      3. Plan to create permission sets on your existing org to manage work.com object access to meet your compliance needs.

      4. If you have a need to monitor tasks on the work.com org, leveraging sharing rules or role hierarchy, tasks can be shared with other users in the org. You can also use queues to track users.

      HR System integration impact
      As part of work.com implementation, there will be a need to have an integration strategy to integrate work.com with your HR system like Workday, People Soft, etc. Here are some guidelines which you can consider for it.
      1. Before you consider an integration, identify with your HR team on what stage of the business process in HR will be integrated with work.com like recruiting, onboarding, developing, retaining, and offboarding employees.
      2. Have an integration strategy to sync data between salesforce user, employee, individual, and employee object to your HR objects.
      3. Leverage the HR system’s unique id as a key for employee numbers to enforce data integrity.

      SIS  Integration impact

If you are using Banner, People soft as your SIS system, here are some areas which you would need to consider as potential impacts.

  1. Deduping will need to be maintained in one place which would be your SIS. For current students, you can leverage MDM tools or banner deduping to dedupe the student record in SIS, work.com org, and EDA org.
  2. In a scenario for single sign-on between orgs, you need to ensure the single sign-on id from banner needs to be stored in both orgs. This would be helpful to get the single sign-on working.
  3.  One important criterion from a HIPAA standpoint is to make sure data is encrypted in transit and rest. If you leverage an ETL tool for integration from SIS system to Salesforce, you need to ensure that the rest and soap integration data is encrypted in rest.
  4. In a scenario where the data is encrypted in work.com org and you need to ensure that your integration queries have decrypting strategies to decrypt the data to populate work.com org.
  5. For those who leverage account hierarchies to track internal organization data and customer accounts, have a strategy to flatten the hierarchy levels to fit the hierarchy needs of location and internal organizational units.

To summarize, here are the key takeaways when you plan to implement work.com in your org.

  1. Have an Org Strategy for syncing data between your org and work.com org
  2. Create an integration document for mapping out work.com objects to your org objects.
  3. Plan for synchronization of data between work.com and HR systems with a business process impact.
  4. If you leverage contact tracing, keep in mind that you will need to have person accounts enabled in work.com org.
  5. Have a strategy for security which will have single sign-on, data sharing as key principles.

As always feel free to post your comments or send me an email to buyan@eigenx.com on a work.com readiness kit. My readiness kit will help you on the following

  1. Identify areas in your org for quick impact analysis.
  2. Document security impacts
  3. Map out integration impact in your org.
  4. Help you with a quick estimate of the project.
Please Subscribe

Subscribe to our mailing list to get tips on maximizing your salesforce

We respect your privacy.

Please subscribe

Subscribe to our mailing list and get tips to maximize salesforce to your email inbox.

I am honored to have your subscription. Stay tuned for tips to maximize your salesforce investment

Something went wrong.

Share:
buyan47

Author: buyan47

Hi there! My name is Buyan Thyagarajan. I am a Salesforce consultant specializing in Higher Education, Manufacturing and Marketing Automation. My blogs will help you to maximize your Salesforce CRM investments, prevent problems beforehand and make the right decisions. If you need to talk to me right away, you can email me at buyan47@gmail.com or call me at 302-438-4097

Leave a Reply

Your email address will not be published. Required fields are marked *