- ABSPOSH2 ; IHS/SD/lwj - Assemble frmted claim for 5.1 ;[ 08/22/2002 2:05 PM ]
- ;;1.0;PHARMACY POINT OF SALE;**3,11,17,23**;JUN 21, 2001;Build 38
- ;---
- ; This routine is a clone of ABSPECA2. While ABSPECA2 will put
- ; together the ascii formatted record for 3.2 claims, this routine
- ; will put together the ascii formatted record for 5.1 claims.
- ;
- ; Within 5.1 there were some major changes in the creation of the
- ; claim. Of significant importance are these:
- ; 3.2 had 4 claim segments (hdr req, hdr opt, det req, det opt)
- ; 5.1 has 14 claim segments (header, patient, insurance, claim
- ; pharmacy provider, prescriber,
- ; COB, workers comp, DUR, Pricing,
- ; coupon, compound, prior auth,
- ; clinical)
- ;
- ; 3.2 required only field identifiers and separtors on optional
- ; fields
- ; 5.1 requires field identifiers and separators on all fields
- ; other than the header
- ;
- ; 3.2 there were no segment separators
- ; 5.1 segment separators are required prior to each segment
- ; following the header
- ;
- ; 3.2/5.1 Group seperators appear at the end of each
- ; transaction (prescription)
- ;
- ; 5.1 we only want to send segments that have data - a new
- ; segment record will hold the data until we are sure
- ; we have something to send
- ;
- ;---
- ;Put together ascii formatted record via NCPDP Record definition
- ;
- ;Input Variables: NODES - (100^110^120 or
- ; 130^140^150^160^170^180^190^
- ; 200^210^220^230)
- ; .IEN - Internal Entry Number array
- ; .ABSP - Formatted Data Array with claim and
- ; prescription data
- ; .REC - Formatted Ascii record (result)
- ;---
- ;IHS/SD/lwj 4/28/04 patch 11 - Oregon Medicaid can no longer handle
- ; blank values on the DUR record - logic altered to exclude blank flds
- ;---
- ;IHS/SD/RLT - 05/01/06 - Patch 17
- ; Allow for double zeros in fields 440 and 441.
- ;---
- ;IHS/SD/RLT - 06/27/07 - 10/18/07 - Patch 23
- ; DIAGNOSIS CODE in CLINICAL Segment.
- ;---
- XLOOP(NODES,IEN,ABSP,REC) ;EP - from ABSPECA1
- ;Manage local variables
- N ORDER,RECMIEN,MDATA,FLDIEN,PMODE,FLAG,NODE,FDATA,FLDNUM,FLDDATA
- N INDEX,FLDID
- N SEGREC,DATAFND,FDATA5
- ;
- ;
- ;Loop through the NODES defined in NODES variable parsed by U
- F INDEX=1:1:$L(NODES,U) D
- .S NODE=$P(NODES,U,INDEX)
- .Q:NODE=""
- .Q:'$D(^ABSPF(9002313.92,IEN(9002313.92),NODE,0))
- .;
- .S DATAFND=0 ;indicates if data is on the segment for us to send
- .S SEGREC="" ;holds the segment's information
- .;
- . D:NODE=180 PROCDUR
- . D:NODE=230 PROCDIAG ;Patch 23
- .;
- .S ORDER=""
- .F D Q:'ORDER
- ..;
- ..Q:NODE=180 ;already had to process the DUR/PPS section (repeating)
- ..Q:NODE=230 ;Patch 23
- ..S ORDER=$O(^ABSPF(9002313.92,IEN(9002313.92),NODE,"B",ORDER))
- ..Q:'ORDER
- ..S RECMIEN=""
- ..S RECMIEN=$O(^ABSPF(9002313.92,IEN(9002313.92),NODE,"B",ORDER,RECMIEN))
- ..Q:RECMIEN=""
- ..;
- ..S MDATA=$G(^ABSPF(9002313.92,IEN(9002313.92),NODE,RECMIEN,0))
- ..Q:MDATA=""
- ..;
- ..S FLDIEN=$P(MDATA,U,2)
- ..Q:FLDIEN=""
- ..;
- ..S FDATA=$G(^ABSPF(9002313.91,FLDIEN,0))
- ..Q:FDATA=""
- ..S FLDNUM=$P(FDATA,U,1)
- ..Q:FLDNUM=""
- ..;
- ..S FDATA5=$G(^ABSPF(9002313.91,FLDIEN,5)) ;5.1 id and length
- ..S FLDID=$P(FDATA5,U,1) ;5.1 ID
- ..;
- ..;header data
- ..S:NODE<130 FLDDATA=$G(ABSP(9002313.02,IEN(9002313.02),FLDNUM,"I"))
- ..;
- ..;transaction data
- ..S:NODE>120 FLDDATA=$G(ABSP(9002313.0201,IEN(9002313.01),FLDNUM,"I"))
- ..;
- ..I FLDID'=$TR(FLDDATA,"0 {}") S DATAFND=1 ;fld chk-is the field empty?
- ..;
- ..;check if this is the seg id - call this after fld chk since
- ..;we don't want to send the segment if this is all there is
- ..I (NODE>100)&(FLDNUM=111) S FLDDATA=$$SEGID(NODE)
- ..;
- ..S:NODE=100 SEGREC=SEGREC_FLDDATA ;no FS on the header rec
- ..S:NODE>100 SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- ..;
- .;
- . I (DATAFND)&(NODE=100) S REC=SEGREC ;no SS when it's the header
- . I (DATAFND)&(NODE>100) S REC=REC_$C(30)_SEGREC ;SS before the seg
- ;
- Q
- ;
- SEGID(ND) ; Field 111 is the Segment Identifier - for each segment, other than
- ; the header, a pre-defined, unique value must be sent in this field
- ; to identify which segment is being sent. This value is not stored
- ; in the claim - as it changes with each of the 13 segments. The
- ; field does appear as part of the NCPCP Format, put is simply not
- ; stored.
- ; 01 = Patient 02 = Pharmacy Provider 03 = Prescriber
- ; 04 = Insurance 05 = COB/Other Payment 06 = Workers Comp
- ; 07 = Claim 08 = DUR/PPS 09 = Coupon
- ; 10 = Compound 11 = Pricing 12 = Prior Auth
- ; 13 = Clinical
- ;
- N FLD
- ;
- S FLD=$S(ND=110:"01",ND=120:"04",ND=130:"07",ND=140:"02",ND=150:"03",ND=160:"05",ND=170:"06",ND=180:"08",ND=190:11,ND=200:"09",ND=210:10,ND=220:12,ND=230:13,1:"00")
- S FLD="AM"_$$NFF^ABSPECFM(FLD,2)
- ;
- Q FLD
- ;
- PROCDUR ;NCPDP 5.1 - The DUR/PPS segment can repeat itself for any given
- ; transaction within a claim. This means we have to have special
- ; programming to handle the repeating fields.
- ;
- N FIELD,DUR,FLD
- ;
- ; if there isn't any data in this segment, then lets quit
- Q:'$D(ABSP(9002313.1001))
- ;
- ; second thing - create the 111 field entry as it is not repeating
- S FLDDATA=$$SEGID(NODE)
- S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- ;
- ; next- let's look to the format to see which DUR/PPS fields are
- ; needed (remember - ALL fields on the DUR/PPS segment are optional)
- D GETFLDS^ABSPOSHF(IEN(9002313.92),NODE,.FIELD)
- ;
- ;finally -loop through and process the fields for as many times
- ; as they appear
- S DUR=0
- F S DUR=$O(ABSP(9002313.1001,DUR)) Q:DUR="" D
- . S ORD=0
- . F S ORD=$O(FIELD(ORD)) Q:ORD="" D
- .. S FLDIEN=$P(FIELD(ORD),U)
- .. S FLD=$P(FIELD(ORD),U,2)
- .. S:FLD=473 FLD=.01 ;473 value stored in the .01 field
- .. S FDATA5=$G(^ABSPF(9002313.91,FLDIEN,5)) ;5.1 id and length
- .. S FLDID=$P(FDATA5,U,1) ;5.1 ID
- .. ;
- .. ;transaction data
- .. S FLDDATA=$G(ABSP(9002313.1001,DUR,FLD,"I"))
- .. ;
- .. ;IHS/SD/lwj 04/28/04 patch 11, chgd logic so blk flds aren't sent
- .. ;I FLDID'=$TR(FLDDATA,"0 {}") S DATAFND=1 ;fld chk-is the fld empty?
- .. ;IHS/SD/RLT - 05/01/06 - Patch 17
- .. ;Allow double zeros in fields 440 and 441
- .. ;I FLDID'=$TR(FLDDATA,"0 {}") D
- .. I FLDID'=$TR(FLDDATA," {}") D
- ... S DATAFND=1 ;fld chk-is the fld empty?
- ... S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- .. ;
- .. ;S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- .. ;IHS/SD/lwj 04/28/04 patch 11 end changes
- ;
- ;
- Q
- PROCDIAG ;NCPDP 5.1 - DIAGNOSIS CODE in CLINICAL Segment
- ;
- Q:'$D(ABSP(9002313.0701)) ;quit if no data
- S DATAFND=1
- ;
- N FIELD,DIAG,FLD
- ;
- ; 111 field
- S FLDDATA=$$SEGID(NODE)
- S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- ;
- ; 491 field ;not included below because it's not a repeating field
- S FLDDATA=$G(ABSP(9002313.0701,0,491,"I"))
- S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- ;
- D GETFLDS^ABSPOSHF(IEN(9002313.92),NODE,.FIELD)
- ;
- S DIAG=0
- F S DIAG=$O(ABSP(9002313.0701,DIAG)) Q:DIAG="" D
- . S ORD=0
- . F S ORD=$O(FIELD(ORD)) Q:ORD="" D
- .. S FLDIEN=$P(FIELD(ORD),U)
- .. S FLD=$P(FIELD(ORD),U,2)
- .. S FDATA5=$G(^ABSPF(9002313.91,FLDIEN,5)) ;5.1 id and length
- .. S FLDID=$P(FDATA5,U,1) ;5.1 ID
- .. ;
- .. ;transaction data
- .. S FLDDATA=$G(ABSP(9002313.0701,DIAG,FLD,"I"))
- .. S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- Q
- ABSPOSH2 ; IHS/SD/lwj - Assemble frmted claim for 5.1 ;[ 08/22/2002 2:05 PM ]
- +1 ;;1.0;PHARMACY POINT OF SALE;**3,11,17,23**;JUN 21, 2001;Build 38
- +2 ;---
- +3 ; This routine is a clone of ABSPECA2. While ABSPECA2 will put
- +4 ; together the ascii formatted record for 3.2 claims, this routine
- +5 ; will put together the ascii formatted record for 5.1 claims.
- +6 ;
- +7 ; Within 5.1 there were some major changes in the creation of the
- +8 ; claim. Of significant importance are these:
- +9 ; 3.2 had 4 claim segments (hdr req, hdr opt, det req, det opt)
- +10 ; 5.1 has 14 claim segments (header, patient, insurance, claim
- +11 ; pharmacy provider, prescriber,
- +12 ; COB, workers comp, DUR, Pricing,
- +13 ; coupon, compound, prior auth,
- +14 ; clinical)
- +15 ;
- +16 ; 3.2 required only field identifiers and separtors on optional
- +17 ; fields
- +18 ; 5.1 requires field identifiers and separators on all fields
- +19 ; other than the header
- +20 ;
- +21 ; 3.2 there were no segment separators
- +22 ; 5.1 segment separators are required prior to each segment
- +23 ; following the header
- +24 ;
- +25 ; 3.2/5.1 Group seperators appear at the end of each
- +26 ; transaction (prescription)
- +27 ;
- +28 ; 5.1 we only want to send segments that have data - a new
- +29 ; segment record will hold the data until we are sure
- +30 ; we have something to send
- +31 ;
- +32 ;---
- +33 ;Put together ascii formatted record via NCPDP Record definition
- +34 ;
- +35 ;Input Variables: NODES - (100^110^120 or
- +36 ; 130^140^150^160^170^180^190^
- +37 ; 200^210^220^230)
- +38 ; .IEN - Internal Entry Number array
- +39 ; .ABSP - Formatted Data Array with claim and
- +40 ; prescription data
- +41 ; .REC - Formatted Ascii record (result)
- +42 ;---
- +43 ;IHS/SD/lwj 4/28/04 patch 11 - Oregon Medicaid can no longer handle
- +44 ; blank values on the DUR record - logic altered to exclude blank flds
- +45 ;---
- +46 ;IHS/SD/RLT - 05/01/06 - Patch 17
- +47 ; Allow for double zeros in fields 440 and 441.
- +48 ;---
- +49 ;IHS/SD/RLT - 06/27/07 - 10/18/07 - Patch 23
- +50 ; DIAGNOSIS CODE in CLINICAL Segment.
- +51 ;---
- XLOOP(NODES,IEN,ABSP,REC) ;EP - from ABSPECA1
- +1 ;Manage local variables
- +2 NEW ORDER,RECMIEN,MDATA,FLDIEN,PMODE,FLAG,NODE,FDATA,FLDNUM,FLDDATA
- +3 NEW INDEX,FLDID
- +4 NEW SEGREC,DATAFND,FDATA5
- +5 ;
- +6 ;
- +7 ;Loop through the NODES defined in NODES variable parsed by U
- +8 FOR INDEX=1:1:$LENGTH(NODES,U)
- Begin DoDot:1
- +9 SET NODE=$PIECE(NODES,U,INDEX)
- +10 IF NODE=""
- QUIT
- +11 IF '$DATA(^ABSPF(9002313.92,IEN(9002313.92),NODE,0))
- QUIT
- +12 ;
- +13 ;indicates if data is on the segment for us to send
- SET DATAFND=0
- +14 ;holds the segment's information
- SET SEGREC=""
- +15 ;
- +16 IF NODE=180
- DO PROCDUR
- +17 ;Patch 23
- IF NODE=230
- DO PROCDIAG
- +18 ;
- +19 SET ORDER=""
- +20 FOR
- Begin DoDot:2
- +21 ;
- +22 ;already had to process the DUR/PPS section (repeating)
- IF NODE=180
- QUIT
- +23 ;Patch 23
- IF NODE=230
- QUIT
- +24 SET ORDER=$ORDER(^ABSPF(9002313.92,IEN(9002313.92),NODE,"B",ORDER))
- +25 IF 'ORDER
- QUIT
- +26 SET RECMIEN=""
- +27 SET RECMIEN=$ORDER(^ABSPF(9002313.92,IEN(9002313.92),NODE,"B",ORDER,RECMIEN))
- +28 IF RECMIEN=""
- QUIT
- +29 ;
- +30 SET MDATA=$GET(^ABSPF(9002313.92,IEN(9002313.92),NODE,RECMIEN,0))
- +31 IF MDATA=""
- QUIT
- +32 ;
- +33 SET FLDIEN=$PIECE(MDATA,U,2)
- +34 IF FLDIEN=""
- QUIT
- +35 ;
- +36 SET FDATA=$GET(^ABSPF(9002313.91,FLDIEN,0))
- +37 IF FDATA=""
- QUIT
- +38 SET FLDNUM=$PIECE(FDATA,U,1)
- +39 IF FLDNUM=""
- QUIT
- +40 ;
- +41 ;5.1 id and length
- SET FDATA5=$GET(^ABSPF(9002313.91,FLDIEN,5))
- +42 ;5.1 ID
- SET FLDID=$PIECE(FDATA5,U,1)
- +43 ;
- +44 ;header data
- +45 IF NODE<130
- SET FLDDATA=$GET(ABSP(9002313.02,IEN(9002313.02),FLDNUM,"I"))
- +46 ;
- +47 ;transaction data
- +48 IF NODE>120
- SET FLDDATA=$GET(ABSP(9002313.0201,IEN(9002313.01),FLDNUM,"I"))
- +49 ;
- +50 ;fld chk-is the field empty?
- IF FLDID'=$TRANSLATE(FLDDATA,"0 {}")
- SET DATAFND=1
- +51 ;
- +52 ;check if this is the seg id - call this after fld chk since
- +53 ;we don't want to send the segment if this is all there is
- +54 IF (NODE>100)&(FLDNUM=111)
- SET FLDDATA=$$SEGID(NODE)
- +55 ;
- +56 ;no FS on the header rec
- IF NODE=100
- SET SEGREC=SEGREC_FLDDATA
- +57 ;FS always proceeds fld
- IF NODE>100
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- +58 ;
- End DoDot:2
- IF 'ORDER
- QUIT
- +59 ;
- +60 ;no SS when it's the header
- IF (DATAFND)&(NODE=100)
- SET REC=SEGREC
- +61 ;SS before the seg
- IF (DATAFND)&(NODE>100)
- SET REC=REC_$CHAR(30)_SEGREC
- End DoDot:1
- +62 ;
- +63 QUIT
- +64 ;
- SEGID(ND) ; Field 111 is the Segment Identifier - for each segment, other than
- +1 ; the header, a pre-defined, unique value must be sent in this field
- +2 ; to identify which segment is being sent. This value is not stored
- +3 ; in the claim - as it changes with each of the 13 segments. The
- +4 ; field does appear as part of the NCPCP Format, put is simply not
- +5 ; stored.
- +6 ; 01 = Patient 02 = Pharmacy Provider 03 = Prescriber
- +7 ; 04 = Insurance 05 = COB/Other Payment 06 = Workers Comp
- +8 ; 07 = Claim 08 = DUR/PPS 09 = Coupon
- +9 ; 10 = Compound 11 = Pricing 12 = Prior Auth
- +10 ; 13 = Clinical
- +11 ;
- +12 NEW FLD
- +13 ;
- +14 SET FLD=$SELECT(ND=110:"01",ND=120:"04",ND=130:"07",ND=140:"02",ND=150:"03",ND=160:"05",ND=170:"06",ND=180:"08",ND=190:11,ND=200:"09",ND=210:10,ND=220:12,ND=230:13,1:"00")
- +15 SET FLD="AM"_$$NFF^ABSPECFM(FLD,2)
- +16 ;
- +17 QUIT FLD
- +18 ;
- PROCDUR ;NCPDP 5.1 - The DUR/PPS segment can repeat itself for any given
- +1 ; transaction within a claim. This means we have to have special
- +2 ; programming to handle the repeating fields.
- +3 ;
- +4 NEW FIELD,DUR,FLD
- +5 ;
- +6 ; if there isn't any data in this segment, then lets quit
- +7 IF '$DATA(ABSP(9002313.1001))
- QUIT
- +8 ;
- +9 ; second thing - create the 111 field entry as it is not repeating
- +10 SET FLDDATA=$$SEGID(NODE)
- +11 ;FS always proceeds fld
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- +12 ;
- +13 ; next- let's look to the format to see which DUR/PPS fields are
- +14 ; needed (remember - ALL fields on the DUR/PPS segment are optional)
- +15 DO GETFLDS^ABSPOSHF(IEN(9002313.92),NODE,.FIELD)
- +16 ;
- +17 ;finally -loop through and process the fields for as many times
- +18 ; as they appear
- +19 SET DUR=0
- +20 FOR
- SET DUR=$ORDER(ABSP(9002313.1001,DUR))
- IF DUR=""
- QUIT
- Begin DoDot:1
- +21 SET ORD=0
- +22 FOR
- SET ORD=$ORDER(FIELD(ORD))
- IF ORD=""
- QUIT
- Begin DoDot:2
- +23 SET FLDIEN=$PIECE(FIELD(ORD),U)
- +24 SET FLD=$PIECE(FIELD(ORD),U,2)
- +25 ;473 value stored in the .01 field
- IF FLD=473
- SET FLD=.01
- +26 ;5.1 id and length
- SET FDATA5=$GET(^ABSPF(9002313.91,FLDIEN,5))
- +27 ;5.1 ID
- SET FLDID=$PIECE(FDATA5,U,1)
- +28 ;
- +29 ;transaction data
- +30 SET FLDDATA=$GET(ABSP(9002313.1001,DUR,FLD,"I"))
- +31 ;
- +32 ;IHS/SD/lwj 04/28/04 patch 11, chgd logic so blk flds aren't sent
- +33 ;I FLDID'=$TR(FLDDATA,"0 {}") S DATAFND=1 ;fld chk-is the fld empty?
- +34 ;IHS/SD/RLT - 05/01/06 - Patch 17
- +35 ;Allow double zeros in fields 440 and 441
- +36 ;I FLDID'=$TR(FLDDATA,"0 {}") D
- +37 IF FLDID'=$TRANSLATE(FLDDATA," {}")
- Begin DoDot:3
- +38 ;fld chk-is the fld empty?
- SET DATAFND=1
- +39 ;FS always proceeds fld
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- End DoDot:3
- +40 ;
- +41 ;S SEGREC=SEGREC_$C(28)_FLDDATA ;FS always proceeds fld
- +42 ;IHS/SD/lwj 04/28/04 patch 11 end changes
- End DoDot:2
- End DoDot:1
- +43 ;
- +44 ;
- +45 QUIT
- PROCDIAG ;NCPDP 5.1 - DIAGNOSIS CODE in CLINICAL Segment
- +1 ;
- +2 ;quit if no data
- IF '$DATA(ABSP(9002313.0701))
- QUIT
- +3 SET DATAFND=1
- +4 ;
- +5 NEW FIELD,DIAG,FLD
- +6 ;
- +7 ; 111 field
- +8 SET FLDDATA=$$SEGID(NODE)
- +9 ;FS always proceeds fld
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- +10 ;
- +11 ; 491 field ;not included below because it's not a repeating field
- +12 SET FLDDATA=$GET(ABSP(9002313.0701,0,491,"I"))
- +13 ;FS always proceeds fld
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- +14 ;
- +15 DO GETFLDS^ABSPOSHF(IEN(9002313.92),NODE,.FIELD)
- +16 ;
- +17 SET DIAG=0
- +18 FOR
- SET DIAG=$ORDER(ABSP(9002313.0701,DIAG))
- IF DIAG=""
- QUIT
- Begin DoDot:1
- +19 SET ORD=0
- +20 FOR
- SET ORD=$ORDER(FIELD(ORD))
- IF ORD=""
- QUIT
- Begin DoDot:2
- +21 SET FLDIEN=$PIECE(FIELD(ORD),U)
- +22 SET FLD=$PIECE(FIELD(ORD),U,2)
- +23 ;5.1 id and length
- SET FDATA5=$GET(^ABSPF(9002313.91,FLDIEN,5))
- +24 ;5.1 ID
- SET FLDID=$PIECE(FDATA5,U,1)
- +25 ;
- +26 ;transaction data
- +27 SET FLDDATA=$GET(ABSP(9002313.0701,DIAG,FLD,"I"))
- +28 ;FS always proceeds fld
- SET SEGREC=SEGREC_$CHAR(28)_FLDDATA
- End DoDot:2
- End DoDot:1
- +29 QUIT