Skip to main content
One row per Elation Billing claim - the bill submitted to a payer for the services on a patient visit. Each claim links to its patient, practice, service location, and the EHR-side bill it corresponds to. Provider data is denormalized: for each of the five roles (rendering, referring, supervising, billing, ordering) the row carries the provider’s name and NPI directly. The table schema can be found in our HDB dbdocs reference. For reporting on but not limited to:
  • All claims for a patient, practice, or date range
  • Claims that have not yet been submitted to a payer (is_billed = false)
  • Original vs. corrected vs. voided submissions via icn_code
  • Per-provider claim volume by joining on the rendering or billing NPI
  • Reconciling Elation Billing claims to EHR bills via bill_id
  • The billing legal entity each claim was submitted under via legal_entity_id
  • Whether a claim is on a biller worklist, and why, by joining worklist / worklist_reason on claim_id
  • Drilling into a single claim by id or local_id
claim.bill_id links the Elation Billing claim back to the EHR-side bill table. It is empty when the claim has no matching bill in HDB - typically claims created directly in Elation Billing without an EHR bill, or claims for warehouses where the bill side is not yet crosswalked.

Claims for a date range

Pulls every claim with a service-date window, with payer-facing detail and the provider who rendered the service.

Unbilled claims

Returns claims that have not been submitted to a payer yet, oldest first. Useful for a “what’s stuck in pre-submission” worklist.

Corrected and voided submissions

Filters to claims that were resubmitted as corrections or voids. icn_code carries the resubmission type (1 = original, 7 = corrected, 8 = void); icn carries the payer’s original control number that the resubmission references.

Claim volume per rendering provider

Aggregates claims and copay collected per rendering provider over the last 90 service days. Filters out deleted claims and rows with no rendering provider attached.

Reconcile a claim with its EHR bill

Joins a single claim to the EHR-side bill table to compare what the practice billed against what was submitted to the payer.

Claims billed against an authorization

Lists the claims attached to a specific prior authorization. The join also returns claim-level service dates so you can see when the authorization was actually used.
Joins each claim to the legal_entity that carries the tax id, NPI, and billing name it was submitted under.
If you have any questions about this topic please reach out to Elation Support Portal with the subject line HDB - <your_question>