- IBQL538 ;LEB/MRY - IBQ EXTRACT DATA ; 6-JUN-95
- ;;1.0;UTILIZATION MGMT ROLLUP LOCAL;;Oct 01, 1995
- ;;Per VHA Directive 10-93-142, this routine should not be modified.
- ;
- Q
- ADMIT ; -- Extract Admission Review iformation
- ; -- input: IBTRN from ^ibq(538,ibtrn...
- ; -- output: IB(array)=data
- ; .01:entry id,.02:site,.03:ssn,.04:admitting diagnosis,.05:enroll code
- ; .06:admitting phy,.07:attending phy,.08:resident phy,.09;admission
- ; .1:discharge,.11:ward,.12:treating specialty,.13:acute adm?
- ; 1.01:si from adm,1.02:is from adm,1.03:reasons from adm
- ; 1.04:provider interviewed?,1.05:adm influenced?,1.06:rollup type
- ; 1.07:service
- F IBFLD=.01:.01:.13,1.01:.01:1.07,"ACUTE ADMISSION" S IB(IBFLD)=""
- ADMD S IBTRND=$G(^IBQ(538,IBTRN,0)),IBTRND1=$G(^(1))
- S IB(.01)=$P(IBTRND,"^"),IB(.02)=$P(IBTRND,"^",2),IB(.03)=$P(IBTRND,"^",3),IB(.04)=$P(IBTRND,"^",4),IB(.05)=$P(IBTRND,"^",5)
- S IB(.06)=$P(IBTRND,"^",6),IB(.07)=$P(IBTRND,"^",7),IB(.08)=$P(IBTRND,"^",8),IB(.09)=$P(IBTRND,"^",9)
- S IB(.1)=$P(IBTRND,"^",10),IB(.11)=$P(IBTRND,"^",11),IB(.12)=$P(IBTRND,"^",12),IB(.13)=$P(IBTRND,"^",13)
- S IB(1.01)=$P(IBTRND1,"^"),IB(1.02)=$P(IBTRND1,"^",2),IB(1.03)=$P(IBTRND1,"^",3),IB(1.04)=$P(IBTRND1,"^",4)
- S IB(1.05)=$P(IBTRND1,"^",5),IB(1.06)=$P(IBTRND1,"^",6),IB(1.07)=$P(IBTRND1,"^",7)
- I 'IB(1.03)!IB(.13) S IB("ACUTE ADMISSION")=1
- Q
- ;
- STAY ; -- Extract Continued Stay Review information
- ; -- input: IBTRN, IBTRV from ^ibq(538,ibtrn,13,ibtrv...
- ; -- output: IB(array)=data
- ; 13.01:day, 13.02:is, 13.03:si, 13.04:d/s, 13.05:interviewed?
- ; 13.06:reasons, 13.07:treating specialty, 13.08:service
- F IBFLD=.01:.01:.08,"ACUTE STAY" S:IBFLD IB(13+IBFLD)="" S:'IBFLD IB(IBFLD)=""
- STAYD S IBTRVD=$G(^IBQ(538,IBTRN,13,IBTRV,0))
- S IB(13.01)=$P(IBTRVD,"^",1),IB(13.02)=$P(IBTRVD,"^",2),IB(13.03)=$P(IBTRVD,"^",3),IB(13.04)=$P(IBTRVD,"^",4)
- S IB(13.05)=$P(IBTRVD,"^",5),IB(13.06)=$P(IBTRVD,"^",6),IB(13.07)=$P(IBTRVD,"^",7),IB(13.08)=$P(IBTRVD,"^",8)
- I 'IB(13.06) S IB("ACUTE STAY")=1
- Q
- --- Routine Detail --- with STRUCTURED ROUTINE LISTING ---[H[J[2J[HIBQL538 2027 printed Mar 13, 2025@21:45:50 Page 2
- IBQL538 ;LEB/MRY - IBQ EXTRACT DATA ; 6-JUN-95
- +1 ;;1.0;UTILIZATION MGMT ROLLUP LOCAL;;Oct 01, 1995
- +2 ;;Per VHA Directive 10-93-142, this routine should not be modified.
- +3 ;
- +4 QUIT
- ADMIT ; -- Extract Admission Review iformation
- +1 ; -- input: IBTRN from ^ibq(538,ibtrn...
- +2 ; -- output: IB(array)=data
- +3 ; .01:entry id,.02:site,.03:ssn,.04:admitting diagnosis,.05:enroll code
- +4 ; .06:admitting phy,.07:attending phy,.08:resident phy,.09;admission
- +5 ; .1:discharge,.11:ward,.12:treating specialty,.13:acute adm?
- +6 ; 1.01:si from adm,1.02:is from adm,1.03:reasons from adm
- +7 ; 1.04:provider interviewed?,1.05:adm influenced?,1.06:rollup type
- +8 ; 1.07:service
- +9 FOR IBFLD=.01:.01:.13,1.01:.01:1.07,"ACUTE ADMISSION"
- SET IB(IBFLD)=""
- ADMD SET IBTRND=$GET(^IBQ(538,IBTRN,0))
- SET IBTRND1=$GET(^(1))
- +1 SET IB(.01)=$PIECE(IBTRND,"^")
- SET IB(.02)=$PIECE(IBTRND,"^",2)
- SET IB(.03)=$PIECE(IBTRND,"^",3)
- SET IB(.04)=$PIECE(IBTRND,"^",4)
- SET IB(.05)=$PIECE(IBTRND,"^",5)
- +2 SET IB(.06)=$PIECE(IBTRND,"^",6)
- SET IB(.07)=$PIECE(IBTRND,"^",7)
- SET IB(.08)=$PIECE(IBTRND,"^",8)
- SET IB(.09)=$PIECE(IBTRND,"^",9)
- +3 SET IB(.1)=$PIECE(IBTRND,"^",10)
- SET IB(.11)=$PIECE(IBTRND,"^",11)
- SET IB(.12)=$PIECE(IBTRND,"^",12)
- SET IB(.13)=$PIECE(IBTRND,"^",13)
- +4 SET IB(1.01)=$PIECE(IBTRND1,"^")
- SET IB(1.02)=$PIECE(IBTRND1,"^",2)
- SET IB(1.03)=$PIECE(IBTRND1,"^",3)
- SET IB(1.04)=$PIECE(IBTRND1,"^",4)
- +5 SET IB(1.05)=$PIECE(IBTRND1,"^",5)
- SET IB(1.06)=$PIECE(IBTRND1,"^",6)
- SET IB(1.07)=$PIECE(IBTRND1,"^",7)
- +6 IF 'IB(1.03)!IB(.13)
- SET IB("ACUTE ADMISSION")=1
- +7 QUIT
- +8 ;
- STAY ; -- Extract Continued Stay Review information
- +1 ; -- input: IBTRN, IBTRV from ^ibq(538,ibtrn,13,ibtrv...
- +2 ; -- output: IB(array)=data
- +3 ; 13.01:day, 13.02:is, 13.03:si, 13.04:d/s, 13.05:interviewed?
- +4 ; 13.06:reasons, 13.07:treating specialty, 13.08:service
- +5 FOR IBFLD=.01:.01:.08,"ACUTE STAY"
- if IBFLD
- SET IB(13+IBFLD)=""
- if 'IBFLD
- SET IB(IBFLD)=""
- STAYD SET IBTRVD=$GET(^IBQ(538,IBTRN,13,IBTRV,0))
- +1 SET IB(13.01)=$PIECE(IBTRVD,"^",1)
- SET IB(13.02)=$PIECE(IBTRVD,"^",2)
- SET IB(13.03)=$PIECE(IBTRVD,"^",3)
- SET IB(13.04)=$PIECE(IBTRVD,"^",4)
- +2 SET IB(13.05)=$PIECE(IBTRVD,"^",5)
- SET IB(13.06)=$PIECE(IBTRVD,"^",6)
- SET IB(13.07)=$PIECE(IBTRVD,"^",7)
- SET IB(13.08)=$PIECE(IBTRVD,"^",8)
- +3 IF 'IB(13.06)
- SET IB("ACUTE STAY")=1
- +4 QUIT