Known Profile Options

Submitted by code_admin on Tue, 07/17/2018 - 13:53

Profile options known about in Oracle

Option Name Values Notes
HR:Self Service Save For Later (Yes or No)
ICX:Session Timeout Num Minutes or NULL Number of minutes to time out forms or NULL for no time out
Personalize Self-Service Defn (Yes or No) Turn on the persionalition hyper links
Java Color Scheme SELECT MEANING, LOOKUP_CODE
FROM FND_LOOKUPS
WHERE LOOKUP_TYPE = 'COLOR_SCHEME'
ORDER BY LOOKUP_CODE - (BLUE,TITANIUM,etc)
Java Forms Colour Scheme
Site Name Text Jave Forms window title bar text
FND: Diagnostics (Yes or No)
Hide Diagnostics menu entry (Yes or No) Hides or shows the Help->Diagonstics menu entry in forms
Utilities:Diagnostics (Yes or No) Allow diagnostics functions (Maybe R12 only)
concurrent:Report access level (User, Responsibility) Should users with the same responsibility be able to view the output of CR's http://www.orafaq.com/forum/t/160572/0/
Concurrent:Hold Requests (Yes or No) Hold requests as they are run
Forms Runtime Parameters record = forms tracegroup = 0-97 See Doc 373548.1

A query to access these:

  1. SELECT    
  2.     fpo.profile_option_id,    
  3.     fpo.profile_option_name,    
  4.     fpot.user_profile_option_name,    
  5.     fpot.description,    
  6.     fpov.level_id,    
  7.     fpov.level_value,
  8.     case when fpov.level_id=10004 then
  9.         usr.user_name
  10.     else
  11.         'NOT USER LEVEL'
  12.     end as user_name,
  13.     fpov.profile_option_value
  14. FROM apps.fnd_profile_options fpo
  15. left join (
  16.     SELECT *    
  17.     FROM apps.fnd_profile_options_tl
  18. ) fpot ON fpot.profile_option_name=fpo.profile_option_name
  19. left join (
  20.     SELECT *
  21.     FROM fnd_profile_option_values
  22. ) fpov ON fpov.profile_option_id=fpo.profile_option_id
  23. left join (
  24.     select *
  25.     from fnd_user
  26. ) usr on usr.user_id=fpov.level_value
  27. --where fpo.profile_option_name like 'HR_SELF_SERV_SAVEFORLATER'
  28. where user_profile_option_name = 'ICX: Forms Launcher'

Other Articles

See also Create Custom Profile Options

RJM Article Type
Quick Reference