Untitled Deck Flashcards

(25 cards)

1
Q

Accessibility configuration

A

An SNR record defining search criteria (visit type, occurrence, days) used by batch jobs to trend patient wait times.

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

Global

A

High-speed M database structures (^SAP, ^SCHED) existing outside the Chronicles hierarchy to optimize schedule searches.

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

Appointment request

A

An ORD record representing a demand for care (like a referral) that has not yet been scheduled into a slot.

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

Joint appointment

A

A single encounter contact (CSN) involving multiple providers or resources with overlapping or touching times.

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

Appointment serial number (ASN)

A

An identifier that links a chain of related contacts, such as an original appointment and all its subsequent reschedules.

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

Slot

A

A time range on a provider’s template (increments of 5 minutes) identified by provider, department, and start time.

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

Opening

A

The capacity within a slot. One opening represents the ability to schedule one appointment.

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

Block

A

A reservation on a slot for specific visit types or patient populations (e.g., “New Patients”).

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

Overbook

A

Extra capacity in a slot beyond regular openings that requires specific security to fill.

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

Schedule

A

The actual calendar created from a template blueprint, containing specific appointments and blocks.

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

Schedule utilization

A

Measures how full a schedule is by comparing booked time and unmitigated late cancels to regular available time.

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

Provider utilization

A

Measures actual care delivery by comparing completed appointment time to regular available time.

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

Determine wait times

A

Query ACCESS_PROV (provider level), ACCESS_DEP (department level), or ACCESS_ALL_DEPS (facility level) using the DAYS_WAIT column.

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

Differentiate request statuses

A

In AppointmentRequestFact, BaseStatus is the Epic-released internal logic, while Status is the customer-defined value seen by users.

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

Identify visits from requests

A

Use EarliestVisitKey in AppointmentRequestFact to link a request to its first resulting encounter in VisitFact.

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

Audit request actions

A

Use APPT_REQ_AUDIT to see a row-by-row history of every action taken on a request.

17
Q

Distinguish appointments vs. visits

A

V_SCHED_APPT contains strictly scheduled appointments. VisitFact contains those plus non-appointment encounters like telephone or home visits.

18
Q

Identify joint appointments

A

Check PAT_ENC_APPT for a single CSN that has multiple rows for different providers or resources.

19
Q

Link reschedules via ASN

A

The first appointment’s CSN becomes the ASN for every subsequent reschedule in that series.

20
Q

Extract scheduling data

A

Understand that schedule data is extracted from M globals into Clarity tables (like AVAILABILITY) typically within a rolling window of T-4 to T+120.

21
Q

Calculate utilization

A

Provider: Completed Time / Regular Available Time. Schedule: (Noncanceled Time + Unmitigated Late Cancel Time) / Regular Available Time.

22
Q

Find original blocks

A

In AVAIL_BLOCK, if REL_BLOCK_C is populated, it represents the original block before a time release occurred.

23
Q

Non-Chronicles Data Dependency

A

Schedule templates and actual calendars are stored in specialized M globals for performance. If a schedule has not been “viewed” or generated in the system, it will not exist in Clarity tables.

24
Q

ASN vs. CSN

A

A CSN (Contact Serial Number) is unique to one specific visit instance. An ASN (Appointment Serial Number) is the “parent” ID that stays constant throughout a chain of cancellations and reschedules.

25
Utilization Logic
Utilization is calculated based on time (minutes) rather than a simple count of slots, because longer appointments (e.g., 60 minutes) utilize more of a provider's capacity than shorter ones.