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

IBCNSMM2.m

Go to the documentation of this file.
  1. IBCNSMM2 ;ALB/CMS -MEDICARE INSURANCE INTAKE (CONT) ; 18-MAY-99
  1. ;;2.0;INTEGRATED BILLING;**103,133,602**;21-MAR-94;Build 22
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. Q
  1. ;
  1. ;
  1. MII ; -- Ask Medicare Insurance Card questions
  1. ;
  1. ; Output Variables:
  1. ; IBNAME = Name of Insured
  1. ; IBHICN = Subscriber ID as of IB*601 could also be a MBI Number
  1. ; IBAEFF = Effective Date for Part A
  1. ; IBBEFF = Effective Date for Part B
  1. ; IBCOB/IBCOBI = Coordination of Benefits
  1. ; IBQUIT=1 User timed-out or entered ^
  1. ;
  1. N DIR,DTOUT,DUOUT,DIROUT,DIRUT,X,Y,IBX
  1. ;
  1. MIIA ; -- Ask user for Information
  1. ;
  1. W ! S DIR("A")="NAME OF BENEFICIARY"
  1. S IBX=$P($G(IBARR("A",1)),"^",18) I IBX="" S IBX=$P($G(IBARR("B",1)),"^",18)
  1. S DIR("B")=$S($G(IBNAME)'="":IBNAME,IBX'="":IBX,1:$P(^DPT(DFN,0),U))
  1. S DIR(0)="F^3:30^K:X'?1E.E1"","".1E.E X"
  1. S DIR("?")="Enter the Name of Beneficiary (Last name, First) from the Medicare Insurance Card. This name should be 3 to 30 characters in length."
  1. D ^DIR K DIR
  1. I $D(DTOUT)!$D(DUOUT) K DUOUT,DTOUT,DIROUT,DIRUT S IBQUIT=1 G MIIQ
  1. S IBNAME=Y
  1. ;
  1. S DIR("A")="MEDICARE CLAIM NUMBER"
  1. S IBX=$P($G(IBARR("A",1)),"^",3) I IBX="" S IBX=$P($G(IBARR("B",1)),"^",3)
  1. I $G(IBHICN)'="" S DIR("B")=IBHICN
  1. I IBX'="",'$D(DIR("B")) S DIR("B")=IBX
  1. ;S DIR(0)="F^7:15^I '$$VALHIC^IBCNSMM($TR(X,""-"")) K X" ; IB*602
  1. S DIR(0)="F^3:20" ;IB*602
  1. S DIR("?")="^D HICH^IBCNSMM2"
  1. D ^DIR K DIR
  1. I $D(DTOUT)!$D(DUOUT) K DUOUT,DTOUT,DIROUT,DIRUT S IBQUIT=1 G MIIQ
  1. S IBHICN=$TR(Y,"-") ; Strip off any '-'
  1. ;
  1. ; - don't allow editing Part A date if more than one policy
  1. I IBPOLA,'$D(IBARR("A",1)) G MIIPB
  1. S DIR("A")="HOSPITAL INSURANCE (PART A) EFFECTIVE DATE"
  1. S IBX=$P($G(IBARR("A",1)),"^",9)
  1. I $G(IBAEFF) S Y=IBAEFF D D^DIQ S DIR("B")=Y
  1. I IBX'="",'$D(DIR("B")) S Y=IBX D D^DIQ S DIR("B")=Y
  1. S DIR(0)="DO^::E"
  1. S DIR("?")="Enter PART A Effective Date if shown on Medicare Insurance Card."
  1. D ^DIR K DIR
  1. I $D(DTOUT)!$D(DUOUT) K DUOUT,DTOUT,DIROUT,DIRUT S IBQUIT=1 G MIIQ
  1. S IBAEFF=Y
  1. ;
  1. MIIPB ; - don't allow editing Part B date if more than one policy
  1. I IBPOLB,'$D(IBARR("B",1)) G MIIC
  1. S DIR("A")="MEDICAL INSURANCE (PART B) EFFECTIVE DATE"
  1. S IBX=$P($G(IBARR("B",1)),"^",9)
  1. I $G(IBBEFF) S Y=IBBEFF D D^DIQ S DIR("B")=Y
  1. I IBX'="",'$D(DIR("B")) S Y=IBX D D^DIQ S DIR("B")=Y
  1. S DIR(0)="DO^::E"
  1. S DIR("?")="Enter PART B Effective Date if shown on Medicare Insurance Card."
  1. D ^DIR K DIR
  1. I $D(DTOUT)!$D(DUOUT) K DUOUT,DTOUT,DIROUT,DIRUT S IBQUIT=1 G MIIQ
  1. S IBBEFF=Y
  1. ;
  1. MIIC ; - check effective dates before COB prompt
  1. I '$G(IBAEFF),'$G(IBBEFF) S IBQUIT=1 D G MIIQ
  1. .W !!,*7,?5,"No data can be filed without Part A or B Effective Dates."
  1. ;
  1. ; - Coordination of Benefits prompt
  1. S DIR("A")="COORDINATION OF BENEFITS: "
  1. S IBX=$P($G(IBARR("A",1)),"^",21) I 'IBX S IBX=$P($G(IBARR("B",1)),"^",21)
  1. I IBX S IBX=$S(IBX=1:"PRIMARY",IBX=2:"SECONDARY",3:"TERTIARY",1:"")
  1. S DIR("B")=$S($G(IBCOB)'="":IBCOB,IBX'="":IBX,1:"PRIMARY")
  1. S DIR(0)="SA^1:PRIMARY;2:SECONDARY;3:TERTIARY"
  1. S DIR("?")="Enter the Coordination of Benefits as Primary, Secondary, or Tertiary."
  1. D ^DIR K DIR
  1. I $D(DTOUT)!$D(DUOUT) K DUOUT,DTOUT,DIROUT,DIRUT S IBQUIT=1 G MIIQ
  1. S IBCOBI=Y,IBCOB=$S(Y=3:"TERTIARY",Y=2:"SECONDARY",1:"PRIMARY")
  1. ;
  1. ; -- Ask if Data Okay
  1. S IBOK=0 K DIR D OK^IBCNSMM1 I IBOK=0 K DIR,Y G MIIA
  1. I IBOK["^" S IBQUIT=1
  1. MIIQ Q
  1. ;
  1. ;
  1. HICH ; Help text for the HIC number prompt.
  1. W !,"Enter the Medicare Claim Number (Subscriber ID) exactly as it appears" ; IB*602
  1. W !,"on the Medicare Insurance Card, excluding special characters."
  1. W !,"Entry must be 3-20 characters."
  1. Q