Back to SPR List Previous Next
New Exact time map format
New Feature Closed - Feature Found:XS.01.11 17 JUN 2009 Fixed:XS.01.12 17 JUN 2009

DETAILS
 There is now an exact time format. If the time format starts with E then any string
 input into that variable must match the format exactly (like the E Date format).
EXAMPLE PROGRAM
 PROGRAM
 TIME EMAP ("EHH:MM")
 TIME NOEMAP  ("HH:MM")
 COMPUTE EMAP = "21"
 COMPUTE NOEMAP = "21"
 WRITE EMAP NOEMAP
 COMPUTE EMAP = "21:01"
 COMPUTE NOEMAP = "21:01"
 WRITE EMAP NOEMAP
 END PROGRAM
WORKAROUND
Test times using string functions to ensure they are the right format
Back to SPR List Previous Next