Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: IBY778PO

IBY778PO.m

Go to the documentation of this file.
  1. IBY778PO ;AITC/DTG - Post-Installation for IB patch 778; OCT 04, 2023
  1. ;;2.0;INTEGRATED BILLING;**778**;MAR 21,1994;Build 28
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. ;
  1. ; Reference to ^XPDUTL in ICR #10141
  1. ; Reference to ^XPDMENU in ICR #1157
  1. Q
  1. ;
  1. POST ; POST-INSTALL
  1. N IBXPD,SITE,XPDIDTOT
  1. ; total number of work items
  1. S XPDIDTOT=4
  1. ;
  1. ;
  1. D MES^XPDUTL("")
  1. ;
  1. ; Correct the spelling of a specific Type of Plan
  1. D FIXNM(1)
  1. ;
  1. ;add new option to IBCN INS RPTS
  1. D ADDRPT(2)
  1. ;
  1. ; add new option to IBCN INS RPTS
  1. D ADDRPT2(3)
  1. ;
  1. ; update the abbreviations for several Type of Plans
  1. D ABBREV(4)
  1. ;
  1. D MES^XPDUTL("") ; Displays the 'Done' message and finishes the progress bar
  1. D BMES^XPDUTL("POST-Install for IB*2.0*778 Completed.")
  1. Q
  1. ;============================
  1. ;
  1. ; HEALTH MAINTENANCE ORGANIZ
  1. FIXNM(IBXPD) ; update name in file 355.1 from HEALTH MAINTENANCE ORGANIZ to HEALTH MAINTENANCE ORGANIZATION
  1. ;
  1. S IBXPD=$G(IBXPD),XPDIDTOT=$G(XPDIDTOT)
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT)
  1. D MES^XPDUTL("-------------")
  1. N DA,DR,DIE,IBERR,IBIEN,IBNEWNM,IBOLDNM
  1. S IBOLDNM="HEALTH MAINTENANCE ORGANIZ",IBNEWNM="HEALTH MAINTENANCE ORGANIZATION"
  1. S IBIEN=$$FIND1^DIC(355.1,,"MX",IBOLDNM,"","","IBERR")
  1. I 'IBIEN D G FIXEX
  1. . D BMES^XPDUTL("The entry 'HEALTH MAINTENANCE ORGANIZ' for file #355.1 was not found. No change needed")
  1. S DR=".01///"_IBNEWNM
  1. S DA=IBIEN,DIE="^IBE(355.1," D ^DIE
  1. D BMES^XPDUTL("The entry 'HEALTH MAINTENANCE ORGANIZ' for file #355.1 has been changed to")
  1. D BMES^XPDUTL("'HEALTH MAINTENANCE ORGANIZATION'.")
  1. FIXEX ;
  1. ;
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT_" Complete")
  1. D MES^XPDUTL("-------------")
  1. Q
  1. ;
  1. ADDRPT(IBXPD) ; add new report IBCN EDI PAYER ID REPT to IBCN INS RPTS
  1. ;
  1. S IBXPD=$G(IBXPD)
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_$G(XPDIDTOT))
  1. D MES^XPDUTL("-------------")
  1. D BMES^XPDUTL("Add report option: IBCN EDI PAYER ID REPT")
  1. D MES^XPDUTL(" To Menu: IBCN INS RPTS")
  1. D BMES^XPDUTL(" ")
  1. ;
  1. ; ICR #1157 for the usage of $$ADD^XPDMENU
  1. ;
  1. N IBMENU,IBNAM,IBOER,IBRET,IBSYN,IBCHK
  1. S IBOER="",IBCHK=""
  1. ;
  1. ;
  1. S IBOER=0,IBMENU="IBCN INS RPTS" D
  1. . S IBNAM="IBCN EDI PAYER ID REPT",IBSYN="EP"
  1. . ;
  1. . S IBRET=$$ADD^XPDMENU(IBMENU,IBNAM,IBSYN)
  1. . ;
  1. . I IBRET D MES^XPDUTL("Option: "_IBNAM_" added to menu: "_IBMENU) Q
  1. . S IBOER=1 D MES^XPDUTL("Not able to add Option: "_IBNAM_" to menu: "_IBMENU)
  1. ;
  1. ADDRPTQ ; quit point
  1. ;
  1. ; option remove end point
  1. D BMES^XPDUTL("Add report options to menus was"_($S('IBOER:"",1:" not"))_" successful")
  1. Q
  1. ;
  1. ADDRPT2(IBXPD) ; add new report IBCN DUP GRP PLAN BY INS RPT to IBCN INS RPTS
  1. ;
  1. S IBXPD=$G(IBXPD)
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_$G(XPDIDTOT))
  1. D MES^XPDUTL("-------------")
  1. D BMES^XPDUTL("Add report option: IBCN DUP GRP PLAN BY INS RPT")
  1. D MES^XPDUTL(" To Menu: IBCN INS RPTS")
  1. D BMES^XPDUTL(" ")
  1. ;
  1. ; ICR #1157 for the usage of $$ADD^XPDMENU
  1. ;
  1. N IBMENU,IBNAM,IBOER,IBRET,IBSYN,IBCHK
  1. S IBOER="",IBCHK=""
  1. ;
  1. ;
  1. S IBOER=0,IBMENU="IBCN INS RPTS" D
  1. . S IBNAM="IBCN DUP GRP PLAN BY INS RPT",IBSYN="LD"
  1. . ;
  1. . S IBRET=$$ADD^XPDMENU(IBMENU,IBNAM,IBSYN)
  1. . ;
  1. . I IBRET D MES^XPDUTL("Option: "_IBNAM_" added to menu: "_IBMENU) Q
  1. . S IBOER=1 D MES^XPDUTL("Not able to add Option: "_IBNAM_" to menu: "_IBMENU)
  1. ;
  1. ADDRPT2Q ; quit point
  1. ;
  1. ; option remove end point
  1. D BMES^XPDUTL("Add report options to menus was"_($S('IBOER:"",1:" not"))_" successful")
  1. Q
  1. ;
  1. ;
  1. ABBREV(IBXPD) ; update the ABBREVIATION field #.02 in the TYPE OF PLAN file #355.1
  1. ;
  1. N IBCNT,IBFNDNM,IBL,IBOLDAB,IBONAME,IBNEWAB
  1. S IBXPD=$G(IBXPD),XPDIDTOT=$G(XPDIDTOT)
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT)
  1. D MES^XPDUTL("-------------")
  1. D MES^XPDUTL("Changes made (or not made) to the TYPE OF PLAN file #355.1:")
  1. D MES^XPDUTL(" ")
  1. N IBNEWAB,IBOLDAB
  1. F IBCNT=1:1 S IBL=$T(ABLIST+IBCNT),IBOLDAB=$P(IBL,";",3) Q:IBOLDAB="" D
  1. . S IBNEWAB=$P(IBL,";",5),IBONAME=$P(IBL,";",7)
  1. . D UPDAB
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT_" Complete")
  1. D MES^XPDUTL("-------------")
  1. Q
  1. ;
  1. UPDAB ; save the updated ABBREVIATION #.02 in file #355.1
  1. N DA,DIE,DR,IBERR,IBIEN
  1. S IBIEN=$$FIND1^DIC(355.1,,"MX",IBOLDAB,"","","IBERR")
  1. I 'IBIEN D Q
  1. . D BMES^XPDUTL("'"_IBONAME_"' does not exist with an abbrv. of '"_IBOLDAB_"';")
  1. . D MES^XPDUTL(" therefore, no change.")
  1. S IBFNDNM=$$GET1^DIQ(355.1,IBIEN_",",".01","I")
  1. I IBFNDNM'=IBONAME D Q
  1. . D BMES^XPDUTL("'"_IBONAME_"' does not exist with an abbrv. of '"_IBOLDAB_"';")
  1. . D MES^XPDUTL(" therefore, no change.")
  1. S DR=".02///"_IBNEWAB
  1. S DA=IBIEN,DIE="^IBE(355.1," D ^DIE
  1. D BMES^XPDUTL("'"_IBONAME_"' - abbrv. changed to '"_IBNEWAB_"'")
  1. Q
  1. ;
  1. ABLIST ; List of Current and Change To abbreviations
  1. ;;CI;;CAT INS;;CATASTROPHIC INSURANCE
  1. ;;DENIN;;DENTAL;;DENTAL INSURANCE
  1. ;;HSA;;HLTH SYS;;HEALTH SYSTEMS AGENCY (HSA)
  1. ;;IN;;INDMNTY;;INCOME PROTECTION (INDEMNITY)
  1. ;;IBH;;INPT HSPTL;;INPATIENT (BASIC HOSPITAL)
  1. ;;LP;;LAB;;LABS, PROCEDURES, X-RAY, ETC. (ONLY)
  1. ;;MCS;;MNGD CARE;;MANAGED CARE SYSTEM (MCS)
  1. ;;MEI;;MED EXPS;;MEDICAL EXPENSE (OPT/PROF)
  1. ;;MR ADV;;MCR ADV;;MEDICARE ADVANTAGE
  1. ;;MS+;;MED SEC+B;;MEDICARE SECONDARY (B EXC)
  1. ;;MS;;MED SEC-B;;MEDICARE SECONDARY (NO B EXC)
  1. ;;MSP;;MED SUP;;MEDICARE SUPPLEMENTAL
  1. ;;SCI;;SPCL CLS;;SPECIAL CLASS INSURANCE
  1. ;;SRI;;SPCL RISK;;SPECIAL RISK INSURANCE
  1. ;;SDI;;SPCFC DIS;;SPECIFIED DISEASE INSURANCE
  1. ;;SEI;;SURG INS;;SURGICAL EXPENSE INSURANCE
  1. ;;TS;;TRI SUPP;;TRICARE SUPPLEMENTAL
  1. ;;VA SP CL;;VA SPCL CLS;;VA SPECIAL CLASS
  1. ;;WCI;;WORK COMP;;WORKERS' COMPENSATION INSURANCE
  1. ;;