I have a Custom LU with a Custom Page. The LU has a persistent field and I'd like to force record creation for that field to be unique values that are not blank. I do not see a way to do this with Custom Configurations. Am I missing something, or is it not possible?.
Custom LU field attributes

Best answer by asjaus
The desired functionality cannot be achieved directly through the IEE. However, we can implement a solution using PL/SQL Developer to accomplish your goal in the background.
With PL/SQL Developer, we can create a procedure that enforces the uniqueness of the record creation for the persistent field and ensures that it does not contain blank or NULL values. This can be achieved by defining appropriate constraints.
You can use the following ORACLE commands via PL/SQL Developer to do the needful.
ALTER TABLE MTG_COMPANY_PERSON_CLT MODIFY ( CF$_MTG_EMP_NO NOT NULL);
CREATE UNIQUE INDEX <index_name> ON MTG_COMPANY_PERSON_CLT(CF$_MTG_EMP_NO);
current version: Apps 10 UPD12
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.