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

SCDXACK.m

Go to the documentation of this file.
  1. SCDXACK ;ALB/JRP - HL7 BATCH ACKNOWLEDGEMENT HANDLER;26-APR-1996 ; 21 Apr 2000 1:01 PM
  1. ;;5.3;Scheduling;**44,121,128,215**;AUG 13, 1993
  1. ;
  1. ACKZ00 ;Process batch acknowledgements from National Patient Care Database
  1. ;
  1. ;Input : All variables set by the HL7 package
  1. ;Output : None
  1. ;Notes : The batch acknowledgement received is an exception based
  1. ; acknowledgement - this allows for a complete acceptance or
  1. ; rejection of an entire batch message.
  1. ;
  1. ; If the batch acknowledgement is a batch acceptance, than
  1. ; the batch message will only contain acknowledgements for
  1. ; messages that were rejected. All other messages contained
  1. ; in the sent batch message are assumed to be accepted.
  1. ;
  1. ; If the batch acknowledgement is a batch rejection, than
  1. ; the batch message will only contain acknowledgements for
  1. ; messages that were accepted. All other messages contained
  1. ; in the sent batch message are assumed to be rejected.
  1. ;
  1. ;Declare variables
  1. N %,%H,%I,X,ACKDATE,BATCHID,MSGID,XMITPTR,XMITARRY,ACKCODE,SDCT
  1. N MSGTYPE,EVNTTYPE,FLDSEP,CMPNTSEP,REPTNSEP,ERRCODES,ERROR,ERRNUM,ERRCNT
  1. S XMITARRY="^TMP(""AMB-CARE"","_$J_",""BID"")"
  1. K @XMITARRY
  1. ;Remember date/time acknowledgement was received
  1. S ACKDATE=$$NOW^XLFDT()
  1. ;Get field & component seperators
  1. S FLDSEP=HL("FS")
  1. S CMPNTSEP=$E(HL("ECH"),1)
  1. S REPTNSEP=$E(HL("ECH"),2)
  1. ;Get acknowledgement code
  1. S ACKCODE=$P(HLMSA,FLDSEP,2)
  1. ;Get rejection reason
  1. S ERROR=$P(HLMSA,FLDSEP,4)
  1. ;Default to acceptance
  1. S:(ACKCODE="") ACKCODE="AA"
  1. ;Only file APPLICATION ACKNOWLEDGEMENT
  1. Q:($E(ACKCODE,1)'="A")
  1. ;Translate acknowledgement code to Accept, Reject, Error
  1. S ACKCODE=$E(ACKCODE,2)
  1. ;Get batch control ID
  1. S BATCHID=$P(HLMSA,FLDSEP,3)
  1. ;Do implied acceptance/rejection for entries in ACRP Transmission
  1. ; History file (#409.77)
  1. D ACKBID^SCDXFU12(BATCHID,ACKDATE,ACKCODE)
  1. ;Get list of all entries in Transmitted Outpatient Encounter file
  1. ; (#409.73) that were contained in batch being acknowledged
  1. D PTRS4BID^SCDXFU02(BATCHID,XMITARRY)
  1. ;Loop through list of entries - do implied acceptance/rejection
  1. S XMITPTR=""
  1. F S XMITPTR=+$O(@XMITARRY@(XMITPTR)) Q:('XMITPTR) D
  1. .;Mark entry as accepted/rejected by National Patient Care Database
  1. .D ACKDATA^SCDXFU03(XMITPTR,ACKDATE,ACKCODE)
  1. .;Store error code if rejected by National Patient Care Database
  1. .I (ACKCODE'="A") S X=$$CRTERR^SCDXFU02(XMITPTR,ERROR,1)
  1. ;Loop through batch acknowledgement - do explicite acceptance/rejection
  1. F X HLNEXT D Q:(HLQUIT'>0)
  1. .;Skip to next message header (MSH)
  1. .Q:($E(HLNODE,1,3)'="MSH")
  1. .;Get field & component seperators
  1. .S FLDSEP=$E(HLNODE,4)
  1. .S CMPNTSEP=$E(HLNODE,5)
  1. .;Get message and event types
  1. .S X=$P(HLNODE,FLDSEP,9)
  1. .S MSGTYPE=$P(X,CMPNTSEP,1)
  1. .S EVNTTYPE=$P(X,CMPNTSEP,2)
  1. .;Only process message types ACK-A08 and ACK-A23
  1. .Q:(MSGTYPE'="ACK")
  1. .Q:((EVNTTYPE'="A08")&(EVNTTYPE'="A23"))
  1. .;Skip to message acknowledgement (MSA)
  1. .F X HLNEXT Q:((HLQUIT'>0)!($E(HLNODE,1,3)="MSA"))
  1. .;Didn't find MSA - quit
  1. .Q:($E(HLNODE,1,3)'="MSA")
  1. .;Get acknowledgement code
  1. .S ACKCODE=$P(HLNODE,FLDSEP,2)
  1. .;Only file APPLICATION ACKNOWLEDGEMENT codes
  1. .Q:($E(ACKCODE,1)'="A")
  1. .;Translate acknowledgement code to Accept, Reject, Error
  1. .S ACKCODE=$E(ACKCODE,2)
  1. .;Get message ID being acknowledged
  1. .S MSGID=$P(HLNODE,FLDSEP,3)
  1. .;Get error codes
  1. .S ERRCODES=$P(HLNODE,FLDSEP,4)
  1. .;Do explicite acceptance/rejection for entry in ACRP Transmission
  1. .; History file (#409.77)
  1. .D ACKMID^SCDXFU12(MSGID,ACKDATE,ACKCODE)
  1. .;Find entry in Transmitted Outpatient Encounter file
  1. .S XMITPTR=$$PTR4MID^SCDXFU02(MSGID)
  1. .;Didn't find message control ID
  1. .Q:('XMITPTR)
  1. .;Store acknowledgement code
  1. .D ACKDATA^SCDXFU03(XMITPTR,ACKDATE,ACKCODE)
  1. .;Parse list of reported error codes
  1. .S ERRCNT=$L(ERRCODES,REPTNSEP),SDCT=0
  1. .F ERRNUM=1:1:ERRCNT D
  1. ..;Get error code
  1. ..S ERROR=$P(ERRCODES,REPTNSEP,ERRNUM)
  1. ..;Store error code
  1. ..Q:(ERROR="")
  1. ..S X=$$CRTERR^SCDXFU02(XMITPTR,ERROR,1),SDCT=SDCT+1
  1. .;If rejected, insure that at least one error code gets filed
  1. .I ACKCODE'="A",'SDCT S ERROR=999,X=$$CRTERR^SCDXFU02(XMITPTR,ERROR,1)
  1. ;Clean up
  1. K @XMITARRY
  1. ;Done
  1. Q