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

DIPR165.m

Go to the documentation of this file.
  1. DIPR165 ;O-OIFO/GMB-Save DIDT as %DT ;4MAY2011
  1. ;;22.0;VA FileMan;**165**;Mar 30, 1999;Build 34
  1. ;Per VHA Directive 2004-038, this routine should not be modified.
  1. ENV ; Environmental Check
  1. D BMES^XPDUTL("Perform Environment Check...")
  1. D CHKSTOP
  1. D CHKOS
  1. D BMES^XPDUTL("Finished Environment Check.")
  1. Q
  1. CHKSTOP ;
  1. ; Check XPDENV 0 = Loading; 1 = Installing
  1. Q:'XPDENV ; Loading Distribution - No Check
  1. ;
  1. ;
  1. INSCHK ; Do Checks During Install Only
  1. W $C(7)
  1. D MES^XPDUTL("** Although Queuing is allowed - it is HIGHLY recommended that ALL Users and")
  1. D MES^XPDUTL("VISTA Background jobs be STOPPED before installation of this patch. Failure")
  1. D MES^XPDUTL("to do so may result in 'source routine edited' error(s). Edits will be")
  1. D MES^XPDUTL("lost and record(s) may be left in an inconsistent state, for example,")
  1. D MES^XPDUTL("not all Cross-Referencing completed; which in turn may cause FUTURE")
  1. D MES^XPDUTL("VistA/FileMan Hard Errors or corrupted Data. **")
  1. ;
  1. TMCHK ; Check to see if TaskMan is still running
  1. S X=$$TM^%ZTLOAD
  1. I X,'$D(^%ZTSCH("WAIT")) D
  1. . W $C(7)
  1. . D BMES^XPDUTL("* Warning TaskMan Has NOT Been Stopped or Placed in a WAIT State!")
  1. ;
  1. LINH ; Check to see if Logons are Inhibited
  1. D GETENV^%ZOSV ; $P(Y,"^",2) = Installing Volume
  1. Q:$G(^%ZIS(14.5,"LOGON",$P(Y,"^",2)))
  1. W $C(7)
  1. D BMES^XPDUTL("* Warning Logons are NOT Inhibited!")
  1. Q
  1. CHKOS ; Check to see if CACHE/OpenM entry exists
  1. D BMES^XPDUTL("I'm checking to ensure that entry 18, CACHE/OpenM,")
  1. D MES^XPDUTL("exists in the MUMPS OPERATING SYSTEM (#.7) file.")
  1. I $P($G(^DD("OS",18,0)),U,1)="CACHE/OpenM" D Q
  1. . D MES^XPDUTL("...It does.")
  1. W $C(7)
  1. D MES^XPDUTL("...Error: ^DD(""OS"",18,0) should be CACHE/OpenM, but isn't.")
  1. D MES^XPDUTL("...Something's not right with IEN 18 of the MUMPS OPERATING SYSTEM (#.7) file.")
  1. D MES^XPDUTL("...Notify SD&D.")
  1. S XPDQUIT=2
  1. Q
  1. POSTINIT ; Post-Init
  1. D BMES^XPDUTL("Beginning Post-Installation...")
  1. D BMES^XPDUTL(" I'm saving routine DIDT as %DT.")
  1. N SCR,%S,%D,ZTOS
  1. S SCR="I 1",ZTOS=$$OSNUM^ZTMGRSET,%S="DIDT",%D="%DT" D MOVE^ZTMGRSET
  1. D MES^XPDUTL(" I'm saving routine DIDTC as %DTC.")
  1. K SCR,%S,%D,ZTOS
  1. S SCR="I 1",ZTOS=$$OSNUM^ZTMGRSET,%S="DIDTC",%D="%DTC" D MOVE^ZTMGRSET
  1. D BMES^XPDUTL(" I'm checking the settings for CACHE/OpenM")
  1. D MES^XPDUTL(" in the MUMPS OPERATING SYSTEM (#.7) file.")
  1. N LINE
  1. S LINE=$G(^DD("OS",18,0))
  1. I $P(LINE,U,3,4)="250^15000",$P(LINE,U,7)=250 D
  1. . D MES^XPDUTL(" ...The settings are correct. No action taken.")
  1. E D
  1. . I $P(LINE,U,3)'=250 D
  1. . . D MES^XPDUTL(" ...I'm changing the GLOBAL LENGTH (MAX) (#2) field from "_$S($P(LINE,U,3)="":"Null",1:$P(LINE,U,3))_" to 250.")
  1. . . S $P(LINE,U,3)=250
  1. . I $P(LINE,U,4)'=15000 D
  1. . . D MES^XPDUTL(" ...I'm changing the ROUTINE SIZE (MAX) (#3) field from "_$S($P(LINE,U,4)="":"Null",1:$P(LINE,U,4))_" to 15000.")
  1. . . S $P(LINE,U,4)=15000
  1. . I $P(LINE,U,7)'=250 D
  1. . . D MES^XPDUTL(" ...I'm changing the INDIVIDUAL SUBSCRIPT LENGTH (#7) field from "_$S($P(LINE,U,7)="":"Null",1:$P(LINE,U,7))_" to 250.")
  1. . . S $P(LINE,U,7)=250
  1. . S ^DD("OS",18,0)=LINE
  1. D BMES^XPDUTL("Finished Post-Installation.")
  1. Q