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

IBCNSU4.m

Go to the documentation of this file.
  1. IBCNSU4 ;ALB/CPM - SPONSOR UTILITIES ; 21-JAN-97
  1. ;;Version 2.0 ; INTEGRATED BILLING ;**52**; 21-MAR-94
  1. ;;Per VHA Directive 10-93-142, this routine should not be modified.
  1. ;
  1. GET(DFN,ARR) ; Retrieve sponsor relationships for a patient.
  1. ; Input: DFN -- Pointer to the patient in file #2
  1. ; Output: ARR -- Passed by reference:
  1. ;
  1. ; ARR = #, where # is the number of relationships
  1. ;
  1. ; ARR(#,"REL")=1^2^3^4^5, where
  1. ; 1 => sponsor name
  1. ; 2 => family prefix
  1. ; 3 => type (tricare/champva)
  1. ; 4 => effective date (fm format)
  1. ; 5 => expiration date (fm format)
  1. ; 6 => pointer to the relationship in file #355.81
  1. ;
  1. ; ARR(#,"SPON")=1^2^3^4^5^6, where
  1. ; 1 => sponsor name
  1. ; 2 => sponsor dob (external format)
  1. ; 3 => sponsor ssn (external format [dashes])
  1. ; 4 => military status (active duty/retired)
  1. ; 5 => branch (expanded from file #23)
  1. ; 6 => rank
  1. ;
  1. N BRAN,REL,SPON,STAT,X,X1,XSPON,Y,Y1
  1. K ARR S ARR=0
  1. I '$G(DFN) G GETQ
  1. ;
  1. ; - look at all of the patient's sponsor relationships
  1. S X=0 F S X=$O(^IBA(355.81,"B",DFN,X)) Q:'X D
  1. .S REL=$G(^IBA(355.81,X,0)) Q:'REL
  1. .S SPON=$G(^IBA(355.8,+$P(REL,"^",2),0)) Q:'SPON
  1. .I $L(REL,"^")<6 S REL=REL_"^^^^^^^"
  1. .;
  1. .; - if the sponsor is a patient, gather attributes from file #2
  1. .I $P(SPON,"^")["DPT" D
  1. ..S X1=$G(^DPT(+SPON,0))
  1. ..S Y=$P(X1,"^",3) X ^DD("DD")
  1. ..S XSPON=$P(X1,"^")_"^"_Y_"^"_$$SSN($P(X1,"^",9))
  1. .;
  1. .; - if the sponsor is not a patient, go to file #355.82
  1. .E D
  1. ..S XSPON=$G(^IBA(355.82,+SPON,0)) S:$L(XSPON,"^")<3 XSPON=XSPON_"^^"
  1. ..S Y=$P(XSPON,"^",2) I Y X ^DD("DD") S $P(XSPON,"^",2)=Y
  1. ..S Y=$P(XSPON,"^",3) I Y S $P(XSPON,"^",3)=$$SSN(Y)
  1. .;
  1. .;
  1. .; - build sponsor relation array
  1. .S $P(REL,"^",4)=$S($P(REL,"^",4)="T":"TRICARE",$P(REL,"^",4)="C":"CHAMPVA",1:"")
  1. .S ARR=ARR+1,ARR(ARR,"REL")=$P(XSPON,"^")_"^"_$P(REL,"^",3,6)_"^"_X
  1. .;
  1. .; - build sponsor array
  1. .S STAT=$S($P(SPON,"^",2)="A":"ACTIVE DUTY",$P(SPON,"^",2)="R":"RETIRED",1:"")
  1. .S BRAN=$P($G(^DIC(23,+$P(SPON,"^",3),0)),"^")
  1. .S ARR(ARR,"SPON")=$P(XSPON,"^",1,3)_"^"_STAT_"^"_BRAN_"^"_$P(SPON,"^",4)
  1. ;
  1. GETQ Q
  1. ;
  1. ;
  1. SSN(X) ; Strip dashes from SSN and add them back in.
  1. S:$G(X)'="" X=$TR(X,"-","")
  1. Q $S($G(X)="":"",1:$E(X,1,3)_"-"_$E(X,4,5)_"-"_$E(X,6,13))