Practice Questions Flashcards

1
Q

A SQL report currently displays the name of the admitting provider for a hospital stay, and you have been asked to change it to instead display the name of the discharging provider for that stay. Which of the following best describes how you should modify your report?
A. Change a table in the FROM clause
B. Change a column in the SELECT clause
C. Change a foreign key in the FROM clause
D. Change a condition in the WHERE clause

A

C. If we want to see who was the discharge provider for the encounter we’d use the DischargingProviderDurableKey column in HospitalAdmissionFact in Caboodle, or DISCHARGE_PROV_ID in PAT_ENC_HSP in Clarity. There’s no need to change the SELECT clause because we still want to see the name of the provider, but just a different provider!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which of the following best describes the relationship between the “Admission Date” and “Inpatient Admission Date”
A. Every encounter that has an Admission date must also have an Inpatient Admission date.
B. They will always be different for a given encounter.
C. They will always be the same for a given encounter.
D. For some encounters they will be the same and for other encounters they differ.

A

D. They would be the same for a direct admission to the hospital but otherwise they could be different. For example, encounters like Hospital Outpatient Visits and ED visits will have an admission date/time but are not guaranteed to have an inpatient admission date/time. Also, ED visits that result in inpatient admissions would have different values for Admission vs. Inpatient Admission.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of the following best describes the master files used to document episodes?
A. There is one HSB record per episode and one HBD record per episode type
B. There is one HSB record per episode and its type is captured in a category list.
C. There is one HBD record per episode and its type is captured in a category list.
D. There is one HBD record per episode and one HSB record per episode type

A

A. An HSB record is created whenever a patient’s episode is created. Organizations can customize what sort of episode types are in their system as well as automatic association. Every episode type
configured in your system is an HBD record.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of the following account for the difference between encounter diagnoses and hospital problems?
A. Associated with patient record vs. patient contact
B. Inpatient encounter vs. outpatient encounter
C. ICD‐10 code vs. flexible terminology
D. One per encounter vs. many per encounter

A

B. Encounter diagnoses and hospital problems both use formal terminology and are both contact level, but are used in different settings. Encounter Diagnoses are best used in the Outpatient/ED settings, while Hospital Problems are best for inpatient admissions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

You are writing a report in Caboodle on patients with diabetes. Working with your application team, you have decided to use the grouper EDG ICD‐10 JCCM DIABETES [1139905]. Which of the
following might appear in your FROM clause?
A. ON DiagnosisBridge.DiagnosisKey = DiagnosisSetDim.DiagnosisKey
B. ON DiagnosisBridge.DiagnosisKey = DiagnosisSetDim.DiagnosisSetKey
C. ON DiagnosisBridge.DiagnosisKey = DiagnosisSetDim.ValueSetEpicId
D. ON DiagnosisBridge.DiagnosisKey = DiagnosisSetDim.Type

A

A. In Caboodle, all joins should be done on a ‐Key column, and to join to DiagnosisSetDim you should always using DiagnosisKey. This allows you to check if the diagnoses you are working with
are in the grouper you want to use.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

You are writing a report on outpatient encounters and want to include the primary diagnosis for each encounter. Which of the following code segments would be correct to include in your query?
(Circle all that apply.)
A. PAT_ENC_DX.PRIMARY_DX_YN = ‘Y’
B. PAT_ENC_HOSP_PROB.PRINCIPAL_PROB_YN = ‘Y’
C. VisitFact.PrimaryDiagnosisKey = DiagnosisDim.DiagnosisKey
D. HospitalAdmissionFact.PrincipalProblemKey = DiagnosisDim.DiagnosisKey

A

A and C. The important aspect of this prompt is “outpatient encounters”. In Clarity, all encounter diagnoses are stored in PAT_ENC_DX, so you are required to filter that to just the one marked as primary. In Caboodle, you have direct foreign key options, but VisitFact is the one that has outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which of the following best describes the information stored in the Clarity column MedicationOrderFact.Class?
A. The chemical family of the medication that has been ordered, e.g. “penicillins” or “phenothiazines”
B. How this medication order is to be routed through the Epic system, e.g. “normal” or “historical”
C. In what setting this medication should be administered, e.g. “inpatient” or “outpatient”
D. The intended purpose of the medication that has been ordered, e.g. “anti‐infective” or “antipsychotic”

A

B. How this medication order is to be routed through the Epic system, e.g. “normal” or “historical”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which of the following best describes the relationship between orders and diagnoses?
A. There is no relationship
B. One‐to‐One
C. Many‐to‐Many

A

