toUpperCase

The toUpperCase task converts all characters of an input string to uppercase. Characters that are already uppercase are not affected.

Potential use case

Use this task when a southbound database requires a specific field to have all uppercase characters.

Properties

IncomingTypeDescription
strStringRequired. The string containing the characters to convert.
OutgoingTypeDescription
uppercaseStringStringA new string representing str converted to uppercase.

Example

In this example:

  • str is provided by the output of NewVariable:myVariable, a reference task located elsewhere in the workflow. The reference variable is value, which contains a lowercase string such as itential,llc.
  • The outgoing uppercaseString is ITENTIAL,LLC.
toUpperCase task with str sourced from a NewVariable task containing itential,llc