Sample
CUSTOM Library Code To Customize Applications
·
How to make ‘Customer PO’ a Mandatory
field?
For example to have Customer
PO number in Sales order screen as a mandatory field
if
(event_name = 'WHEN-NEW-FORM-INSTANCE') then
if (form_name = 'OEXOEORD') then
app_item_property2.set_property('ORDER.CUST_PO_NUMBER',REQUIRED,
PROPERTY_ON);
end if;
end
if;