C. Many‐to‐Many
Providers can associate more than one diagnosis with an order! Additionally, they can associate the same diagnosis with multiple orders. This is captured using the AssociatedDiagnosisComboKey column in Caboodle in both order tables, and ORDER_DX_PROC/ORDER_DX_MED in Clarity (they’re each one row per diagnosis associated).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which of the following values in the ORD_VALUE column would result in 9999999 in the ORD_NUM_VALUE column in the table ORDER_RESULTS
A. 65 mg
B. Positive
C. 6.9
D. NULL

A

A. 65 mg
B. Positive
A value of 9999999 in the column ORDER_NUM_VALUE means the table ORDER_RESULTS could not cast the value in the column ORD_VALUE as a numeric. So in the values listed above ‘Positive’ cannot be made into a number and ‘65 mg’ cannot be made into a number because of the additional ‘mg’ characters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which of the following could create a new record in the HLV master file?
A. An analyst builds a new SmartData Element by defining its metadata.
B. An analyst adds a SmartData Element to a SmartForm using the SmartForm Designer.
C. A physician enters a value into a SmartData Element.
D. A physician types up a note following their visit with a patient.

A

C. A physician enters a value into a SmartData Element.
The HLV master file captures the values entered into SmartData Elements, also one HLV can hold more than one value. Options A and B are related to the HLX master file, the actual build of the
SmartData Elements (static). Option D is captured in notes, HNO records

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

You want to report on flowsheet values entered into the rows ‘Heart Rate [8]’ and ‘Respiratory Rate [9]’ using Caboodle. Which of the following should appear in your query to only return values entered into those flowsheet rows?
A. FlowsheetRowDim.FlowsheetRowEpicId IN (‘8’, ‘9’)
B. FlowsheetValueFact.FlowsheetValueKey IN (8, 9)
C. FlowsheetValueFact.FlowsheetRowKey IN (8, 9)
D. FlowsheetRowDim.RowType IN (‘8’, ‘9’)

A

A. FlowsheetRowDim.FlowsheetRowEpicId IN (‘8’, ‘9’)

In order to return specific values you need to filter on what row the value was entered in using the FLO record ID. Any column that ends in ‐Key is a surrogate key that does not store the Epic ID, so it should never be used as a filter. RowType can be used to figure out if the FLO record is a group or row, it doesn’t store the ID of the FLO record

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which of the following best describes the data stored in a single IEV record?
A. An episode
B. The definition of a type of event
C. A single event
D. A collection of events

A

D. A collection of events
An IEV record gathers together multiple events, so one IEV record has many events within it. Every event within the IEV record has a corresponding LEV record, which is the event type definition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

If a patient qualifies for the diabetes registry for one year, how many corresponding rows will be in the DM_DIABETES table in Clarity?
A. Exactly 1
B. Approximately 12 (one per month)
C. Approximately 52 (one per week)
D. Approximately 365 (one per day)
E. It depends on how often the DM_DIABETES table is extracted

A

A. Exactly 1
DM_* tables store all the current information for registry members, and they are one row per member. So a diabetic patient has one row in DM_DIABETES that is updated nightly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A patient belongs to the asthma registry for one year. They have 7 of their metrics change throughout the year. How many rows would be added to AsthmaRegistryDataMartX for this patient
after the year?
A. No new rows will be created.
B. 7 rows will be created
C. 12 rows will be created
D. It’s impossible to tell.

A

B. 7 rows will be created
The RegistryDataMartX tables in Caboodle behave a lot like snapshot! When a metric changes, the member gets a new row in the table recording the date of the change. Therefore, if 7 metrics
change then we get 7 new rows in the table. They still have the “IsMostRecent” column that identifies their current row in the table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In Caboodle, you want to find out who has triggered the most alerts in the last month. Which of the following tables would you need to find all alert interactions in the last month and display the name of who triggered it? ﴾Circle all that apply﴿
A. ProviderDim
B. EmployeeDim
C. BpaFact
D. BpaActionTakenFact

A

B. EmployeeDim
C. BpaFact

BpaFact is one row per alert trigger/interaction. So you need that table to find all alerts that were triggered in the last month. Then, to see who triggered it, you’d need to join to EmployeeDim using BpaFact.EmployeeDurableKey.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Andre goes to the clinic to receive their yearly Flu Vaccine. Which of the following tables would you expect to find a row for Andre’s encounter? Choose all that apply.
A. EncounterFact
B. VisitFact
C. HospitalAdmissionFact
D. EdVisitFact

A

