I would like to validate the field by converting into uppercase. Not sure how to do this. Please help.
You can convert to upper case using the following expression:
XYZ = Name.GivenName using "%1S"
Thank you so much. It worked. Can you please share these formatting specifiers if you have?
The formatting specifiers are those that Java 7 defines and that are valid in the context of the data type of the field you are using them with. "%1S" translates to take this string and return it as upper case. "%1s" would translate to take this string and return it as is (which wouldn't be very useful). There isn't a format specifier for lower case.
The LPL Documentation (page 15 as of this writing) for Type Operators defines an uppercase and lowercase type operator, but sadly those are vaporware in the current MT version of Landmark and support tells me there is no estimated timeline for when they'll ever be implemented.