Skip to Main Content

E-Business Suite

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

i need solution for forms

2694177Apr 14 2025

in first screen when status is succeeded the create button disabled but when i move to new line the create button enabled like second image i need solution for this to make the button disabled because their status succeeded but enable the button when i move to new line

this the code i made it in trigger WHEN-NEW-RECORD-INSTANCE

BEGIN
IF :XXX_LG_LINES_V.status = 'Succeded' THEN
SET_ITEM_PROPERTY('XXX_LG_LINES_V.CREATE_BTN', ENABLED, PROPERTY_FALSE);
ELSE
SET_ITEM_PROPERTY('XXX_LG_LINES_V.CREATE_BTN', ENABLED, PROPERTY_TRUE);
SET_ITEM_PROPERTY('XXX_LG_LINES_V.CREATE_BTN',Navigable,PROPERTY_TRUE);

END IF;
END;

Comments
Post Details
Added on Apr 14 2025
1 comment
129 views