You are developing a Human Resourced application, and you create an Employees button in the Departments form. The When-Button-Pressed trigger calls the Employees form to display the employees in the current department. You have set the Employees button properties so that navigation to the button does not occur. The Validation Unit property of the Departments form is set to item. You want to ensure that the Department ID is valid prior to calling the Employees form, even if the user has updated the Department ID and has not navigated out of that item. The Department_Id item has a When-Validate-Item trigger that performs some complex validation logic. What code in the When-Button-Pressed trigger would force the When-Validate-Item trigger to fire for the Department_Id item without navigating form the item?
A.
ENTER;
B.
SYNCHRONIZE;
C.
REDISPLAY;
D.
SET_FORM_PROPERTY(‘departments’,VALIDATION,
PROPERTY_TRUE);
E.
SET_ITEM_PROPERTY(:SYSTEM.CURSOR_ITEM,ITEM_IS_VALID,
PROPERTY_TRUE);
F.
You cannot programmatically cause validation without navigation.