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

YTQPXRM.m

Go to the documentation of this file.
  1. YTQPXRM ; ALB/ASF - Build indexes for Mental Health MHA3 ; 3/13/07 1:43pm
  1. ;;5.01;MENTAL HEALTH;**85**;Dec 30, 1994;Build 48
  1. ;DBIA 4113 supports PXRMSXRM entry points.
  1. ;DBIA ???? supports setting and killing ^PXRMINDX(601.84)
  1. ;===============================================================
  1. INDEX ;Build the index for MENTAL HEALTH.
  1. N DAS,DAST,DATE,DFN,END,ENTRIES,GLOBAL,IND,INS,NE,NERROR
  1. N START,TENP,TEXT,IFN,COMP
  1. ;Dont leave any old stuff around.
  1. K ^PXRMINDX(601.84)
  1. S GLOBAL=$$GET1^DID(601.84,"","","GLOBAL NAME")
  1. S ENTRIES=$P(^YTT(601.84,0),U,4)
  1. S TENP=ENTRIES/10
  1. S TENP=+$P(TENP,".",1)
  1. I TENP<1 S TENP=1
  1. D BMES^XPDUTL("Building indexes for MHA3 DATA")
  1. S TEXT="There are "_ENTRIES_" entries to process."
  1. D MES^XPDUTL(TEXT)
  1. S START=$H
  1. S (IFN,DFN,IND,NE,NERROR)=0
  1. F S IFN=$O(^YTT(601.84,IFN)) Q:IFN'>0 D
  1. . S IND=IND+1
  1. . I IND#TENP=0 D
  1. .. S TEXT="Processing entry "_IND
  1. .. D MES^XPDUTL(TEXT)
  1. . I IND#10000=0 W "."
  1. . S COMP=$P($G(^YTT(601.84,IFN,0)),U,9)
  1. . Q:COMP'="Y" ;index only completed admins
  1. . S DFN=$P(^YTT(601.84,IFN,0),U,2)
  1. . S INS=$P(^YTT(601.84,IFN,0),U,3)
  1. . S DATE=$P(^YTT(601.84,IFN,0),U,4) ;date given
  1. . S DAS=IFN
  1. . S ^PXRMINDX(601.84,"IP",INS,DFN,DATE,DAS)=""
  1. . S ^PXRMINDX(601.84,"PI",DFN,INS,DATE,DAS)=""
  1. . S NE=NE+1
  1. S END=$H
  1. S TEXT=NE_" MHA3 results indexed."
  1. D MES^XPDUTL(TEXT)
  1. D DETIME^PXRMSXRM(START,END)
  1. ;If there were errors send a message.
  1. I NERROR>0 D ERRMSG^PXRMSXRM(NERROR,GLOBAL)
  1. ;Send a MailMan message with the results.
  1. D COMMSG^PXRMSXRM(GLOBAL,START,END,NE,NERROR)
  1. S ^PXRMINDX(601.84,"GLOBAL NAME")=GLOBAL
  1. S ^PXRMINDX(601.84,"BUILT BY")=DUZ
  1. S ^PXRMINDX(601.84,"DATE BUILT")=$$NOW^XLFDT
  1. Q
  1. ;
  1. ;===============================================================
  1. KMH(X,DA) ;Delete index for 601.84 MH ADMINISTRATIONS
  1. ;X(1)=Patient X(2)=Instrument X(3)=Date Given
  1. K ^PXRMINDX(601.84,"IP",X(2),X(1),X(3),DA)
  1. K ^PXRMINDX(601.84,"PI",X(1),X(2),X(3),DA)
  1. Q
  1. ;
  1. ;===============================================================
  1. SMH(X,DA) ;Set index for 601.84 MH ADMINISTRATIONS
  1. ;X(1)=Patient X(2)=Instrument X(3)=Date Given
  1. S ^PXRMINDX(601.84,"IP",X(2),X(1),X(3),DA)=""
  1. S ^PXRMINDX(601.84,"PI",X(1),X(2),X(3),DA)=""
  1. Q
  1. ;