col host_name for a11
col node_name for a11
col database for a10
col concmgr for a9
col forms for a7
col webserver for a11
col admin for a7
select
NODE_NAME,
decode(STATUS,'Y','ACTIVE','INACTIVE') Status,
decode(SUPPORT_CP,'Y', 'YES','NO') ConcMgr,
decode(SUPPORT_FORMS,'Y','YES', 'NO') Forms,
decode(SUPPORT_WEB,'Y','YES', 'NO') WebServer,
decode(SUPPORT_ADMIN, 'Y','YES', 'NO') Admin,
decode(SUPPORT_DB, 'Y','YES', 'NO') Database
from fnd_nodes
where node_name != 'AUTHENTICATION' order by NODE_NAME;
2 comments:
Hello Sameer,
Thanks for sharing your knowledge.
Why it shows "Authentication" in NODE_NAME Column in FND_NODES tables?
Thanks,
Vinod
Could you please share the complete FND_NODES TABLe description.
when i run the demo_mail package,I got the error saying that this table doesn't exist.
So I want to create it.
Will you please help?
Thanks,
VK
Post a Comment