A. EncounterFact
B. VisitFact
All patient encounters get extracted to EncoutnerFact. VisitFact is all “outpatient face‐to‐face” encounters, and every organization has control over what they consider outpatient face‐to‐face. However,
based on Epic released definitions, you can assume that encounter types like “Office Visit” and “Immunization” would be included in that list.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Classify the following providers by whether they are associated with a specific encounter or the
patient as a whole:
A. Visit Provider: ___________________________________
B. Primary Care Provider: ___________________________________
C. Treatment Team: ___________________________________
D. Care Team: ___________________________________
E. Attending Provider: ___________________________________

A

A. Visit Provider: encounter level (OP)
B. Primary Care Provider: patient level
C. Treatment Team: encounter level (IP)
D. Care Team: patient level
E. Attending Provider: encounter level (IP)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Which of the following concepts are captured using LPL records? Choose all the apply.
A. Reasons for Visit
B. Encounter Diagnosis
C. Hospital Problems
D. The Problem List

A

C. Hospital Problems
D. The Problem List

LPL records are used to track a patient’s diagnosis overtime. The major reporting use cases for that are for chronic or long term conditions (the patient’s problem list) or the diagnoses addressed during an inpatient stay (hospital problems).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

You need to use the ‘QM‐CANCER [109341]’ Diagnosis grouper in a report. Which of the following conditions should show up in your WHERE clause after joining to GROUPER_COMPILED_REC_LIST?
Choose ONE of the following.
A. GROUPER_COMPILED_REC_LIST.BASE_GROUPER_ID = 109341
B.GROUPER_COMPILED_REC_LIST.GROUPER_RECORDS_VARCHAR_ID = ‘109341’
C.GROUPER_COMPILED_REC_LIST.GROUPER_RECORDS_NUMERIC_ID = 109341
D. GROUPER_COMPILED_REC_LIST.COMPILED_CONTEXT = ‘109341’

A

A. GROUPER_COMPILED_REC_LIST.BASE_GROUPER_ID = ‘109341’

Tables that extract groupers allow you to evaluate what records belong to a specific grouper. To do so, you’ll filter the table using the record ID of the grouper. In GROUPER_COMPILED_REC_LIST, the column that extracts the ID of the grouper that made the list is BASE_GROUPER_ID.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Which order characteristic would allow you to find only medications that should be taken at home (prescriptions)? Choose ONE of the following.
A. Type
B. Class
C. Mode

A

C. Mode

When orders are placed, mode is a property that indicates the setting the order should be completed in. For medication orders, a mode of “outpatient” indicates it should be taken at home and is
used to report on prescriptions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Which of the following values stored in LabComponentResultFact.Value would be NULL in
LabComponentResultFact.NumericValue? Choose ALL that apply.
A. Positive
B. 24
C. >10
D. 7.84

A

A. Positive
C. >10
The NumericValue column is derived by attempting to CAST() whatever value is stored in the Value column as a numeric. If the Value cannot be cast as number, then the NumericValue column will store a NULL. Both ‘Positive’ and ‘>10’ cannot be stored in the Numeric data type, so instead there will be a NULL in the column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

You discover that a data point you need in a report is captured in a SmartData Element with the context of “order”. Which column in SMRTDTA_ELEM_DATA would you join with ORDER_PROC.ORDER_PROC_ID to use the values captured? Choose ONE of the following.
A. RECORD_ID_VARCHAR
B. RECORD_ID_NUMERIC
C. CONTACT_SERIAL_NUM

A

B. RECORD_ID_NUMERIC
To connect an order to all HLV records created for it, you would have to join ORDER_PROC to SMRTDTA_ELEM_DATA. Because every order is an ORD record, the column ORDER_PROC_ID extracts the
ORD .1 and is a numeric data type. Therefore, you’d join on ORDER_PROC_ID = RECORD_ID_NUMERIC.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

You want to find all values entered in the flowsheet row “Seizure Duration” over the past month. Which ID should you use to limit your results to only Seizure Duration values? Choose ONE of the
following.
A. FSD ID
B. FLO ID
C. FLT ID

A

B. FLO ID
All flowsheet values are stored in FSD records, but to identify specific values like Blood Pressure or Seizure Duration you need to assess what row the value was entered into. Flowsheet rows are FLO
records, and they function as the “Attribute” in the EAV data model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

In Caboodle, one alert interaction (ALT contact) could generate multiple rows in the table BpaActionTakenFact. What about an alert would create multiple rows in this table?
A. Alerts can be triggered more than once within a single patient encounter
B. The same alert can fire for more than one patient encounter
C. Alerts can appear to users throughout their clinical workflows
D. Users can take more than one action upon an alert

A

