Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
believe we are talking about to different things.
I'm referring to the UNIQUEID that you see if you were to browse an SCX.
? sys(2015)
If I do as suggested I only receive 1 value and I'm not sure what that value belongs to.
If I do a browse this value doesn't refer to any of the objects listed.
MESSAGEBOX(SYS2(DATETIME()))
FUNCTION SYS2(tDateTime)
LOCAL nMilliSecs,nDays,cBase36,cSys2016
IF VARTYPE(nMilliSeconds)<>'N'
nMilliSeconds=0
ENDIF
nMilliSecs=(HOUR(tDateTime)*3600+MINUTE(tDateTime)*60+SEC(tDateTime))*1000+nMilliSeconds
nDays=TTOD(tDateTime)-DATE(YEAR(tDateTime),1,1)+1+MOD(YEAR(tDateTime),100)*367
cBase36='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
cSys2015=''
FOR nCounter=1 TO 6
cSys2015=SUBSTR(cBase36,MOD(nMilliSecs,36)+1,1)+cSys2015
nMilliSecs=INT(nMilliSecs/36)
ENDFOR
FOR nCounter=1 TO 3
cSys2015=SUBSTR(cBase36,MOD(nDays,36)+1,1)+cSys2015
nDays=INT(nDays/36)
ENDFOR
cSys2015='_'+cSys2015
RETURN cSys2015