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

GMV43PST.m

Go to the documentation of this file.
  1. GMV43PST ;SLCIO/JLC - FIX PARAMETER SETTINGS ;10/29/20 16:26
  1. ;;5.0;GEN. MED. REC. - VITALS;**43**;Oct 31, 2002;Build 35
  1. Q
  1. ; This routine uses the following IAs:
  1. ; 2263 - ^XPAR (supported)
  1. ;
  1. EN ; main entry point
  1. D XPAR
  1. Q
  1. XPAR ; Update the GUI version parameters. This subroutine is called during the
  1. ; KIDS installation process.
  1. ;
  1. ; Variables:
  1. ; GMV: [Private] Scratch
  1. ; GMVGUI: [Private] Current version of GUI being installed
  1. ; GMVLST: [Private] Scratch List
  1. ;
  1. ; NEW private variables
  1. N GMV,GMVDLL,GMVLST
  1. ; Announce my intentions
  1. D BMES^XPDUTL("Updating system parameters.")
  1. ; Set current client version
  1. S GMVDLL="5.0.43.2"
  1. ; Deactivate all previous versions from XPAR
  1. D GETLST^XPAR(.GMVLST,"SYS","GMV DLL VERSION")
  1. S GMV=0
  1. F S GMV=$O(GMVLST(GMV)) Q:'GMV D
  1. . D EN^XPAR("SYS","GMV DLL VERSION",$P(GMVLST(GMV),"^",1),0)
  1. . Q
  1. ; Add and/or activate current client versions
  1. D EN^XPAR("SYS","GMV DLL VERSION",GMVDLL,1)
  1. Q