D. Users can take more than one action upon an alert

BpaActionTakenFact is one row per action taken per alert. So one user could take 3 actions on one alert, and each action would get its own row in the table. BpaFact is one row per encounter, so it would only have 1 row in this scenario.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Consider the Clarity table DM_IP_READMISSION. Members of the Inpatient Readmission registry are encounters. A qualifying encounter’s data changes on one metric. What happens?
A. The table creates a new, additional row for the encounter within 24 hours
B. The table creates a new, additional row for the encounter at the end of the month
C. The table updates the existing row describing the encounter at the end of the month
D. The table updates the existing row describing the encounter within 24 hours

A

D. The table updates the existing row describing the encounter within 24 hours

DM* tables in Clarity are updated nightly, but only store the most current values for each metric

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Which of the following best describes the HRV master file?
A. The HRV master file stores both reasons for visit and chief complaints
B. The HRV master file stores chief complaints but not reasons for visit
C. The HRV master file stores neither reasons for visit nor chief complaint
D. The HRV master file stores for visit but not chief complaints

A

A. The HRV master file stores both reasons for visit and chief complaints

Reason for visit and chief complaint are completely synonymous terms. HRV is the static master file for this concept.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Which of the following might you see as a value in the Caboodle column ProcedureOrderFact.Type? Choose all that apply:
A. Lab
B. Imaging
C. Referral
D. Medications

A

A. Lab
B. Imaging
C. Referral

All medications orders have the type medications so it would be impossible for a row in ProcedureOrderFact to have the type medications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

Which of the following best describes the relationship between administration and actions on the MAR?
A. One-to-One
B. No Relationship
C. Many-to-Many
D. One (admin) -to- many (actions)

A

A. One-to-One
Each administration has one documented action. Examples include “Give” or “Canceled”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

Which of the following Caboodle tables must be included to display the diagnoses documented for a specfic inpatient encounter? Choose all that apply:
A. ChiefComplaintDim
B. DiagnosisDim
C. DiagnoisisEventFact
D. CheifComplaintEventFact

A

B. DiagnosisDim
C. DiagnoisisEventFact

Inpatient admission means the hospital problems, which use formal diagnoses, so DiagnosisDim will be involved. DiagnosisEventFact will need to connect the inpatient admissions to all Hospital Problems addressed. You also need to filter it using type=hospital problem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

While a physician writes a note, the value ‘yes’ is filled for SDI EPIC#PECN0001. This SmartData Element has the context “Note”. What changes occur in Caboodle and Clarity? Choose all that apply:
A. A new row is created in AttributeDim storing ‘yes’
B. A new row is created in ClinicalNoteAttributeValueDim storing ‘yes’
C. A new row is created in SMRTDTA_ELEM_VALUE storing ‘yes’
D. A new row is created in CLARITY_CONCEPT storing ‘yes’

A

B. A new row is created in CLinicalNoteAttributeValueDim storing ‘yes’
C. A new row is created in SMRTDTA_ELEM_VALUE storing ‘yes’

All SmartData Elements that exisit in your system (HLX records) are rows in AttributeDim and CLARITY_CONCEPT. All values entered go to <context> AttributeValueDim depending on their context in Caboodle and SMARTDTA_ELEM_VALUE in Clarity</context>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

Which of the following best describes how to join provider and user foreign keys in Clarity?
A. Foreign keys ending in PROV_ID should be joined to the primary key CLARITY_SER while foreign keys ending in USER_ID should be joined to the primary key of CALRITY_EMP

B. Foreign keys ending in USER_ID should be joined to the primary key CLARITY_SER while foreign keys ending in PROV_ID should be joined to the primary key of CALRITY_EMP

C. Both foreign keys ending in PROV_ID and foreign keys ending in USER_ID should be joined to the primary key of CLARITY_SER

D. You can join foreign keys ending in USER_ID and PROV_ID to the primary key of either CLARITY_SER or CLARITY_EMP, either way it accomplishes the same thing

E. Both foreign keys ending in PROV_ID and forign keys ending in USER_ID should be joined to the primary key of CALRITY_EMP

A

A. Foreign keys ending in PROV_ID should be joined to the primary key CLARITY_SER while foreign keys ending in USER_ID should be joined to the primary key of CALRITY_EMP

SER and EMP are distinct master files whose .1 values may not be the same for the same person. In Clarity, PROV_ID is the naming convention for SER keys, while USER_ID is used for the EMP keys

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

Which of the following best describe what a row is in the FlowsheetValueFact?
A. A value entered into a flowsheet
B. A FSD record
C. A Flowsheet group
D. The definition of a flowsheet row

