Skip to main content
Community site session details

Community site session details

Session Id :

how to capitalize all letters

Amir Nazim Profile Picture Amir Nazim 5,994

There is a function available in AX strUpr(‘any string’) that can be used to convert the string to upper case.

ttsBegin;
while
select forUpdate myTable
{
myTable.Description = strUpr(myTable.Description);
myTable.update();
}
ttsCommit



This was originally posted here.

Comments

*This post is locked for comments