Date/Time Exists

Logic Name

Date/Time Exists

Function

Determines whether the input date/time exists.

Data Types

Location Type
The first input handler String
Logic output Boolean
lightbulbRefer to "Logic Specifications" for details.

Properties

Category Property Description
Required Format Specify input format.
Null processing Null option Specify how to handle the input if it contains null.
Comment Comment The comment will also be output to the specifications.It does not affect the conversion process.

Null option

Option Description
Return false when unable to determine/calculate/process Continues with the process when unable to determine/calculate/process without throwing exception.
Throw exception when unable to determine/calculate/process Throws exception (CalculationException) when unable to determine/calculate/process.
Output null if any input is null Outputs null if the value of any input handler is null.
lightbulbRefer to "Logic Specifications" for details.

Notes

Logic Sample

Mapping Definition

Logic Settings and Processing Result

Processes input data in the "yyyy-MM-dd" format. If the date exists, return "true". If not, return "false".
Property Settings
Property Setting
Format yyyy-MM-dd
Null option Return false when unable to determine/calculate/process
Input Data
1999-09-31
2004-10-17
2009-13-10
Result Data
false
true
false