STRING - 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
Last edition
2024-07-30
Last publish date
2024-07-30T20:19:56.898694

The STRING function allows you to set a field or variable to a constant literal value. STRING also concatenates two (2) or more data strings by appending the data strings in the sequence specified to the first data string.

Category

String

Syntax

STRING(data_string[, data string])

Parameter and Description
Parameter Description
data_string One (1) or more source data strings. These data strings can be a field from a source datastore, a variable, a constant or the result of another Function that are to be concatenated.

Example 1

Concatenate the literals Hello and World with a space in between them (3 source data strings) and map the result to target field TGT_STRING.

TGT_STRING = STRING ('HELLO', ' ', 'WORLD')

Returns the value HELLO WORLD and maps the result to the target field.

Example 2

Concatenate the literals Hello and World with a space in between them (3 source data strings) and update variable V_DATA_STRING with the result.

V_DATA_STRING = STRING ('HELLO', ' ', 'WORLD'))

Sets the variable V_DATA_STRING with the value HELLO WORLD.