A

A. A value entered into a flowsheet

Flowsheet data is stored in the FSD in Chronicles and all of the values entered end up in FlowsheetValueFact. Each row in the table is a filled cell in a flowsheet, aka an individual value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

Which of the following associations make sense? Choose all that apply
A. An EDG record associated with an EPT record
B. An HRV record associated with an EPT record
C. An HRV record associated with an EPT contact
D. An EDG record associated with an EPT contact

A

A. An EDG record associated with an EPT record
C. An HRV record associated with an EPT contact
D. An EDG record associated with an EPT contact

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

You have been asked to write a report that lists patients who have had an office visit in the last year with an encounter diagnosis of Low Back Pain. Display the patient’s name, primary mrn, current gen pcp, and the department the encounter occurred in. Which of the following table o you need to satisfy the request? choose all that apply:

A. PROBLEM_LIST
B. PAT_ENC
C. CLARITY_DEP
D. PAT_ENC_DX
E. PAT_ENC_RSN_VISIT
F. PATIENT
G. CLARITY_EMP
H. CLARITY_SER

Your report requester would also like to add the provider that treated the patient during the encounter. Which of the following actions should you take?
A. Include another join to CALRITY_SER using the column PROV_ID in HSP_TRTMT_TEAM
B. Do nothing, PCP already capture this
C. Include a join to CALRITY_EMP using column VISIT_PROV_ID in PAT_ENC
D. Include another join to CALRITY_SER using column VISIT_PROV_ID in PAT_ENC

A

B. PAT_ENC
C. CLARITY_DEP
D. PAT_ENC_DX
F. PATIENT
H. CLARITY_SER
you need PATIENT to figure out the patient’s MRN, name, and who their PCP is. LAstly, CLARITY_SER nad CLARITY_DEP are needed to display the names of the provider and department

D. Include another join to CALRITY_SER using column VISIT_PROV_ID in PAT_ENC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Admission Provider: inpatient or outpatient

A

inpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

All visit providers: inpatient or outpatient

A

outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

Attending Provider: Inpatient or outpatient

A

inpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

Care Team: Inpatient or Outpatient Services

A

Outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

Current General PCP: Inpatient or Outpatient

A

Outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

Discharge Provider: Inpatient or Outpatient

A

Inpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

First Visit Provider: Inpatient or Outpatient

A

Outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

Provider Identifier: Inpatient or Outpatient

A

Outpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

Treatment Team: Inpatient or Outpatient

A

Inpatient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

Master File for Providers

A

SER

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

Master File for Users

A

EMP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

Master File for Patients

A

EPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

True or False: when someone is discharged from the facility their “most recent department” is their discharged department

A

True

Items like I EPT 18880 represent the “most current” value in Chronicles, but they can only hold the “most current” value as of the most recent extract in Clarity and Caboodle.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

What table extracts both HSB and HBD data?

A

EpisodeFact

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

A specific instance of interaction with a patient, stored in the EPT master file in Epic.

A

Contact

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

A slice in time representing an interaction with a patient, documented as a contact in the EPT master file.

A

Encounter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

The classification of an encounter based on the nature of the interaction (e.g., office visit, telephone encounter, hospital admission).

A

Encounter Type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

An individual who provides care to patients, represented by a record in the SER master file.

A

Provider

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

An individual or entity that can log in to the Epic system, represented by a record in the EMP master file.

A

User

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

A specific area within a healthcare facility where patient care is provided, represented by a record in the DEP master file.

A

Department

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

A collection of encounters grouped together to address the same persistent condition, stored in the HSB master file.

A

Episode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

What is included within the “hospital” encounter type:

A

1.inpatient stays
2.emergency department visits
3.hospital outpatient visits
4.observations
5.pre-admission workflows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
57
Q

What determines which encounters are included in which encounter tables

A

Encounters are included in specific tables based on their type and setting (e.g., inpatient admissions in HospitalAdmissionFact, ED visits in EdVisitFact).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
58
Q

Difference between various provider associations (PCP vs. Visit Provider vs. Attending Provider)

A

PCP (Primary Care Provider): Oversees the patient’s overall care.
Visit Provider: Responsible for the specific encounter.
Attending Provider: Primary medic during an ED visit or hospital admission.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
59
Q

who/what has a provider record and who/what has a user record

A

Providers have SER records, while users have EMP records. A single person can have both if they provide care and log in to the system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
60
Q

The difference in “when” reporting between outpatient and inpatient encounters

A

Outpatient encounters typically occur within a single day, while inpatient encounters span multiple days and involve multiple key events (e.g., admission, discharge).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
61
Q

