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

IBY631PO.m

Go to the documentation of this file.
  1. IBY631PO ;AITC/TAZ - Post-Installation for IB patch 631; 22-MAY-2018
  1. ;;2.0;INTEGRATED BILLING;**631**;21-MAR-94;Build 23
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. ;
  1. POST ; POST ROUTINE(S)
  1. N IBXPD,XPDIDTOT
  1. S XPDIDTOT=2
  1. ;
  1. ; Send site registration message to FSC
  1. D REGMSG(1)
  1. ; Change the description & acronym for PURCHASED CARE CHOICE in SOI file [#355.12]
  1. D CHGSOI(2)
  1. ;
  1. ; Displays the 'Done' message and finishes the progress bar
  1. D MES^XPDUTL("")
  1. D MES^XPDUTL("POST-Install Completed.")
  1. Q
  1. ;
  1. REGMSG(IBXPD) ; send site registration message to FSC
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT)
  1. D MES^XPDUTL("-------------")
  1. D MES^XPDUTL("Sending site registration message to FSC ... ")
  1. ;
  1. I '$$PROD^XUPROD(1) D MES^XPDUTL(" N/A - Not a production account - No site registration message sent") G REGMSGQ
  1. D MES^XPDUTL("Sending site registration message to FSC ... ")
  1. D ^IBCNEHLM
  1. ;
  1. REGMSGQ ;
  1. Q
  1. ;
  1. CHGSOI(IBXPD) ; change the PURCHASED CARE CHOICE description & acronym in SOI file.
  1. N IBDATA,IBDFDA,IBERROR,IBFILE
  1. D BMES^XPDUTL(" STEP "_IBXPD_" of "_XPDIDTOT)
  1. D MES^XPDUTL("-------------")
  1. D MES^XPDUTL("Changing Description & Acronym for PURCHASED CARE CHOICE (PCC)")
  1. D MES^XPDUTL("to COMMUNITY CARE NETWORK (CCN) in the SOI File [#355.12] ... ")
  1. ;
  1. ; Get the internal EIN for the SOI record to be changed in the #355.12 file.
  1. S IBDFDA=$$FIND1^DIC(355.12,"","X","PURCHASED CARE CHOICE","C")
  1. I 'IBDFDA D G CHGSOIQ
  1. . D MES^XPDUTL(" The 'PURCHASED CARE CHOICE' does not exist in the SOI file [#355.12],")
  1. . D MES^XPDUTL(" ...Description and Acronym NOT CHANGED.")
  1. ; Change the description & acronym for the SOI record in the #355.12 file.
  1. S IBFILE=355.12,IBDATA(.02)="COMMUNITY CARE NETWORK",IBDATA(.03)="CCN"
  1. I $$UPD^IBDFDBS(IBFILE,IBDFDA,.IBDATA,.IBERROR) D G CHGSOIQ
  1. . D MES^XPDUTL(" CHANGED the Description & Acronym for PURCHASED CARE CHOICE (PCC)")
  1. . D MES^XPDUTL(" in the SOI File to COMMUNITY CARE NETWORK (CCN).")
  1. ;
  1. CHGSOIQ ;
  1. Q
  1. ;