Hi guys,
how to show in error both message for attachment and reason code at the moment in x ?
if (setup.MandatoryNotificationType == SDSNotificationType::Error)
{
ret = ret && checkFailed("Attachment is missing. You have to attach your file then save record to submit request");
}
if(setup.ReasonCode == NoYes::Yes && setup.ReasoCodeNotificationType == SDSNotificationType::Error)
{
if(!this.ReasonCode)
{
ret = ret && checkFailed("Reason code is missing. You have to attach your file then save record to submit request");
}
}
how to show in UI while saving both message at the moment ?
Thanks