Query for EBS URL profile value checking Related to Webservices in Oracle Apps
I am sharing a query to check the profile values related to web service. It can be used handy when troubleshooting any web service issues in EBS.
Query:
set pagesize 132col NAME format A40col LEVEL_SET format a15col CONTEXT format a20col VALUE format A20 wrapcol Server format a10col resp format a8 wrapcol application format a10break on NAMEselect'('||language||')-'||n.user_profile_option_name NAME,decode(v.level_id,10001, 'Site',10002, 'Application',10003, 'Responsibility',10004, 'User',10005, 'Server',10006, 'Organization',10007, 'ServResp','Undefined') LEVEL_SET,decode(to_char(v.level_id),'10001', '','10002', app.application_short_name,'10003', rsp.responsibility_key,'10004', usr.user_name,'10005', svr.node_name,'10006', org.name,'10007', (select n.node_namefrom fnd_nodes nwhere n.node_id=level_value2)||'/'||(decode(v.level_value,-1,'Default',(select responsibility_keyfrom fnd_responsibilitywhere responsibility_id=level_value))),v.level_id) "CONTEXT",v.profile_option_value VALUEfromfnd_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 orgwherep.profile_option_id = v.profile_option_id (+)and p.profile_option_name = n.profile_option_nameand ((upper(v.profile_option_value) like '%HTTP%')orp.profile_option_name in('APPS_WEB_AGENT','APPS_SERVLET_AGENT','APPS_JSP_AGENT','APPS_FRAMEWORK_AGENT','ICX_FORMS_LAUNCHER','ICX_DISCOVERER_LAUNCHER','ICX_DISCOVERER_VIEWER_LAUNCHER','HELP_WEB_AGENT','APPS_PORTAL','CZ_UIMGR_URL','ASO_CONFIGURATOR_URL','QP_PRICING_ENGINE_URL','TCF:HOST','NODE_TRUST_LEVEL','RESPONSIBILITY_TRUST_LEVEL')or hierarchy_type='SERVER'or hierarchy_type='SERVRESP')and usr.user_id (+) = v.level_valueand rsp.application_id (+) = v.level_value_application_idand rsp.responsibility_id (+) = v.level_valueand app.application_id (+) = v.level_valueand svr.node_id (+) = v.level_valueand org.organization_id (+) = v.level_valueorder by name, v.level_id;
Post a Comment
Post a Comment