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

INHUTIL1.m

Go to the documentation of this file.
  1. INHUTIL1 ;FRW ; 10 Feb 92 07:56; GIS Functions
  1. ;;3.01;BHL IHS Interfaces with GIS;;JUL 01, 2001
  1. ;COPYRIGHT 1991-2000 SAIC
  1. Q
  1. SYS() ;Get curent system
  1. ;OUTPUT
  1. ; function - VA, SC, or NULL (error)
  1. ;
  1. N %
  1. S %=$G(^DIW(0)) I $P(%,"^",1)="WINDOW",+$P(%,"^",2)=1.2 Q "SC"
  1. S %=$G(^DPT(0)) I $P(%,"^",1)="PATIENT",+$P(%,"^",2)=2 Q "VA"
  1. Q ""
  1. ;
  1. SYSNAME(%) ;Get system name
  1. ;INPUT:
  1. ; % - type of system (from $$SYS)
  1. ;
  1. ;OUTPUT:
  1. ; function - system name
  1. ;
  1. I %="SC" Q "SAIC-Care"
  1. I %="VA" Q "DHCP"
  1. Q ""
  1. ;
  1. SC() ;Is this system SAIC-Care
  1. ;Returns 1 if so, 0 otherwise
  1. ;This function will also return a 0 if the system is an Indian
  1. ;Health Service (IHS) system. Syntax used within the GIS that
  1. ;checks $$SC^INHUTIL1 is used for branching logic to use
  1. ;ScreenMan screens instead of WindowMan screens and for
  1. ;other IHS/VA specific functionality.
  1. Q $$SYS="SC"
  1. ;
  1. ;