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

SD53227P.m

Go to the documentation of this file.
  1. SD53227P ;ALB/RBS - Find Encounter/Visit Date/Time 421 error ; 10/11/00 4:59pm
  1. ;;5.3;Scheduling;**227,1015**;AUG 13, 1993;Build 21
  1. ;
  1. ;DBIA Integration Reference # 3211 to update #9000010 VISIT file.
  1. ; *** Calling routine is SD53P227 ***
  1. ;
  1. ;This routine will search for Encounters that have a invalid date
  1. ;and time setup causing a 421 error code to be setup.
  1. ;
  1. ;The ^XTMP global will be used as an audit file for 30 days from
  1. ;date of running the Clean Up & Report option.
  1. ; ^XTMP("SD53P227",0)=STRING of 10 fields
  1. ; STRING = purge date^run date^start dt/time^stop dt/time...
  1. ; ^tot errors^tot fixed^tot searched
  1. ; ^XTMP("SD53P227",1)=error node of encounters that can't be fixed
  1. ; ^XTMP("SD53P227",2)=encounters that can be fixed and re-sent
  1. ; ^XTMP("SD53P227",3)=e-mail report sent to user
  1. ; ^XTMP("SD53P227,"SENT")=audit trial of all encounters fixed
  1. ;
  1. ; @SDTEMP@ = ^XTMP("SD53P227")
  1. ;
  1. Q
  1. ;*;
  1. FIND ; Search file for error pointer (ie...30 = 421)
  1. N CODE421,ENCPTR,ERRPTR,ERRNODE,NEWENDT,OK,OK1,OK2,SCENODE,SCEDATE,SCEDFN,SDDT,SDPNAM
  1. N SDSSN,SDCLN,STRING,TOTALS,VSITDATE,VSITPTR,XMITPTR,XMITNODE,X,Y,Z
  1. S (ERRPTR,EXIT,TOTALS)=0
  1. S CODE421=+$O(^SD(409.76,"B",421,0)) ;get pointer to error codes
  1. I 'CODE421 D Q ;no error's - QUIT process
  1. .D NOFIND^SD53227
  1. .S EXIT=1
  1. S:$D(@SDTEMP@(0)) TOTALS=$P(@SDTEMP@(0),U,8,10)
  1. F S ERRPTR=+$O(^SD(409.75,ERRPTR)) Q:('ERRPTR) D Q:EXIT
  1. .I ($$S^%ZTLOAD) S EXIT=1 Q
  1. .S ERRNODE=$G(^SD(409.75,ERRPTR,0))
  1. .S X=+$P(ERRNODE,U,2)
  1. .Q:(X'=CODE421)
  1. .; Get pointer to Transmitted Outpatient Encounter file (#409.73)
  1. .S XMITPTR=+$G(^SD(409.75,ERRPTR,0))
  1. .Q:('$D(^SD(409.73,XMITPTR,0)))
  1. .S XMITNODE=$G(^SD(409.73,XMITPTR,0))
  1. .; Get pointer to Outpatient Encounter file (#409.68)
  1. .S ENCPTR=+$P(XMITNODE,U,2)
  1. .;
  1. .Q:$D(@SDTEMP@("SENT",ERRPTR,XMITPTR,ENCPTR)) ;already fixed
  1. .;
  1. .; Get pointer to Visit file (#9000010) - ^AUPNVSIT
  1. .S SCENODE=$G(^SCE(ENCPTR,0))
  1. .Q:SCENODE=""
  1. .; date.time - patient DPT( pointer - visit pointer
  1. .S SCEDATE=$P(SCENODE,U),SCEDFN=$P(SCENODE,U,2),VSITPTR=+$P(SCENODE,U,5)
  1. .; get patient name - SSN
  1. .S SDPNAM=$G(^DPT(SCEDFN,0)),SDSSN=$P(SDPNAM,U,9),SDPNAM=$P(SDPNAM,U)
  1. .S SDCLN=$P($G(^SC(+$P(SCENODE,U,4),0)),U) ;hospital location
  1. .S STRING=VSITPTR_U_SDPNAM_U_SCEDFN_U_SDSSN_U_SDCLN_U_SCEDATE
  1. .S $P(TOTALS,U,3)=$P(TOTALS,U,3)+1 ;total records
  1. .;
  1. .; Check Encounter date/time
  1. .S (NEWENDT,OK,OK1,OK2)=0
  1. .D CKDATE(SCEDATE,.OK) ;check date
  1. .I OK D Q ;bad Date
  1. ..D ADD(STRING,"* INVALID DATE *",1)
  1. .;
  1. .D CKTIME(SCEDATE,.NEWENDT,.OK) ;check time
  1. .I OK D Q ;can't fix Date/Time
  1. ..D ADD(STRING,"* INVALID TIME *",1)
  1. .;
  1. .I NEWENDT=SCEDATE D Q ;date & time OK, nothings wrong
  1. ..D ADD(STRING,"* Date/Time OK *",1)
  1. .;
  1. .S OK1=1 ;new encounter date and time reset was OK
  1. .;
  1. .; API - Get #9000010 file - .01 VISIT/ADMIT DATE&TIME field
  1. .;S VSITDATE=$$VISADDAT^PXAAVSIT(VSITPTR)
  1. .S VSITDATE=$P($G(^AUPNVSIT(VSITPTR,0)),"^",1)
  1. .; Check if Visit d/t equals original Encounter d/t...then OK2
  1. .S:VSITDATE=SCEDATE OK2=1
  1. .;
  1. .; Visit d/t different
  1. .I OK1,'OK2 D Q
  1. ..D ADD(STRING_U_VSITDATE,"*VISIT D/T Diff.*",1)
  1. .;
  1. .; Everything is OK
  1. .I OK1,OK2 D
  1. ..D:FIX FIX(ENCPTR,XMITPTR,VSITPTR,NEWENDT,.OK) ;update files
  1. ..Q:OK ;can't fix
  1. ..D ADD(STRING,NEWENDT,2) ;OK to update
  1. ;
  1. S $P(@SDTEMP@(0),U,8,10)=TOTALS ;add totals string to ^XTMP
  1. Q
  1. ;
  1. ADD(STR,X,Z) ; Setup file entry
  1. ; Setup either error node(1) or fix node(2) or sent node("SENT")
  1. ; STR = string of ien pointers, patient info, original date/time
  1. ; X = the new date/time or error message.
  1. ; Z = node subscript to setup data
  1. ; ERRPTR - IEN for Transmitted Outpatient Encounter error file
  1. ; (#409.75)
  1. ; XMITPTR - Pointer to Transmitted Outpatient Encounter file
  1. ; (#409.73)
  1. ; ENCPTR - Pointer to entry in Outpatient Encounter file
  1. ; (#409.68)
  1. S @SDTEMP@(Z,ERRPTR,XMITPTR,ENCPTR)=STR_U_X
  1. S @SDTEMP@(Z)=$G(@SDTEMP@(Z))+1
  1. S:+Z $P(TOTALS,U,Z)=$P(TOTALS,U,Z)+1
  1. Q
  1. ;
  1. FIX(ENCPTR,XMITPTR,VSITPTR,NEWENDT,ERR) ; Fix #409.68 & #9000010 files
  1. ;Input : ENCPTR - Pointer to entry in Outpatient Encounter file
  1. ; (#409.68)
  1. ; XMITPTR - Pointer to Transmitted Outpatient Encounter file
  1. ; (#409.73)
  1. ; VSITPTR - Pointer to Visit file
  1. ; (#9000010)
  1. ; NEWENDT - New date/time (FileMan format)
  1. ; ERR - Check for OK or not(0=OK, 1=error)
  1. ;
  1. ;Output : ERR - 0=OK, 1=error
  1. ;
  1. Q:'FIX ;Not time to update records
  1. ;
  1. N SCFDA,IENS,SCERR
  1. S IENS=ENCPTR_","
  1. S SCFDA(409.68,IENS,".01")=NEWENDT ;#409.68 - Encounter file
  1. ;
  1. L +^SCE(ENCPTR):2
  1. I '$T D Q ;can't lock record
  1. .D ADD(STRING,"* #409.68 Error *",1)
  1. .S OK=1
  1. ;
  1. ; if nothing is wrong, "SCERR" will be un-defined...
  1. D FILE^DIE("","SCFDA","SCERR")
  1. I $D(SCERR) D Q ;somethings wrong
  1. .D ADD(STRING,"* #409.68 Error* ",1)
  1. .L -^SCE(ENCPTR)
  1. ;
  1. ; #9000010 API call to PCE for Filing update to .01 Visit/Admit field
  1. S SCERR=0
  1. D FILE(VSITPTR,NEWENDT,.SCERR)
  1. I SCERR D Q ;somethings wrong
  1. .D ADD(STRING,"* #9000010 Error *",1)
  1. .L -^SCE(ENCPTR)
  1. ;
  1. ; Re-flag encounters for transmission
  1. D STREEVNT^SCDXFU01(XMITPTR) ;Log the event
  1. D XMITFLAG^SCDXFU01(XMITPTR) ;Flag record for transmission
  1. ;
  1. L -^SCE(ENCPTR)
  1. ;
  1. D ADD(STRING,NEWENDT,"SENT") ;Audit trail - ^XTMP(,"SENT"
  1. Q
  1. ;
  1. CKDATE(SDDT,ERR) ; Check Encounter and Visit Date
  1. N CKDATE
  1. S CKDATE=$P(SDDT,"."),ERR=0
  1. S ERR=+$$DATE(CKDATE) ;validate date
  1. Q
  1. ;
  1. DATE(DAT) ; Validate FileMan date only
  1. N DATE,X,Y,%DT
  1. S DATE=$P(DAT,"."),X=DATE,%DT="X" D ^%DT
  1. I Y<0 Q 1
  1. Q 0
  1. ;
  1. CKTIME(SDDT,NEWENDT,ERR) ; check and validate new date/time
  1. ; we are dropping all seconds before trying to validate hour/min
  1. N CKTIME,NEWTIME,X,Y,%DT
  1. S (NEWENDT,NEWTIME,ERR)=0,CKTIME=$P(SDDT,".",2)
  1. I $L(CKTIME)>6 S CKTIME=$E(CKTIME,1,6)
  1. ;convert to external d/t first, then validate back to internal d/t
  1. S Y=$P(SDDT,".")_"."_CKTIME
  1. D DD^%DT S X=Y,%DT="ST" D ^%DT
  1. I Y<0 D ;reset time
  1. .S CKTIME=$E(CKTIME_"0000",1,4) ;drop all seconds
  1. .S NEWTIME=+$$TIME(CKTIME) ;try to setup new time
  1. .S NEWENDT=$P(SDDT,".")_NEWTIME ;concatenate date w/new time
  1. .S Y=NEWENDT D DD^%DT S X=Y,%DT="ST" D ^%DT ;re-validate date/time
  1. I Y<0 S ERR=1 Q
  1. S NEWENDT=Y
  1. Q
  1. ;
  1. TIME(TIM) ; Break out hours and minutes
  1. N TIME,HR,MIN,SEC
  1. S HR=$E(TIM,1,2),MIN=$E(TIM,3,4),SEC=$E(TIM,5,6)
  1. S:(HR>23) HR=23,MIN=59,SEC=""
  1. S:(MIN>59) MIN=59
  1. S:(SEC>59) SEC=59
  1. S TIME=HR_MIN_SEC
  1. Q:'TIME 0
  1. ;Done - return time (trailing zeros removed)
  1. Q +("."_TIME)
  1. ;
  1. FILE(IEN,VDT,ERR) ; Update #9000010 VISIT File - .01 Visit/Admit d/t field
  1. ; input - IEN = visit internal entry number to ^AUPNVSIT(#)
  1. ; - VDT = new date and time (FM internal d/t format)
  1. ; - ERR = check for Filing OK
  1. ; output - ERR = 0 = Filing complete
  1. ; 1 = Filing error
  1. N SDFDA,IENS,SDERR,X,Y
  1. S ERR=0
  1. I '($D(^AUPNVSIT(IEN,0))#2) S ERR=1 Q ;not a valid visit ien
  1. I VDT']"" S ERR=1 Q
  1. L +^AUPNVSIT(IEN):2 I '$T S ERR=1 Q ;can't lock
  1. S IENS=IEN_","
  1. S SDFDA(9000010,IENS,".01")=VDT ;#9000010 - Visit file
  1. D FILE^DIE("","SDFDA","SDERR") ;file new .01 date/time
  1. L -^AUPNVSIT(IEN)
  1. S:$D(SDERR) ERR=1
  1. Q