The relationship between episodes and encounters

A

Episodes group together multiple encounters related to the same condition. Encounters can be automatically or manually attached to episodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
62
Q

Fact table are generally what? Static or Dynamic

A

Dynamic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
63
Q

Dim tables are generally what? Static or Dynmaic

A

Static

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
64
Q

True or False: It is best practice to begin your query with tables extracting from dynamic master files, then join to tables extracting from static master files as needed.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
65
Q

If you want to know what chief complaints were documented do you use ChiefComplaintBridge or EventFact?

A

ChiefComplaintBridge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
66
Q

If you want to know more specific information about an event, do you use a Bridge table or Fact?

A

Fact

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
67
Q

For any table that list DiagnosisEventFact, by implication that table must be filtered on…..

A

Type = “Hospital Problem” or Type = “Problem List”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
68
Q

If you wanted to know the problems for an inpatient encounter, what table would you use?

HospitalAdmissionFact
ProblemListFact

A

HospitalAdmissionFact

69
Q

Stored on the encounter (e.g., outpatient visits)

A

Point-in-Time Diagnoses

70
Q

Stored on the problem list (e.g., chronic conditions)

A

Persistent Diagnoses

71
Q

The patient’s motivation for seeking medical care, often described in informal language (e.g., “my arm hurts”). Stored in the HRV master file.

A

Reason for Visit

72
Q

The clinician’s determination of the patient’s condition, described in formal language and often coded (e.g., ICD-10). Stored in the EDG master file.

73
Q

A list of persistent conditions that a patient has, which spans time and is not limited to a single encounter (e.g., chronic conditions like diabetes). Stored in the LPL master file.

A

Problem List

74
Q

Problems associated with a specific inpatient admission, which can include conditions present on admission or acquired during the hospital stay. Stored in the LPL master file and linked to the encounter

A

Hospital Problem

75
Q

Return the Visit Diagnoses for an Encounter

A

Use the DiagnosisEventFact table in Caboodle or the PAT_ENC_DX table in Clarity, filtering for encounter diagnoses.

76
Q

Return the Chief Complaints for an Encounter

A

Use the ChiefComplaintEventFact table in Caboodle or the PAT_ENC_RSN_VISIT table in Clarity

77
Q

Return the Hospital Problems for an Admission

A

Use the DiagnosisEventFact table in Caboodle, filtering for hospital problems, or the PAT_ENC_HOSP_PROB table in Clarity

78
Q

Return the Entries on a Patient’s Problem List

A

Use the ProblemListFact table in Caboodle or the PROBLEM_LIST table in Clarity

79
Q

Identify the Primary Diagnosis for an Encounter

A

Use the DiagnosisEventFact.IsPrimary column in Caboodle or the PAT_ENC_DX.PRIMARY_DX_YN column in Clarity.

80
Q

Identify the Principal Problem for an Admission

A

Use the HospitalAdmissionFact.PrincipalProblemKey in Caboodle or the PAT_ENC_HOSP_PROB.PRINCIPAL_PROB_YN column in Clarity.

81
Q

Filter a Patient’s Problem List by Status, Noted Date, or Resolved Date

A

Use the ProblemListFact.Status, ProblemListFact.StartDateKey, and ProblemListFact.EndDateKey columns in Caboodle, or the PROBLEM_LIST.PROBLEM_STATUS_C, PROBLEM_LIST.NOTED_DATE, and PROBLEM_LIST.RESOLVED_DATE columns in Clarity

82
Q

The patient’s reason for visit, described informally

A

Chief Complaint

83
Q

The clinician’s diagnosis for a specific encounter, documented formally

A

Encounter Diagnosis

84
Q

Problems associated with an inpatient admission, including conditions present on admission or acquired during the stay

A

Hospital Problem

85
Q

A list of persistent conditions that span time and are not limited to a single encounter.

A

Overall Problem List

86
Q

A record in the __master file represents a __defined in your system.

A

ERX, Medication

87
Q

A record in the __master file represents a __defined in your system, which could be____.
Examples of procedures include___

A

EAP, Procedure

lab work, imaging, supplies, referrals, actual procedures, and charges

88
Q

A record in the __master file represents an__placed in your system, which is a__for either a__or a__.

A

ORD, order, request, medication, procedure

89
Q

Order___categorizes the thing being requested by the order.

90
Q

Order____is used to determine to where an order is routed after it is placed.

91
Q

Order___is a property of the order used to capture the setting the order should be completed.

A

Mode

