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

IVMUCHK1.m

Go to the documentation of this file.
  1. IVMUCHK1 ;ALB/MLI - Filter Routine to Validate IVM Center Tranmissions, Cont ; September 3, 1994
  1. ;;Version 2.0 ; INCOME VERIFICATION MATCH ;**6**; 21-OCT-94
  1. ;;Per VHA Directive 10-93-142, this routine should not be modified.
  1. ;
  1. ; This routine is a continuation of IVMUCHK. It performs checks on incoming means test
  1. ; transmissions to ensure they are accurate prior to their upload into DHCP.
  1. ;
  1. ZIR(STRING,DEPIEN) ; check validity of ZIR segment
  1. ;
  1. ; Input: STRING as ZIR segment
  1. ; DEPIEN as the IEN of the dependent in the array, if applicable
  1. ;
  1. ; Output: ERROR message or null
  1. ;
  1. N ERROR,I,X
  1. S ERROR=""
  1. F I=2,3,5:1:9 D I ERROR]"" G ZIRQ
  1. . S X=$P(STRING,HLFS,I)
  1. . I X]"",(X'=0),(X'=1) S ERROR=$P($T(ZIRFLD+I),";;",2)_" contains unacceptable value" Q
  1. I $$NUM^IVMUCHK2($P(STRING,HLFS,4),5,2) S ERROR="Invalid number for Amount Contributed to Spouse" G ZIRQ
  1. S X=$P(STRING,HLFS,10) I X]""&((X>30)!(X<0)!(+X'=X)) S ERROR="Invalid number in Number of Dependent Children field" G ZIRQ
  1. I X]"",(X'=DEP-SPOUSE) S ERROR="Number of Dependent Children does not match dependents transmitted" G ZIRQ
  1. I '$G(DEPIEN) D I ERROR]"" G ZIRQ ; if veteran ZIR segment
  1. . I $P(STRING,HLFS,2)']"" S ERROR="Must have Married Last Calendar Year for veteran" Q
  1. . I SPOUSE,'$P(STRING,HLFS,2) S ERROR="Spouse transmitted, but Married Last Calendar Year is NO" Q
  1. . I 'SPOUSE,$P(STRING,HLFS,2) S ERROR="No spouse transmitted, but Married Last Calendar Year is YES" Q
  1. . I '$P(STRING,HLFS,2),($P(STRING,HLFS,3)]"") S ERROR="Can't have Lived with Patient if not Married" Q
  1. . I $P(STRING,HLFS,2),($P(STRING,HLFS,3)']"") S ERROR="Must have Living with Patient if Married" Q
  1. . I $P(STRING,HLFS,3),($P(STRING,HLFS,4)]"") S ERROR="Should not have Amount contributed to spouse if living w/patient" Q
  1. . I $P(STRING,HLFS,3)=0,($P(STRING,HLFS,4)']"") S ERROR="Need amount contributed to spouse if not living w/patient" Q
  1. . F I=6:1:9 I $P(STRING,HLFS,I)]"" S ERROR=$P($T(ZIRFLD+I),";;",2)_" should not be filled in for veteran" Q
  1. . I '$P(STRING,HLFS,3),SPOUSE,($P(STRING,HLFS,4)<600) F I=3:1:20 I $P(ARRAY(SPOUSE,"ZIC"),HLFS,I) S ERROR="No income data allowed if spouse didn't live w/vet & amt contributed <$600" Q
  1. I $G(DEPIEN)=SPOUSE D I ERROR]"" G ZIRQ ; if spouse ZIR segment
  1. . F I=2:1:10 I $P(STRING,HLFS,I)]"" S ERROR=$P($T(ZIRFLD+I),";;",2)_" should not be filled in for spouse ZIR" Q
  1. I $G(DEPIEN),(DEPIEN'=SPOUSE) D I ERROR]"" G ZIRQ ; if child ZIR segment
  1. . I $P(STRING,HLFS,3)']"" S ERROR="Dependents must have Lived With Patient field" Q
  1. . I '$P(STRING,HLFS,8),($P(STRING,HLFS,9)]"") S ERROR="Shouldn't have Income Available answered if Child had no income" Q
  1. . I $P(STRING,HLFS,3),($P(STRING,HLFS,7)]"") S ERROR="Shouldn't have Contributed to Support if living w/patient" Q
  1. . I '$P(STRING,HLFS,8) F I=3:1:20 I $P(ARRAY(DEPIEN,"ZIC"),HLFS,I) S ERROR="Shouldn't have income data if Child Had Income is NO" Q
  1. ZIRQ Q ERROR
  1. ;
  1. ;
  1. ZIRFLD ; ZIR field names
  1. ;;
  1. ;;MARRIED LAST CALENDAR YEAR
  1. ;;LIVED WITH PATIENT
  1. ;;AMOUNT CONTRIBUTED TO SPOUSE
  1. ;;DEPENDENT CHILDREN
  1. ;;INCAPABLE OF SELF SUPPORT
  1. ;;CONTRIBUTED TO SUPPORT
  1. ;;CHILD HAD INCOME
  1. ;;INCOME AVAILABLE TO YOU
  1. ;;NUMBER OF DEPENDENT CHILDREN