Oracle Cloud ERP -Fusion (SaaS) – Profile Creation and Query to extract
Steps to Create –
As an administrator, here’s how you can set the profile options:
- In
the Setup and Maintenance work area, go to:
- Task: Manage Profile Options
- In the Manage Profile Options page, click the New icon in the Profile Options section.
- In the Create page, specify the details as listed in the table. Set Current date as the Start Date.
- Click Save and Close.
- At the Profile Option Levels, set Site to Enabled and Updatable.
- Click Save and Close.
--Query to fetch profile name, level, value
SELECT
fpob.profile_option_name,
fpov.profile_option_value,
fpov.level_value
FROM
fnd_profile_option_values fpov,
fnd_profile_options_b fpob
WHERE
1 = 1
AND fpob.profile_option_id = fpov.profile_option_id
-- AND fpov.level_value = 'SITE'
--AND fpob.profile_option_name = upper(p_profile_name) ;
Comments |0|
Category: OracleSaaS