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

PXRMEXCF.m

Go to the documentation of this file.
  1. PXRMEXCF ; SLC/PKR - Reminder exchange routines for computed findings. ;23-Mar-2015 10:12;DU
  1. ;;2.0;CLINICAL REMINDERS;**6,1001,12,1005**;Feb 04, 2005;Build 23
  1. ;IHS/MSC/MGH change to skip on routines
  1. ;==============================================
  1. EXISTS(ROUTINE) ;Return true if routine ROUTINE exists.
  1. I ROUTINE="" Q 0
  1. N RTN
  1. S RTN="^"_ROUTINE
  1. Q $S($T(@RTN)'="":1,1:0)
  1. ;
  1. ;==============================================
  1. GETRACT(ATTR,NEWNAME,NAMECHG,RTN,EXISTS) ;Get the action for a routine.
  1. N ACTION,CHOICES,CSUM,DIR,DIROUT,DIRUT,DTOUT,DUOUT,ECS,IND,MSG
  1. N PCS,ROUTINE,SAME,TEXT,X,Y
  1. S NEWNAME=""
  1. S ROUTINE=ATTR("NAME")
  1. I EXISTS="" S EXISTS=$$EXISTS^PXRMEXCF(ROUTINE)
  1. S CHOICES=$S(EXISTS:"COQS",1:"CIQS")
  1. I EXISTS D
  1. .;If the routine exists compare the existing routine checksum with the
  1. .;the checksum of the routine in the packed definition.
  1. . S CSUM=$$RTNCS^PXRMEXCS(ROUTINE)
  1. . S SAME=$S(ATTR("CHECKSUM")=CSUM:1,1:0)
  1. . S TEXT(1)="Routine "_ROUTINE_" already exists "
  1. . I SAME D
  1. .. S TEXT(1)=TEXT(1)_"and the packed routine is identical, skipping."
  1. .. I $D(PXRMDEBG) W !,TEXT(1),! H 2
  1. .. S ACTION="S"
  1. . ;IHS/MSC/MGH since routines are sent in patches, skip
  1. . I 'SAME D
  1. .. S TEXT(1)=TEXT(1)_"but the packed routine is different,"
  1. .. ;S TEXT(2)="what do you want to do?"
  1. .. S TEXT(2)="Normally,SKIP is the appropriate answer"
  1. .. W !,TEXT(1),!,TEXT(2)
  1. .. S DIR("B")="S"
  1. .. S ACTION=$$GETACT^PXRMEXIU(CHOICES,.DIR)
  1. E D
  1. . W !!,"Routine "_ROUTINE_" is new, what do you want to do?"
  1. . S DIR("B")="I"
  1. . S ACTION=$$GETACT^PXRMEXIU(CHOICES,.DIR)
  1. ;
  1. I (ACTION="Q")!(ACTION="S") Q ACTION
  1. ;
  1. I ACTION="C" D
  1. . N CDONE
  1. . S CDONE=0
  1. . F Q:CDONE D
  1. .. S NEWNAME=$$GETNAME^PXRMEXIU(ATTR("MIN FIELD LENGTH"),ATTR("FIELD LENGTH"))
  1. .. I NEWNAME="" S ACTION="S",CDONE=1 Q
  1. .. S EXISTS=$$EXISTS^PXRMEXCF(NEWNAME)
  1. .. I EXISTS W !,"Routine ",NEWNAME," already exists, try again."
  1. .. E D Q
  1. ... S CDONE=1
  1. ... S NAMECHG(ATTR("FILE NUMBER"),ROUTINE)=NEWNAME
  1. ;
  1. I (ACTION="I")&(EXISTS) D
  1. .;If the action is overwrite double check that overwrite is what the
  1. .;user really wants to do.
  1. . K DIR
  1. . S DIR(0)="Y"_U_"A"
  1. . S DIR("A")="Are you sure you want to overwrite"
  1. . S DIR("B")="N"
  1. . D ^DIR
  1. . I $D(DIROUT)!$D(DIRUT) S Y=0
  1. . I $D(DTOUT)!$D(DUOUT) S Y=0
  1. . I 'Y S ACTION="S"
  1. . S NAMECHG(ATTR("FILE NUMBER"),ROUTINE)=NEWNAME
  1. Q ACTION
  1. ;