Query to get the directory of paricular top.
--------------------------------------------------------------------------------------------------------------------------------------
Select distinct variable_name,value
from fnd_env_context a ,
fnd_concurrent_processes b,
fnd_concurrent_requests r
where 1=1
and a.concurrent_process_id=b.concurrent_process_id
and a.CONCURRENT_PROCESS_ID=r.CONTROLLING_MANAGER
and a.variable_name IN ('AP_TOP','FND_TOP','JAVA_TOP');
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
Select distinct variable_name,value
from fnd_env_context a ,
fnd_concurrent_processes b,
fnd_concurrent_requests r
where 1=1
and a.concurrent_process_id=b.concurrent_process_id
and a.CONCURRENT_PROCESS_ID=r.CONTROLLING_MANAGER
and a.variable_name IN ('AP_TOP','FND_TOP','JAVA_TOP');
--------------------------------------------------------------------------------------------------------------------------------------
Comments
Post a Comment