Modify PeopleCode snippet
PeopleCode snippet is the People code that should be modified on the ERP server through the Application Designer. Modify this code:
For &j = 1 To &rootNode.ChildNodeCountIf (Upper(&rootNode.GetChildNode(&j).LocalName) = ¤tKey.name) Then
Modify the value on the right side of the statement by adding Upper as the prefix, as shown below:
For &j = 1 To &rootNode.ChildNodeCountIf (Upper(&rootNode.GetChildNode(&j).LocalName) = Upper(¤tKey.name)) Then
To modify the code: