I have a validation that throws a PXException in an action, and the message has an email address. Something strange is occurring where the email is not printed in full in the message.
For example, it is showing "The following email is already in use: myemail" instead of "The following email is already in use: myemail@email.com" i.e. it removes the part of the email after the @ symbol.
I am using this approach to throw the error:
throw new PXException(EDMessages.REGISTRATION_EMAIL_ALREADY_INUSE, row.Email);
Is this standard Acumatica behavior? As a workaround, I can try to use Ask rather than PXException, but it would be good to know why this is happening.