Associate the Concept CKI with the Correspondence Event Sets

This topic provides information about associating the new concept CKI with the correspondence event sets.

Associating the new concept CKI with the correspondence event sets is required for Oracle Health EHR.

To associate the concept CKI with the correspondence event sets:

  1. In Core Event Manager (CoreEventManager.exe), identify the grouper event sets that include communication event codes. For example, the Correspondence grouper event set may include the General Message, Phone Message, and Reminders event codes. See Finding an Event Set Using Core Event Manager.
  2. For each identified grouper event set, note the associated code value.
  3. For each identified grouper event set, run the query below in Discern Explorer to associate the concept CKI with the grouper event set. In the query, replace <grouper event set code value> with the value identified in Step 2.
    UPDATE code_value
    
    SET concept_cki = 'CERNER!F7E760D1-5EE0-410D-8ADE-5040CCBB861A'
    
    WHERE code_value = <grouper event set code value>
    
    AND code_set = 93
    
    AND (concept_cki is null OR concept_cki = ' ');
    
    COMMIT;