Find Oracle Application Profiles Change in N Day

We can use below SQL Query script to check Oracle EBS profile changed in last N days.



SELECT p.profile_option_name SHORT_NAME,

  n.user_profile_option_name "PROFILE NAME",

  DECODE(v.level_id, 10001, 'Site', 10002, 'Application', 10003, 'Responsibility', 10004, 'User', 10005, 'Server', 10007, 'SERVRESP', 'UnDef') LEVEL_SET,

  DECODE(TO_CHAR(v.level_id), '10001', '', '10002', app.application_short_name, '10003', rsp.responsibility_key, '10005', svr.node_name, '10006', org.name, '10004', usr.user_name, '10007', 'Serv/resp', 'UnDef') "CONTEXT",

  v.profile_option_value VALUE,

  v.LAST_UPDATE_DATE

FROM fnd_profile_options p,

  fnd_profile_option_values v,

  fnd_profile_options_tl n,

  fnd_user usr,

  fnd_application app,

  fnd_responsibility rsp,

  fnd_nodes svr,

  hr_operating_units org

WHERE p.profile_option_id = v.profile_option_id (+)

AND p.profile_option_name = n.profile_option_name

--and upper(n.user_profile_option_name) like upper('&profile_name')

AND TRUNC(v.LAST_UPDATE_DATE) > TRUNC(sysdate-&days)

AND usr.user_id (+)           = v.level_value

AND rsp.application_id (+)    = v.level_value_application_id

AND rsp.responsibility_id (+) = v.level_value

AND app.application_id (+)    = v.level_value

AND svr.node_id (+)           = v.level_value

AND org.organization_id (+)   = v.level_value

AND v.LAST_UPDATE_DATE       IS NOT NULL

AND n.language='US'

ORDER BY last_update_date DESC,

  short_name,

  level_set;

appsdbahelp

17+ years of experience in Oracle Database, Oracle Cloud Infrastructure(OCI), Oracle EBS on Cloud, Oracle E-Business Suite, DevOps tools, Oracle WebLogic, Oracle Application Server, Oracle Access Manager and various Operating System flavors including Redhat Linux, UNIX (Solaris, HP-UX) and Windows. Expert in Oracle9i/10g/11g/12c/19c database administration, upgrade, configuration and tuning. Experience in Oracle E-Business Suite technological stack, including architecture, installation, configuration, maintenance, tuning, cloning and patching procedures. Expert in Oracle Cloud Infrastructure(OCI), Oracle EBS On Cloud and Oracle EBS Cloud Manager Experience with Oracle Cloud Solution and Expert of Oracle ERP/Oracle HCM Cloud deployment Experience in Terraform, JSON and chef cloud infrastructure automation framework Knowledge of ASM, Data Guard, Real Application Cluster, Exadata and Exalogic Knowledge of Oracle Enterprise Manager(OEM) Grid Control, Oracle WebLogic, Oracle Internet Directory, Oracle Access Manager and Apache Ability to analyze problem, develops solutions and bring program/project execution to completion.

Post a Comment

Previous Post Next Post