Description Usage Arguments Details Value Author(s) Examples
View source: R/oppe_report_query_funtions.R
Get the Denials Detail data for a specified provider.
1 | oppe_denials_detail_query(.provider_id)
|
.provider_id |
The id of the provider you want denial detial for |
Requires a connection to DSS, uses both db_connect()
and db_disconnect()
Has start and end dates set dynamically to look back on data to ensure it has gone through the coding process.
The fields that come back are: *
The tables that are used are:
smsdss.bmh_plm_ptacct_v
smsdss.pract_dim_v
smsdss.drg_dim_v
smsdss.c_lihn_svc_line_tbl
smsdss.c_lihn_op_svc_line_tbl
BMH-3MHIS-DB.MMM_COR_BMH_LIVE.dbo.visit_view
BMH-3MHIS-DB.MMM_COR_BMH_LIVE.dbo.CTC_VISIT
BMH-3MHIS-DB.MMM_COR_BMH_LIVE.dbo.CTC_INSURANCE
BMH-3MHIS-DB.MMM_COR_BMH_LIVE.dbo.CTC_UM_Denial
BMH-3MHIS-DB.MMM_COR_BMH_LIVE.dbo.CTC_UM_APPEAL
A tibble object
Steven P. Sanderson II, MPH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
library(dplyr)
oppe_denials_detail_query(.provider_id = "005892") %>%
glimpse()
# If provider id is not known you can do either of the following
# pract_dim_v_query(.name = "the providers name") and the pract_no will be
# returned to you, or you could do the following:
oppe_denials_detail_query(
.provider_id = pract_dim_v_query(.name = "name_here") %>%
dplyr::pull(pract_no)
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.