✏️ Explanatory Question

Table method ValidateFieldValue() in D365

👁 3,269 Views
📘 Detailed Answer
💡

Answer with Explanation

This method is used to validate the field value



public boolean validateFieldValue(FieldName _fieldName, int _arrayIndex = 1)
{
    boolean ret;

    ret = super(_fieldName, _arrayIndex);

    if(_fieldName == fieldStr(HD_BankCustomersTable, DOAC))
    {
        //info("");
    }

    return ret;
}