BPSOSRX7 ;ALB/SS - ECME REQUESTS ;04-JAN-08
;;1.0;E CLAIMS MGMT ENGINE;**7,10**;JUN 2004;Build 27
;;Per VHA Directive 2004-038, this routine should not be modified.
;
Q
;
;Input:
;KEY1 - First Key
;KEY2 - Second Key
;BPREQS (by reference)- local array to convey results back to the caller
; BPREQS = number of nodes stored in the array
; BPREQS(n)=BPS REQUEST ien ^ Claim type ^ COB
;
;return values:
; -5 : Unexpected ACTIVATED or IN PROCESS request has been found
; -4 : Multiple BPS REQUEST records with the same NEXT REQUEST value
; -3 : SCHEDULED request(s) were found but they is not ACTIVATED for some reason
; -2 : duplicate ACTVATED / IN PROCESS requests for the same keys - this should not happen
; -1 : cannot be accepted - because reversal was requested
; and there are requests already for these keys in the queue
; and the last one is REVERSAL too for the same COB
; so we will return "-1^Sequential duplicate reversal"
; 0 : can be accepted because there are NO requests for these keys
; we will create a new record in BPS REQUEST for it and ACTIVATE it.
; >0 : IEN of the last BPS REQUEST in the queue - there are requests already for these keys.
;
CHKREQST(KEY1,KEY2,BPREQS) ;
N BPPRFLG,BPCURNT,BPNEXT,BPCOB,BPRCUR,BPRNXT,BPQ,BPCNT,BPZ
;get the current IN PROCESS request for these keys
S BPPRFLG=2 D I BPCURNT>0 I $O(^BPS(9002313.77,"AC",2,KEY1,KEY2,+BPCURNT))>0 Q "-2^Error: More than one IN PROCESS request for keys="_KEY1_", "_KEY2
. S BPCURNT=$O(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
;if there is no IN PROCESS then check ACTIVATED
I BPCURNT="" S BPPRFLG=1 D I BPCURNT>0 I $O(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,+BPCURNT))>0 Q "-2^Error: More than one ACTIVATED request for keys="_KEY1_", "_KEY2
. S BPCURNT=$O(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
;if there is no IACTIVATED then check SCHEDULED
I BPCURNT="" S BPPRFLG=0 D I BPCURNT>0 Q "-3^Error: There is a SCHEDULED request without ACTIVATED requests, keys="_KEY1_", "_KEY2
. S BPCURNT=$O(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
;if there is no any requests then return 0
I BPCURNT="" Q 0 ;can be accepted because there are NO requests for these keys
;Otherwise...
S BPQ=0,BPREQS=1
S BPRCUR=BPCURNT
;save current_ien ^ actype ^ COB
S BPREQS(BPREQS)=BPCURNT_U_$P($G(^BPS(9002313.77,BPCURNT,1)),U,4)_U_$P($G(^BPS(9002313.77,BPCURNT,0)),U,3)
;loop thru all SCHEDULED,ACTIVATED and IN PROCESS records starting with BPCURNT
F S BPRNXT=$O(^BPS(9002313.77,"AN",BPRCUR,"")) Q:BPRNXT="" Q:BPQ'=0 D
. I $D(BPREQS("R",BPRNXT)) S BPQ=-1 Q ;error - more than one records with the same next request
. ;BPZ - process flag ^ act type ^ COB
. S BPZ=$G(^BPS(9002313.77,"AN",BPRCUR,BPRNXT))
. I BPRCUR'=BPCURNT I +BPZ>0 S BPQ=+BPZ Q ;except the first record in the loop - all others should be SCHEDULED (i.e. process flag =0)
. S BPREQS=BPREQS+1
. S BPREQS(BPREQS)=BPRNXT_U_$P($G(^BPS(9002313.77,BPRNXT,1)),U,4)_U_$P($G(^BPS(9002313.77,BPRNXT,0)),U,3)
. S BPREQS("R",BPRNXT)="" ;used to check uniqueness
. S BPRCUR=BPRNXT
;
K BPREQS("R")
I BPQ=-1 Q "-4^Error: Multiple BPS REQUEST records with the same NEXT REQUEST value for keys="_KEY1_", "_KEY2
I BPQ=1 Q "-5^Error: Unexpected ACTIVATED request has been found for keys="_KEY1_", "_KEY2
I BPQ=2 Q "-5^Error: Unexpected IN PROCESS request has been found for keys="_KEY1_", "_KEY2
S BPZ=BPREQS(BPREQS)
Q +BPZ
;
;
;BPTYPE: C-CLAIM, U-UNCLAIM (reversal), E-ELIGIBILITY
;BPCLMST:
; For submissions (type=C):
; E PAYABLE, E CAPTURED, E DUPLICATE, E REJECTED, E OTHER, and
; E UNSTRANDED
;
; For Reversals (type=U):
; E REVERSAL ACCEPTED, E REVERSAL REJECTED, E REVERSAL OTHER, and
; E REVERSAL UNSTRANDED
;
; For Eligibility Verification (type=E):
; E ELIGIBILITY ACCEPTED, E ELIGIBILITY REJECTED, E ELIGIBILITY OTHER, and
; E ELIGIBILITY UNSTRANDED
;returns:
;1 - request was succesful
;0 - request failed
SUCCESS(BPTYPE,BPCLMST) ;
I BPTYPE="C" Q $S((BPCLMST="E PAYABLE")!(BPCLMST="E DUPLICATE"):1,1:0)
I BPTYPE="U" Q $S((BPCLMST="E REVERSAL ACCEPTED"):1,1:0)
I BPTYPE="E" Q $S((BPCLMST="E ELIGIBILITY ACCEPTED"):1,1:0)
Q 0
;delete all sequential requests and quit
DELALLRQ(BP77,IEN59) ;
N BPNXT77
F S BPNXT77=+$P($G(^BPS(9002313.77,BP77,0)),U,5) D Q:+BPNXT77=0
. D LOG^BPSOSL(IEN59,$T(+0)_"-Deleting "_$P($G(^BPS(9002313.77,BP77,1)),U,4)_"-type request = "_BP77)
. D DELREQST^BPSOSRX4(BP77,IEN59)
. S BP77=BPNXT77
Q
; Create BPS Insurer Data records and update BPS Request fields
; This is called by jobs that were scheduled in the background
; and are now being processed
;
; Input:
; BPIEN77 - IEN for BPS Request record
; MOREDATA - Array of data
; IEN59 - IEN for BPS Transaction record
; BPCOBIND - Coordination of Benefit indicator (not formally passed but
; newed/set by calling routine)
; Return values:
; 1^BPS REQUEST ien = accepted for processing
; 0^reason = failure (should never happen)
UPDINSDT(BPIEN77,MOREDATA,IEN59) ;
I '$G(BPIEN77) Q "0^Parameter error-BPS Request IEN missing"
I '$D(MOREDATA) Q "0^Parameter error-MOREDATA missing"
I '$G(IEN59) Q "0^Parameter error-BPS Transaction IEN missing"
N BPRETV,BPIENS78,BPZ,KEY1,KEY2,BPCOB,BPQ,BPIEN772,BPREQTYP,BPERRMSG
D LOG^BPSOSL(IEN59,$T(+0)_"-Creating BPS INSURER DATA records and updating BPS Request record "_BPIEN77)
S BPZ=$G(^BPS(9002313.77,BPIEN77,0))
S KEY1=$P(BPZ,U,1),KEY2=$P(BPZ,U,2)
S BPRETV=$$MKINSUR^BPSOSRX2(KEY1,KEY2,.MOREDATA,.BPIENS78)
I +BPRETV=0 Q BPRETV
;
; Update BPS Request record with BPS INSURER DATA IENs
S BPQ=0
S BPCOB=0 F S BPCOB=$O(BPIENS78(BPCOB)) Q:+BPCOB=0!(BPQ=1) D
. I '$D(^BPS(9002313.77,BPIEN77,5,BPCOB)) D I BPQ=1 Q
. . S BPIEN772=$$INSITEM^BPSUTIL2(9002313.772,BPIEN77,BPCOB,BPCOB,"",,0)
. . I BPIEN772<1 S BPERRMSG="Cannot create record in IBDATA multiple of the BPS REQUEST file",BPQ=1 Q
. S BPERRMSG="Cannot populate a field in IBDATA multiple"
. I $$FILLFLDS^BPSUTIL2(9002313.772,".02",BPCOB_","_BPIEN77,$S($G(BPCOBIND)=BPCOB:1,1:0))<1 S BPQ=1 Q
. I $$FILLFLDS^BPSUTIL2(9002313.772,".03",BPCOB_","_BPIEN77,BPIENS78(BPCOB))<1 S BPQ=1 Q
I BPQ=1 Q "0^"_BPERRMSG_"INSURER DATA"
;
; Update selective BPS Request fields
S BPREQTYP=$P($G(^BPS(9002313.77,BPIEN77,1)),U,4),BPERRMSG="Missing data for the "
I $G(MOREDATA("DIVISION")),$$FILLFLDS^BPSUTIL2(9002313.77,"1.02",BPIEN77,MOREDATA("DIVISION"))<1 Q "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.02) ; Outpatient Site
I $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.13"),$$FILLFLDS^BPSUTIL2(9002313.77,"1.13",BPIEN77,$G(MOREDATA("RX")))<1,BPREQTYP'="E" Q "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.13) ; RX
I $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.14"),$$FILLFLDS^BPSUTIL2(9002313.77,"1.14",BPIEN77,$P($G(MOREDATA("BPSDATA",1)),U,4))<1,BPREQTYP'="E" Q "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.14) ; Fill Number
I $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.15"),$$FILLFLDS^BPSUTIL2(9002313.77,"1.15",BPIEN77,$G(MOREDATA("PATIENT")))<1 Q "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.15) ; Patient
I $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"4.04"),$$FILLFLDS^BPSUTIL2(9002313.77,"4.04",BPIEN77,$P($G(MOREDATA("BPSDATA",1)),U,4)) ; Fill Number
;
Q "1^"_BPIEN77
;get eligibility
ELIG(DFN) ;
N BPSARRY
Q $P($$RX^IBNCPDP(DFN,.BPSARRY),U,3) ;Call IB again
;BPSOSRX7
--- Routine Detail --- with STRUCTURED ROUTINE LISTING ---[H[J[2J[HBPSOSRX7 7515 printed Oct 16, 2024@17:52:54 Page 2
BPSOSRX7 ;ALB/SS - ECME REQUESTS ;04-JAN-08
+1 ;;1.0;E CLAIMS MGMT ENGINE;**7,10**;JUN 2004;Build 27
+2 ;;Per VHA Directive 2004-038, this routine should not be modified.
+3 ;
+4 QUIT
+5 ;
+6 ;Input:
+7 ;KEY1 - First Key
+8 ;KEY2 - Second Key
+9 ;BPREQS (by reference)- local array to convey results back to the caller
+10 ; BPREQS = number of nodes stored in the array
+11 ; BPREQS(n)=BPS REQUEST ien ^ Claim type ^ COB
+12 ;
+13 ;return values:
+14 ; -5 : Unexpected ACTIVATED or IN PROCESS request has been found
+15 ; -4 : Multiple BPS REQUEST records with the same NEXT REQUEST value
+16 ; -3 : SCHEDULED request(s) were found but they is not ACTIVATED for some reason
+17 ; -2 : duplicate ACTVATED / IN PROCESS requests for the same keys - this should not happen
+18 ; -1 : cannot be accepted - because reversal was requested
+19 ; and there are requests already for these keys in the queue
+20 ; and the last one is REVERSAL too for the same COB
+21 ; so we will return "-1^Sequential duplicate reversal"
+22 ; 0 : can be accepted because there are NO requests for these keys
+23 ; we will create a new record in BPS REQUEST for it and ACTIVATE it.
+24 ; >0 : IEN of the last BPS REQUEST in the queue - there are requests already for these keys.
+25 ;
CHKREQST(KEY1,KEY2,BPREQS) ;
+1 NEW BPPRFLG,BPCURNT,BPNEXT,BPCOB,BPRCUR,BPRNXT,BPQ,BPCNT,BPZ
+2 ;get the current IN PROCESS request for these keys
+3 SET BPPRFLG=2
Begin DoDot:1
+4 SET BPCURNT=$ORDER(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
End DoDot:1
IF BPCURNT>0
IF $ORDER(^BPS(9002313.77,"AC",2,KEY1,KEY2,+BPCURNT))>0
QUIT "-2^Error: More than one IN PROCESS request for keys="_KEY1_", "_KEY2
+5 ;if there is no IN PROCESS then check ACTIVATED
+6 IF BPCURNT=""
SET BPPRFLG=1
Begin DoDot:1
+7 SET BPCURNT=$ORDER(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
End DoDot:1
IF BPCURNT>0
IF $ORDER(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,+BPCURNT))>0
QUIT "-2^Error: More than one ACTIVATED request for keys="_KEY1_", "_KEY2
+8 ;if there is no IACTIVATED then check SCHEDULED
+9 IF BPCURNT=""
SET BPPRFLG=0
Begin DoDot:1
+10 SET BPCURNT=$ORDER(^BPS(9002313.77,"AC",BPPRFLG,KEY1,KEY2,""))
End DoDot:1
IF BPCURNT>0
QUIT "-3^Error: There is a SCHEDULED request without ACTIVATED requests, keys="_KEY1_", "_KEY2
+11 ;if there is no any requests then return 0
+12 ;can be accepted because there are NO requests for these keys
IF BPCURNT=""
QUIT 0
+13 ;Otherwise...
+14 SET BPQ=0
SET BPREQS=1
+15 SET BPRCUR=BPCURNT
+16 ;save current_ien ^ actype ^ COB
+17 SET BPREQS(BPREQS)=BPCURNT_U_$PIECE($GET(^BPS(9002313.77,BPCURNT,1)),U,4)_U_$PIECE($GET(^BPS(9002313.77,BPCURNT,0)),U,3)
+18 ;loop thru all SCHEDULED,ACTIVATED and IN PROCESS records starting with BPCURNT
+19 FOR
SET BPRNXT=$ORDER(^BPS(9002313.77,"AN",BPRCUR,""))
if BPRNXT=""
QUIT
if BPQ'=0
QUIT
Begin DoDot:1
+20 ;error - more than one records with the same next request
IF $DATA(BPREQS("R",BPRNXT))
SET BPQ=-1
QUIT
+21 ;BPZ - process flag ^ act type ^ COB
+22 SET BPZ=$GET(^BPS(9002313.77,"AN",BPRCUR,BPRNXT))
+23 ;except the first record in the loop - all others should be SCHEDULED (i.e. process flag =0)
IF BPRCUR'=BPCURNT
IF +BPZ>0
SET BPQ=+BPZ
QUIT
+24 SET BPREQS=BPREQS+1
+25 SET BPREQS(BPREQS)=BPRNXT_U_$PIECE($GET(^BPS(9002313.77,BPRNXT,1)),U,4)_U_$PIECE($GET(^BPS(9002313.77,BPRNXT,0)),U,3)
+26 ;used to check uniqueness
SET BPREQS("R",BPRNXT)=""
+27 SET BPRCUR=BPRNXT
End DoDot:1
+28 ;
+29 KILL BPREQS("R")
+30 IF BPQ=-1
QUIT "-4^Error: Multiple BPS REQUEST records with the same NEXT REQUEST value for keys="_KEY1_", "_KEY2
+31 IF BPQ=1
QUIT "-5^Error: Unexpected ACTIVATED request has been found for keys="_KEY1_", "_KEY2
+32 IF BPQ=2
QUIT "-5^Error: Unexpected IN PROCESS request has been found for keys="_KEY1_", "_KEY2
+33 SET BPZ=BPREQS(BPREQS)
+34 QUIT +BPZ
+35 ;
+36 ;
+37 ;BPTYPE: C-CLAIM, U-UNCLAIM (reversal), E-ELIGIBILITY
+38 ;BPCLMST:
+39 ; For submissions (type=C):
+40 ; E PAYABLE, E CAPTURED, E DUPLICATE, E REJECTED, E OTHER, and
+41 ; E UNSTRANDED
+42 ;
+43 ; For Reversals (type=U):
+44 ; E REVERSAL ACCEPTED, E REVERSAL REJECTED, E REVERSAL OTHER, and
+45 ; E REVERSAL UNSTRANDED
+46 ;
+47 ; For Eligibility Verification (type=E):
+48 ; E ELIGIBILITY ACCEPTED, E ELIGIBILITY REJECTED, E ELIGIBILITY OTHER, and
+49 ; E ELIGIBILITY UNSTRANDED
+50 ;returns:
+51 ;1 - request was succesful
+52 ;0 - request failed
SUCCESS(BPTYPE,BPCLMST) ;
+1 IF BPTYPE="C"
QUIT $SELECT((BPCLMST="E PAYABLE")!(BPCLMST="E DUPLICATE"):1,1:0)
+2 IF BPTYPE="U"
QUIT $SELECT((BPCLMST="E REVERSAL ACCEPTED"):1,1:0)
+3 IF BPTYPE="E"
QUIT $SELECT((BPCLMST="E ELIGIBILITY ACCEPTED"):1,1:0)
+4 QUIT 0
+5 ;delete all sequential requests and quit
DELALLRQ(BP77,IEN59) ;
+1 NEW BPNXT77
+2 FOR
SET BPNXT77=+$PIECE($GET(^BPS(9002313.77,BP77,0)),U,5)
Begin DoDot:1
+3 DO LOG^BPSOSL(IEN59,$TEXT(+0)_"-Deleting "_$PIECE($GET(^BPS(9002313.77,BP77,1)),U,4)_"-type request = "_BP77)
+4 DO DELREQST^BPSOSRX4(BP77,IEN59)
+5 SET BP77=BPNXT77
End DoDot:1
if +BPNXT77=0
QUIT
+6 QUIT
+7 ; Create BPS Insurer Data records and update BPS Request fields
+8 ; This is called by jobs that were scheduled in the background
+9 ; and are now being processed
+10 ;
+11 ; Input:
+12 ; BPIEN77 - IEN for BPS Request record
+13 ; MOREDATA - Array of data
+14 ; IEN59 - IEN for BPS Transaction record
+15 ; BPCOBIND - Coordination of Benefit indicator (not formally passed but
+16 ; newed/set by calling routine)
+17 ; Return values:
+18 ; 1^BPS REQUEST ien = accepted for processing
+19 ; 0^reason = failure (should never happen)
UPDINSDT(BPIEN77,MOREDATA,IEN59) ;
+1 IF '$GET(BPIEN77)
QUIT "0^Parameter error-BPS Request IEN missing"
+2 IF '$DATA(MOREDATA)
QUIT "0^Parameter error-MOREDATA missing"
+3 IF '$GET(IEN59)
QUIT "0^Parameter error-BPS Transaction IEN missing"
+4 NEW BPRETV,BPIENS78,BPZ,KEY1,KEY2,BPCOB,BPQ,BPIEN772,BPREQTYP,BPERRMSG
+5 DO LOG^BPSOSL(IEN59,$TEXT(+0)_"-Creating BPS INSURER DATA records and updating BPS Request record "_BPIEN77)
+6 SET BPZ=$GET(^BPS(9002313.77,BPIEN77,0))
+7 SET KEY1=$PIECE(BPZ,U,1)
SET KEY2=$PIECE(BPZ,U,2)
+8 SET BPRETV=$$MKINSUR^BPSOSRX2(KEY1,KEY2,.MOREDATA,.BPIENS78)
+9 IF +BPRETV=0
QUIT BPRETV
+10 ;
+11 ; Update BPS Request record with BPS INSURER DATA IENs
+12 SET BPQ=0
+13 SET BPCOB=0
FOR
SET BPCOB=$ORDER(BPIENS78(BPCOB))
if +BPCOB=0!(BPQ=1)
QUIT
Begin DoDot:1
+14 IF '$DATA(^BPS(9002313.77,BPIEN77,5,BPCOB))
Begin DoDot:2
+15 SET BPIEN772=$$INSITEM^BPSUTIL2(9002313.772,BPIEN77,BPCOB,BPCOB,"",,0)
+16 IF BPIEN772<1
SET BPERRMSG="Cannot create record in IBDATA multiple of the BPS REQUEST file"
SET BPQ=1
QUIT
End DoDot:2
IF BPQ=1
QUIT
+17 SET BPERRMSG="Cannot populate a field in IBDATA multiple"
+18 IF $$FILLFLDS^BPSUTIL2(9002313.772,".02",BPCOB_","_BPIEN77,$SELECT($GET(BPCOBIND)=BPCOB:1,1:0))<1
SET BPQ=1
QUIT
+19 IF $$FILLFLDS^BPSUTIL2(9002313.772,".03",BPCOB_","_BPIEN77,BPIENS78(BPCOB))<1
SET BPQ=1
QUIT
End DoDot:1
+20 IF BPQ=1
QUIT "0^"_BPERRMSG_"INSURER DATA"
+21 ;
+22 ; Update selective BPS Request fields
+23 SET BPREQTYP=$PIECE($GET(^BPS(9002313.77,BPIEN77,1)),U,4)
SET BPERRMSG="Missing data for the "
+24 ; Outpatient Site
IF $GET(MOREDATA("DIVISION"))
IF $$FILLFLDS^BPSUTIL2(9002313.77,"1.02",BPIEN77,MOREDATA("DIVISION"))<1
QUIT "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.02)
+25 ; RX
IF $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.13")
IF $$FILLFLDS^BPSUTIL2(9002313.77,"1.13",BPIEN77,$GET(MOREDATA("RX")))<1
IF BPREQTYP'="E"
QUIT "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.13)
+26 ; Fill Number
IF $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.14")
IF $$FILLFLDS^BPSUTIL2(9002313.77,"1.14",BPIEN77,$PIECE($GET(MOREDATA("BPSDATA",1)),U,4))<1
IF BPREQTYP'="E"
QUIT "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.14)
+27 ; Patient
IF $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"1.15")
IF $$FILLFLDS^BPSUTIL2(9002313.77,"1.15",BPIEN77,$GET(MOREDATA("PATIENT")))<1
QUIT "0^"_$$ERRFIELD^BPSOSRX3(BPIEN77,1,BPERRMSG,9002313.77,1.15)
+28 ; Fill Number
IF $$ACTFIELD^BPSOSRX3(0,BPREQTYP,"4.04")
IF $$FILLFLDS^BPSUTIL2(9002313.77,"4.04",BPIEN77,$PIECE($GET(MOREDATA("BPSDATA",1)),U,4))
+29 ;
+30 QUIT "1^"_BPIEN77
+31 ;get eligibility
ELIG(DFN) ;
+1 NEW BPSARRY
+2 ;Call IB again
QUIT $PIECE($$RX^IBNCPDP(DFN,.BPSARRY),U,3)
+3 ;BPSOSRX7