Skip to main content
InSource Solutions

TN Appsvr231 Equivalents for InTouch Time Tags in Application Server Scripting

InSource_Logo_Transparent.png

Description

 

This article from InSource shows the Equivalents for InTouch Time Tags in Application Server Scripting

  • Author: Benjamin Davis
  • Published: 03/27/2017
  • Applies to: Application Server

Details

There are times a user may want to base a script off of time. While InTouch has useful time tags, such as $Second, $Minute, $Hour, Application Server does not have these tags. However, Application Server can use the Now() function to replicate the results.

$Second = Now().Second

$Minute = Now().Minute

$Hour = Now().Hour

$Day = Now().Day

$Month = Now().Month

$Year = Now().Year