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

PRCRIA1.m

Go to the documentation of this file.
  1. PRCRIA1 ;TPA/RAK/WASH IRMFO - Date Range ;8/27/96 15:37
  1. ;;5.1;IFCAP;;Oct 20, 2000
  1. ;Per VHA Directive 10-93-142, this routine should not be modified.
  1. DATERNG(EARLY,LATE) ;Extrinsic Function - returns start & end dates
  1. ;---------------------------------------------------------------------
  1. ; DATE - Value returned in four pieces.
  1. ;
  1. ; fmstartdate^fmenddate^ouputstartdate^outputenddate
  1. ;
  1. ; Piece one and two are the date ranges in fileman format.
  1. ; Piece three and four are the same dates in output format:
  1. ; dy-Mon-yr
  1. ;
  1. ; ********
  1. ; * NOTE *
  1. ; ********
  1. ; - The first piece will always be the earliest date entered.
  1. ;
  1. ; - The second piece 'ending date' will have .999 concatenated
  1. ; to the end of it for fileman sorting purposes. Strip this
  1. ; off if not needed. Ex: S $P(DATE,U,2)=$P($P(DATE,U,2),"."
  1. ;
  1. ; Optional Parameters:
  1. ;
  1. ; EARLY - If defined, the earliest date that may be selected.
  1. ; (must be in fileman format)
  1. ;
  1. ; LATE - If defined, the latest date that may be selected.
  1. ; (must be in fileman format)
  1. ;---------------------------------------------------------------------
  1. N DATE,DATE1,DATE2,DIR,DIRUT,LINE,X,Y
  1. S DATE="",EARLY=$G(EARLY),LATE=$G(LATE)
  1. RANGE ;Ask date ranges
  1. S DIR(0)="DOA^"_$S(EARLY:EARLY,1:"")_":"_$S(LATE:LATE,1:"")_":E)"
  1. S DIR("A")="Start with Date: "
  1. S DIR("?")=" "
  1. S DIR("?",1)="Enter the starting date.",LINE=2
  1. I EARLY S DIR("?",LINE)="Date must not precede "_$$FMTE^XLFDT(EARLY),LINE=LINE+1
  1. I LATE S DIR("?",LINE)="Date must not follow "_$$FMTE^XLFDT(LATE)
  1. W ! D ^DIR I $D(DIRUT) Q ""
  1. S DATE1=Y,DIR("A")=" End with Date: "
  1. S DIR("?",1)="Enter the ending date."
  1. D ^DIR W:Y="" !!,"You must enter an 'End with Date'" G:Y="" RANGE I Y="^" Q ""
  1. S DATE2=Y,Y=1 I DATE1=DATE2 K DIR D
  1. .S DIR(0)="YO",DIR("A")="Are you asking for just one days data"
  1. .S DIR("B")="Y" W ! D ^DIR K DIR
  1. I Y="^" Q ""
  1. I Y'=1 G RANGE
  1. ; Set earliest date into first piece.
  1. S DATE=$S(DATE2<DATE1:DATE2,1:DATE1)_U_$S(DATE2>DATE1:DATE2,1:DATE1)
  1. S $P(DATE,U,3)=$$FMTE^XLFDT($P(DATE,U))
  1. S $P(DATE,U,4)=$$FMTE^XLFDT($P(DATE,U,2))
  1. S $P(DATE,U,2)=$P(DATE,U,2)_.999
  1. Q DATE