NULL - connect_cdc_sqdata - Latest

Connect CDC (SQData) Apply engine

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (SQData)
Version
Latest
Language
English
Product name
Connect CDC (SQData)
Title
Connect CDC (SQData) Apply engine
Copyright
2024
First publish date
2000
ft:lastEdition
2024-07-30
ft:lastPublication
2024-07-30T20:19:56.898694

The NULL function sets a variable or target field to a null value. This is similar to the EMPTY function.

Category

Specialized

Syntax

NULL()

Parameter and Description

This function has no parameters.

Example

If the value of source field SRC_FLD1 is a negative number, set target field TGT_FLD1 to a null value. Otherwise, map the source field to the target field.
IF  SRC_FLD < '0'
{
   TGT_FLD1 = NULL()
}
ELSE
{
   TGT_FLD1 = SRC_FLD
}