Showing posts with label How to make 'Required' Fields in the Oracle Apps Custom Form EBS 12. Show all posts
Showing posts with label How to make 'Required' Fields in the Oracle Apps Custom Form EBS 12. Show all posts

Friday, 27 October 2017

How to make 'Required' Fields in the Oracle Apps Custom Form EBS 12

How to make 'Required' Fields in the Oracle Apps Custom Form EBS 12

IF :XXNAG_PR_IR_FORM_BLK_V.CREATION_REQUISITION ='Y' AND
:XXNAG_PR_IR_FORM_BLK_V.REQUISITION_TYPE ='Internal' THEN
SET_ITEM_PROPERTY ('SOURCE_ORGANIZATION',REQUIRED,PROPERTY_TRUE);
ELSE
SET_ITEM_PROPERTY ('SOURCE_ORGANIZATION',REQUIRED,PROPERTY_FALSE);
END IF;

How to Call a Seeded Oracle Form from a Custom Form (Step-by-Step Guide)

  How to Call a Seeded Oracle Form from a Custom Form (Step-by-Step Guide) Introduction In Oracle E-Business Suite, it is a common requirem...