Converts all letters in a string to uppercase.
NewString := UPPERCASE(String) |
Parameters
- String
- Type: Text constant or code The string that you want to convert to uppercase.
Property Value/Return Value
Type: Text constant or code
The resulting string after it has been converted to uppercase.
Example
The following example shows how to use the UPPERCASE function.
This example requires that you create the following text constants in the C/AL Globals window.
Text constant | ConstValue |
---|---|
Text000 | Outstanding Order Status |
Text001 | The test string before UPPERCASE is called:\%1 |
Text002 | The string after UPPERCASE is called:\%1 |
Copy Code | |
---|---|
Lower := Text000; MESSAGE(Text001, Lower); Upper := UPPERCASE(Lower); MESSAGE(Text002, Upper); |
The first message window displays the following:
The test-string before UPPERCASE is called:
Outstanding Order Status
The second message window displays the following:
The string after UPPERCASE is called:
OUTSTANDING ORDER STATUS