Mandatory dot-walked fields in tables are not being enforced as mandatoryDescriptionTables that contain dot-walked fields from other tables that are mandatory can be submitted even if the mandatory field is not filled out.Steps to Reproduce Go to sc_req_item_list.do. Click New. Right-click on Requested for and select Configure Dictionary. Select the Mandatory check box and click Update. The Requested for field on the sc_req_item page now shows the red asterisk marking it as mandatory. Click Submit without entering anything into the Requested for field. The record is saved despite the mandatory field being blank. WorkaroundThis behavior is as designed. As noted in the product documentation topic Making a field mandatory, "a form can be saved with an empty mandatory field if that field is a reference field (derived from another table) and if the parent field is also blank. However, if the mandatory reference field shows a value from the parent field, then the form cannot be saved if this value is deleted." As a workaround, create a similar client script as a workaround. Table: <tablename> Type: onSubmit Script: var mandField = g_form.getValue('<reftablename>.<fieldname>'); if (!mandField) { alert('There is an empty mandatory field!'); return false; } Related Problem: PRB569134