For example, a medication intended to be administered during a hospital admission would have a mode of “inpatient”, while a medication intended to be taken at home after discharge would have a mode of “outpatient”.

92
Q

a request for something to happen in the system now.

A

normal order

93
Q

a __ order only makes a single request for its specified action to occur. However, that single request is delayed until a later, to-be-determined time.

94
Q

A ____ order is designed to make a request for something to happen in the system multiple times

95
Q

If you want to report on orders and the encounters in which they were placed

A. parent (or normal) orders
B. child (or normal) orders
C. link parent and child orders

A

A. parent (or normal) orders

96
Q

if you want to report on orders and both the encounters in which they were placed and the results of the lab tests performed because of them

A. parent (or normal) orders
B. child (or normal) orders
C. link parent and child orders

A

C. link parent and child orders

97
Q

if you want to report on orders and the results of the lab tests performed because of them

A. parent (or normal) orders
B. child (or normal) orders
C. link parent and child orders

A

B. child (or normal) orders

98
Q

You placed three orders: one normal, one future, and one standing. How many do you see listed in Order Review? Which orders do you see and not see, and why?

A

We see the future and standing orders but not the normal order, because normal orders don’t produce child orders.

99
Q

a __ may contain information about the patient’s progress, about a plan for treatment, or about clinical observations before surgery.

100
Q

After the addendum is signed, it becomes a new ___ on the existing note record.

101
Q

True or False: Events are highly customizable

A

true

if there is a timestamp that you need to track that exists outside of standard items, your organization could create an event to capture it.

102
Q

Events “entity”: ___

A

The encounter/patient

103
Q

Events “attribute”: ___

A

Event Type

104
Q

Events “value”: ___

A

The time at which the event happened

105
Q

If a patient or encounter qualifies for more than one registry how many RDT records will they have?

106
Q

if Riley is a member of the Asthma registry for one year, how many rows will they have in the table DM_ASTHMA?

107
Q

How many rows will they have in the table DM_ASTHMA_HX?

108
Q

A substance used for medical treatment, especially a medicine or drug.

A

Medication

109
Q

A medical test or operation.

110
Q

A request for a medication or procedure to be performed.

111
Q

Determines where an order is routed after being placed.

A

Order Class

112
Q

Indicates the setting in which the order should be completed (e.g., inpatient, outpatient).

A

order Mode

113
Q

Categorizes the thing being requested by the order (e.g., medication, lab test).

A

order type

114
Q

An order that authorizes the future release of child orders.

A

parent order

115
Q

An order that performs the action desired by the requestor.

A

child order

116
Q

A request for something to happen immediately.

A

normal order

117
Q

A request for a single action to occur at a later time.

A

future order

118
Q

A request for repeated actions, either on a regular schedule or ad hoc.

A

standing order

119
Q

A part of a procedure order result, such as a specific test result.

120
Q

A record of medication administrations.

A

MAR (Medication Administration Record)

121
Q

the act of giving a medication to a patient.

A

administration

122
Q

The specific action taken during medication administration (e.g., Given, Deferred).

123
Q

ERX Master File

A

Medications

124
Q

EAP Master File

A

Procedures

125
Q

ORD Master File

126
Q

A record of pertinent information about a patient, written during an encounter.

127
Q

A revision to a signed note, creating a new contact on the original note record.

128
Q

Discrete questions used to record patient information in a reportable manner

A

SmartData Element (SDE)

129
Q

The setting or situation in which an SDE is used (e.g., Patient, Encounter, Order).

130
Q

The unique identifier for an SDE

A

SmartData Identifier (SDI)

131
Q

The subject or thing being described in the EAV data model (e.g., a patient)

132
Q

A characteristic or property of the entity in the EAV data model (e.g., temperature, blood pressure).

133
Q

The actual data for the attribute in the EAV data model (e.g., 98.6°F, 120/80 mmHg).

134
Q

A tool used to document a wide range of patient data over time.

135
Q

Defines the groups and rows that can appear on a Flowsheet.

A

flowsheet template

136
Q

A collection of rows in a Flowsheet, used to organize patient information.

A

flowsheet group

137
Q

Documents specific pieces of patient data over time

A

flowsheet row

138
Q

Independent entities attached to or within a patient, documented in Flowsheets.

A

LDA (Lines, Drains, Airways)

139
Q

A discrete moment or action within a patient encounter, tracked using the IEV master file.

140
Q

What a record and a contact in the HNO master file represent

A

A record represents a note, while a contact represents a version or snapshot of the note over time.

141
Q

Why reporting on notes is undesirable

A

Free text is unstructured, making it difficult to standardize and report on.

142
Q

