When a user change triggers an error, you want PeopleCode to position the cursor in the field that
triggered the error. What is the correct syntax?
A.
GetField().SetCursorPos(%Page);ErrorMsgget(1040,1,”Message not found”);
B.
Error Msgget(1040,1,” Message not found”);GetField().SetCursorPos(%Page);
C.
Error (“Message not found”);Field.SetCursorPos();
D.
SetCursorPos.Getfield();Error MsgGet(1040,1,”Message not found”);
E.
Error MsgGet(1040,1,”Message not found”);SetCursorPos.Getfield();
Explanation: