- FBUCUTL9 ;WOIFO/SAB - UTILITY ;7/3/2001
- ;;3.5;FEE BASIS;**32**;JAN 30, 1995
- ;;Per VHA Directive 10-93-142, this routine should not be modified.
- ASKMB() ; Ask user what kind of claims should be included/excluded. Normally
- ; called by report options.
- ;INPUT: none
- ;OUTPUT:
- ;RETURNS a value (M,N,A)
- N DIR,DTOUT,DUOUT,DIROUT,DIRUT,X,Y
- S DIR(0)="SM^M:MILL BILL (38 U.S.C. 1725);N:NON-MILL BILL;A:ALL"
- S DIR("B")="ALL"
- S DIR("?",1)="Enter M to include only 38 U.S.C. 1725 claims."
- S DIR("?",2)="Enter N to exclude 38 U.S.C. 1725 claims."
- S DIR("?",3)="Enter A for all."
- S DIR("?",4)=" "
- S DIR("?")="Enter a code from the list"
- D ^DIR K DIR
- Q $S($D(DIRUT):"",1:Y)
- ;FBUCUTL9
- --- Routine Detail --- with STRUCTURED ROUTINE LISTING ---[H[J[2J[HFBUCUTL9 703 printed Feb 18, 2025@23:27:03 Page 2
- FBUCUTL9 ;WOIFO/SAB - UTILITY ;7/3/2001
- +1 ;;3.5;FEE BASIS;**32**;JAN 30, 1995
- +2 ;;Per VHA Directive 10-93-142, this routine should not be modified.
- ASKMB() ; Ask user what kind of claims should be included/excluded. Normally
- +1 ; called by report options.
- +2 ;INPUT: none
- +3 ;OUTPUT:
- +4 ;RETURNS a value (M,N,A)
- +5 NEW DIR,DTOUT,DUOUT,DIROUT,DIRUT,X,Y
- +6 SET DIR(0)="SM^M:MILL BILL (38 U.S.C. 1725);N:NON-MILL BILL;A:ALL"
- +7 SET DIR("B")="ALL"
- +8 SET DIR("?",1)="Enter M to include only 38 U.S.C. 1725 claims."
- +9 SET DIR("?",2)="Enter N to exclude 38 U.S.C. 1725 claims."
- +10 SET DIR("?",3)="Enter A for all."
- +11 SET DIR("?",4)=" "
- +12 SET DIR("?")="Enter a code from the list"
- +13 DO ^DIR
- KILL DIR
- +14 QUIT $SELECT($DATA(DIRUT):"",1:Y)
- +15 ;FBUCUTL9