how to capitalize all letters
Views (9853)
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.

Like
Report
*This post is locked for comments