Professional Billing Flashcards
What is the difference between the CUR_PCP_PROV_ID column in the PATIENT table and the data in the PAT_PCP table?
CUR_PCP_PROV_ID lists the patient’s general PCP at the time of the most recent extract and load process. PCP_PROV_ID will contain all PCP’s, current and prior, for all patients.
Is it possible for a patient to have more than one coverage? Which table lists all the coverages that a patient has?
Yes, COVERAGE_MEM_LIST
Guarantor accounts (EAR master file records) can be used for multiple patients. What table is used to find the relationship?
ACCT_GUAR_PAT_INFO
You have been asked to write a report that lists each patient and their current general PCP. The report should include that patient’s name and the provider’s name. Which tables do you need? How would you link the tables together?
PATIENT, CLARITY_SER
Link: PATIENT.CUR_PCP_PROV_ID = CLARITY_SER.PROV_ID
Is a detail type 1 (charge) positive or negative?
Positive
Suppose a user enters a charge, posts a payment, and distributes the payment to the charge. How many records are created in TDL? Name the records.
4; charge, payment, charge matched to payment and, payment matched to charge.
You have been asked to write a report that lists voids entered this month on charges that were entered in prior months. What fields would you use?
Find Detail Type 10 with a POST_DATE in this month and an ORIG_POST_DATE prior to this month.
Typically, how often are aging records extracted into Clarity?
Monthly
What determines if an aging record will get created in Clarity?
If there is a non-zero balance on the transaction
How would you determine the age of a record based on service date? Write the formula.
Subtract the ORIG_SERVICE_DATE from the POST_DATE
How would you determine the age of a record based on post date? Write the formula.
Limit your report to Detail Types 60 and 61. Subtract the ORIG_POST_DATE from the POST_DATE
Where should Hyperspace users go to post a denial?
The Insurance Payment Posting activity.
From what source tables do the two Explanation of Benefits views, V_ARPB_REIMBURSEMENT, and V_ARPB_REMIT_CODES, get most of their information?
PMT_EOB_INFO_I and PMT_EOB_INFO_II
How can you determine which TAR records are still in a workqueue?
Each row in V_ARPB_CHG_WQ with no exit date is a TAR currently in a CRWQ.
How can you tell the difference between charges that were successfully filed to ETR and those that were deleted?
The PRE_AR_CHG.CHARGE_STATUS_C will be 1 or 2 (filed) or 4 (deleted)
How is it possible to get the percentage of charges performed in the past week that file cleanly (are not caught in a charge review workqueue)?
For all rows in PRE_AR_CHG with a SERVICE_DATE in the past week, divide the count of all rows with a CHARGE_STATUS_C of 1 (filed without review), by the count of all rows.