Skip to main content

Clients Requiring Insurance Verification widget

The Clients Requiring Insurance Verification widget displays all clients requiring insurance verification (meaning the Verify Eligibility flag is set to 'N'. This widget includes financial eligibility, cross episodic financial eligibility and family financial eligibility records.

The following fields should be displayed in the widget:

  • MR #
  • Client Name (Last, First)
  • Episode #
  • Admit Date
  • Guarantor
  • Policy
  • Sub SSN
  • Guarantor Phone
  • Patient DOB
  • Patient SSN

The items should be listed in order by MR#, Client Name.

If you double-click on the Guarantor link in the list, the applicable Financial EligibilityCross Episodic Financial Eligibility, or Family Financial Eligibility form opens for the selected client.

Clients Requiring Insurance Verification.png

Widget SQL Statement

Because this widget was modified to include all the different financial eligibility types, it was handled in cache code and therefore no SQL code is available. However, if you want to use the queries to create separate individual widgets (Standard FE, Cross Episode FE, Family FE) you could use the following SQL statements to create your own widget to meet your organization's needs.

Standard Financial Eligibility

Select:  EP.PATID, EP.EPISODE_NUMBER, EP.program_value, GOEP.guarantor_order_number, GOEP.GUARANTOR_ID, GEMP.eligibility_verified_value, GUAR.customize_guar_plan_value, GEMP.cov_effective_date, GEMP.cov_expiration_date, SUBS.subs_policy, SUBS.subs_ss_number, GUAR.guar_phone_number, DEMO.patient_ssn, DEMO.date_of_birth, EP.preadmit_admission_date, GOEP.e_unique_id FROM SYSTEM.episode_history EP INNER JOIN SYSTEM.patient_current_demographics DEMO ON ((EP.PATID=DEMO.PATID) AND (EP.FACILITY=DEMO.FACILITY)) WHERE EP.FACILITY=?FACILITY AND EP.date_of_discharge IS NULL AND EP.user_row_access_code = '1' AND GEMP.eligibility_verified_code='N' ORDER BY EP.EPISODE_NUMBER DESC, GOEP.guarantor_order_number

Cross-Episode Financial Eligibility

Select:  GONOEP.PATID, GONOEP.guarantor_order_number, GONOEP.GUARANTOR_ID, GEMP.eligibility_verified_value, GUAR.customize_guar_plan_value, GEMP.cov_effective_date, GEMP.cov_expiration_date, SUBS.subs_policy, SUBS.subs_ss_number, GUAR.guar_phone_number, DEMO.patient_ssn, DEMO.date_of_birth, '' as preadmit_admission_date, GONOEP.por_unique_id FROM SYSTEM.billing_guar_order_no_ep GONOEP WHERE GONOEP.FACILITY=?FACILITY AND GEMP.eligibility_verified_code='N' ORDER BY GONOEP.guarantor_order_number

Family Financial Eligibility

Select:  GOF.FAMID, GOF.PATID, GOF.guarantor_order_number, GOF.GUARANTOR_ID, GEMP.eligibility_verified_value, GUAR.customize_guar_plan_value, GEMP.cov_effective_date, GEMP.cov_expiration_date, GOF.policy_number AS subs_policy, SUBS.subs_ss_number, GUAR.guar_phone_number, DEMO.patient_ssn, DEMO.date_of_birth, '' as preadmit_admission_date, GOF.por_unique_id FROM SYSTEM.patient_family_history FAMH INNER JOIN SYSTEM.family_member_guar_order GOF ON (GOF.PATID=FAMH.PATID AND GOF.FAMID=FAMH.FAMID AND GOF.FACILITY=FAMH.FACILITY) WHERE GOF.FACILITY=?FACILITY AND FAMH.start_date_of_member <= CURRENT_DATE AND (FAMH.end_date_of_member IS NULL OR FAMH.end_date_of_member >=CURRENT_DATE)  AND GEMP.eligibility_verified_code='N' ORDER BY GOF.guarantor_order_number

 

For more information, see the Billing Widget Consoles training guide.