The impact of context on SmartData Elements:

A

Context determines how and where SDE data is stored and how it should be joined in reports.

143
Q

Why the data type of the value column in any EAV data model must be String:

A

to accommodate various data types (e.g., numeric, datetime) within a single column

144
Q

The important considerations for working with the EAV data model

A

Filtering for specific attributes, pivoting data, identifying absence of data, and handling data types

145
Q

What it takes to uniquely identify LDA Flowsheet data

A

Use the LINE in IP_FLOWSHEET_ROWS to distinguish between occurrences and join to IP_FLWSHT_MEAS

146
Q

The difference between measurement time and documented time

A

Measurement time is when the data was collected, while documented time is when it was entered into the system.

147
Q

How INP records relate to other Flowsheet master files

A

INP records connect encounters to FSD records, linking Flowsheet data to patient encounters

148
Q

A collection of records that define a specific population of study, such as patients with a particular condition, based on predefined criteria.

149
Q

The criteria that determine whether an entity (e.g., patient, encounter) qualifies for membership in a registry.

A

Inclusion Rule

150
Q

A specific piece of data tracked for all members of a registry, such as the most recent Hemoglobin A1c test result in a diabetes registry.

151
Q

A collection of tables designed to simplify reporting on registry data, breaking down and reassembling data from RDT records

A

Registry Data Mart

152
Q

Advantages of Using Registries:

A

Consistency: Ensures a single, agreed-upon definition of a population, allowing for consistent and comparable reports across the organization.

Efficiency: Reduces the effort required to define and track populations, as the work is done once and shared across the organization.

Accuracy: Provides a reliable framework for tracking metrics, ensuring that all relevant data is captured and reported accurately.

153
Q

An automatic notification in the Epic system that informs providers when certain conditions are met, helping them make informed decisions.

154
Q

Formerly known as BestPractice Advisories (BPA), these are customizable alerts configured to fire for specific situations, providing guidance and reminders to providers.

A

OurPractice Advisory (OPA)

155
Q

The Difference Between an ALT Record and an ALT Contact

A

ALT Record: Created for each alert definition that a patient encounter qualifies for. It represents the alert itself.

ALT Contact: Created when a user interacts with the patient contact associated with the alert. It represents the user interaction with the alert.

156
Q

What is the primary purpose of documenting encounters in Epic?

A) To schedule appointments
B) To store information about patient interactions
C) To generate billing codes
D) To manage staff schedules

A

B) To store information about patient interactions

157
Q

Which encounter type is used for a patient arriving without a prior appointment?

A) Appointment [50]
B) Office Visit [101]
C) Walk-in [2]
D) Telephone [70]

A

C) Walk-in [2]

158
Q

Which table in Clarity is used for reporting on all encounters?

A) PAT_ENC_HSP
B) F_ED_ENCOUNTERS
C) PAT_ENC
D) HH_PAT_ENC

A

C) PAT_ENC

159
Q

Which encounter type is used for inpatient stays, including ED visits and hospital outpatient visits?

A) Home Care Visit [91]
B) Hospital Encounter [3]
C) Abstract [150]
D) History [109]

A

B) Hospital Encounter [3]

160
Q

True or False: The VisitFact table in Caboodle includes only inpatient encounters.

161
Q

True or False: The encounter identifier is stored in I EPT 8.

162
Q

True or False: The CodedHospitalAdmissionFact table in Caboodle is relevant for regulatory, readmission, and mortality reporting.

163
Q

Where is patient data stored in Epic?

A) SER master file
B) EMP master file
C) EPT master file
D) PAT master file

A

C) EPT master file

164
Q

Which column in Caboodle is used to identify the patient primary MRN?

A) PatientDim.DurableKey
B) PatientDim.PrimaryMrn
C) PatientKey
D) PatientDurableKey

A

B) PatientDim.PrimaryMrn

165
Q

Which provider association is responsible for overseeing the patient’s overall care?

A) Visit Provider
B) Admission Provider
C) Current General PCP
D) Discharge Provider

A

C) Current General PCP

166
Q

Which table in Clarity includes encounters with a type of “Hospital Encounter”?

A) PAT_ENC
B) PAT_ENC_HSP
C) HH_PAT_ENC
D) F_ED_ENCOUNTERS

A

B) PAT_ENC_HSP

167
Q

What is the foreign key typically named in Clarity to look up the patient associated with an encounter?

A) PAT_ID
B) PAT_MRN_ID
C) PROV_ID
D) USER_ID

168
Q

True or False: In Caboodle, linking encounters to patients involves using foreign keys like PatientKey and PatientDurableKey.