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

XLFDT1.m

Go to the documentation of this file.
  1. XLFDT1 ;ISC-SF/RWF - Date/Time Functions cont. from VA FileMan %DTC ;02/20/2003 10:05 [ 07/29/2004 9:01 AM ]
  1. ;;8.0;KERNEL;**71,280**;Jul 10, 1995
  1. ;If y contains a "D" then Date only.
  1. ;if y contains a "F" then output with leading blanks
  1. ;If y contains a "P" then output ' HH:MM:SS am/pm'.
  1. ;If y contains a "S" then force seconds in the output.
  1. ;if y contains a "M" then stop at minutes i.e. no seconds.
  1. ;
  1. FMT ;
  1. N %G S %G=+%F
  1. G F1:%G=1,F2:%G=2,F3:%G=3,F4:%G=4,F5:%G=5,F6:%G=6,F7:%G=7,F8:%G=8,F9:%G=9,F1
  1. Q
  1. ;
  1. F1 ;Apr 10, 2002
  1. S %R=$P($$M()," ",$S($E(Y,4,5):$E(Y,4,5)+2,1:0))_$S($E(Y,4,5):" ",1:"")_$S($E(Y,6,7):$E(Y,6,7)_", ",1:"")_($E(Y,1,3)+1700)
  1. ;
  1. TM ;All formats come here to format Time.
  1. N %,%S Q:%T'>0!(%F["D")
  1. I %F'["P" S %R=%R_"@"_$E(%T,2,3)_":"_$E(%T,4,5)_$S(%F["M":"",$E(%T,6,7)!(%F["S"):":"_$E(%T,6,7),1:"")
  1. I %F["P" D
  1. . S %R=%R_" "_$S($E(%T,2,3)>12:$E(%T,2,3)-12,+$E(%T,2,3)=0:"12",1:+$E(%T,2,3))_":"_$E(%T,4,5)_$S(%F["M":"",$E(%T,6,7)!(%F["S"):":"_$E(%T,6,7),1:"")
  1. . S %R=%R_$S($E(%T,2,7)<120000:" am",$E(%T,2,3)=24:" am",1:" pm")
  1. . Q
  1. Q
  1. ;Return Month names
  1. M() Q " Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"
  1. ;
  1. F2 ;4/10/02
  1. S %R=$J(+$E(Y,4,5),2)_"/"_$J(+$E(Y,6,7),2)_"/"_$E(Y,2,3)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F3 ;10/4/02
  1. S %R=$J(+$E(Y,6,7),2)_"/"_$J(+$E(Y,4,5),2)_"/"_$E(Y,2,3)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F4 ;02/4/10
  1. S %R=$E(Y,2,3)_"/"_$J(+$E(Y,4,5),2)_"/"_$J(+$E(Y,6,7),2)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F5 ;4/10/2002
  1. S %R=$J(+$E(Y,4,5),2)_"/"_$J(+$E(Y,6,7),2)_"/"_($E(Y,1,3)+1700)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F6 ;10/4/2002
  1. S %R=$J(+$E(Y,6,7),2)_"/"_$J(+$E(Y,4,5),2)_"/"_($E(Y,1,3)+1700)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F7 ;2002/4/10
  1. S %R=($E(Y,1,3)+1700)_"/"_$J(+$E(Y,4,5),2)_"/"_$J(+$E(Y,6,7),2)
  1. S:%F["Z" %R=$TR(%R," ","0") S:%F'["F" %R=$TR(%R," ")
  1. G TM
  1. F8 ;10 Apr 02
  1. S %R=$S($E(Y,6,7):$E(Y,6,7)_" ",1:"")_$P($$M()," ",$S($E(Y,4,5):$E(Y,4,5)+2,1:0))_$S($E(Y,4,5):" ",1:"")_$E(Y,2,3)
  1. G TM
  1. F9 ;10 Apr 2002
  1. S %R=$S($E(Y,6,7):$E(Y,6,7)_" ",1:"")_$P($$M()," ",$S($E(Y,4,5):$E(Y,4,5)+2,1:0))_$S($E(Y,4,5):" ",1:"")_($E(Y,1,3)+1700)
  1. G TM