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

IB20P701.m

Go to the documentation of this file.
  1. IB20P701 ;SLC/RM - POST INSTALL ROUTINE FOR IB*2.0*701 ; April 12, 2021@2:21 pm
  1. ;;2.0;INTEGRATED BILLING;**701**;March 21, 1994;Build 12
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. ;
  1. ;External References Supported by ICR# Type
  1. ;------------------- ----------------- ----------
  1. ; $$DELETE^XPDMENU 1157 Supported
  1. ; $$LKOPT^XPDMENU 1157 Supported
  1. ; BMES^XPDUTL 10141 Supported
  1. ; MES^XPDUTL 10141 Supported
  1. ;
  1. Q
  1. ;
  1. DELOPT ; Remove option 'DG OTH FSM ELIG. CHANGE REPORT' from 'IB OUTPUT PATIENT REPORT MENU'
  1. N CHECK,MENU,OPTION,DA,DIK
  1. D BMES^XPDUTL(" >> Starting the Post-Initialization routine ...")
  1. D MES^XPDUTL(" ")
  1. D MES^XPDUTL(" Removing Option DG OTH FSM ELIG. CHANGE REPORT from")
  1. D MES^XPDUTL(" IB OUTPUT PATIENT REPORT MENU...")
  1. D MES^XPDUTL(" ")
  1. S MENU="IB OUTPUT PATIENT REPORT MENU"
  1. S OPTION="DG OTH FSM ELIG. CHANGE REPORT"
  1. I '+$$LKOPT^XPDMENU(MENU) D MES^XPDUTL(" "_MENU_" does not exist.") Q
  1. I '+$$LKOPT^XPDMENU(OPTION) D MES^XPDUTL(" "_OPTION_" does not exist.") Q
  1. ;
  1. S CHECK=$$DELETE^XPDMENU(MENU,OPTION)
  1. I CHECK D
  1. . D MES^XPDUTL(" Successfully removed DG OTH FSM ELIG. CHANGE REPORT from")
  1. . D MES^XPDUTL(" IB OUTPUT PATIENT REPORT MENU...")
  1. E D
  1. . D MES^XPDUTL(" DG OTH FSM ELIG. CHANGE REPORT menu option does not exist")
  1. . D MES^XPDUTL(" in IB OUTPUT PATIENT REPORT MENU...")
  1. . D MES^XPDUTL(" NO ACTION TAKEN.")
  1. D MES^XPDUTL(" ")
  1. D MES^XPDUTL(" >> End of the Post-Initialization routine ...")
  1. D MES^XPDUTL(" ")
  1. Q
  1. ;