Posts

Showing posts from March, 2018

how to rename a field using OAF Personalization

Image
Change the Prompt Value from Inherit to New value 

How to Enable Personalization link for OAF Pages

Set the values of following profiles to enable Personalization Page link in OAF Pages Profile Name Value FND: Personalization Region Link Enabled Yes Personalize Self-Service Defn Yes Disable Self-Service Personal No

XML Publisher Run time Error

Solution : Fix the Java path in run time XML Publisher Run time (to preview from local) ADD Ins ->Tools->Option ->Preview ->Java Home Paste the below the path : 32Bit C:\Program86 Files\Java\jre1.8.0_144 64Bit C:\Program Files\Java\jre1.8.0_144

Query to find DFF

SELECT b.application_table_name , b.descriptive_flexfield_name , a.application_column_name , a.end_user_column_name , a.descriptive_flex_context_code FROM fnd_descr_flex_column_usages a , fnd_descriptive_flexs_vl b WHERE 1 = 1 AND b.descriptive_flexfield_name = a.descriptive_flexfield_name AND b.application_id = a.application_id AND A.CREATED_BY not in (0, 1,2, 5, 120, 121) and b.application_table_name like '%PO%VENDO%' AND b.application_table_name != 'FND_SRS_MASTER' ORDER BY 1,4