how to capitalize all letters
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.
*This post is locked for comments