Use this function to receive the current system time and data. The function demands a formated string as parameter one. You can format the string as follows:
h -> Hours without leading zero
hh -> Hours with leading zero
n -> Minutes without leading zero
nn -> Minutes with leading zero
s -> Seconds without leading zero
s -> Seconds with leading zero
z -> Milliseconds without leading zero
zzz -> Milliseconds with leading zero
yy -> Year 2stellig
yyyy -> Year 4stellig
m -> Month without leading zero
mm -> Month with leading zero
mmm -> Month as a 3 character string
mmmm -> full month name
d -> Day without leading zero
dd -> Day with leading zero
ddd -> Day as a 3 character string
dddd -> full day name
Beispiel:
%System.GetDateTime('hh:nn')
If this function is processed at 15:02, the function call returns "15:02".