Oracle Application Architecture R12
Step by Step Oracle Application R12 Installation with screen shots
Oracle Applications R12 imprtant/log files locations
Access Oracle Applications from Linux client
Conucurrent Manager 11i.
Purge obsolete workflow runtime data.
Patching
Oracle Application interview Questions and Answers
ADadmin
Defining Custom Concurrent Managers
Usefull Scripts related to Concurrent Manager
Step by Step Oracle Application R12 Installation with screen shots
Oracle Applications R12 imprtant/log files locations
Access Oracle Applications from Linux client
Conucurrent Manager 11i.
Purge obsolete workflow runtime data.
Patching
Oracle Application interview Questions and Answers
ADadmin
Defining Custom Concurrent Managers
Usefull Scripts related to Concurrent Manager
how to update profile option in R12 using api...
ReplyDelete==
Q: I want to update the profile option at server level, Ex. Profile option is "Node Trust Level" , Server : Hostname
Ans:
DECLARE
VALUE BOOLEAN;
l_node_id number;
BEGIN
select node_id into l_node_id from fnd_nodes where NODE_NAME = 'hostname';
VALUE := fnd_profile.save ('NODE_TRUST_LEVEL', 3, 'SERVER',l_node_id,null,null);
END;
/
===
Q: how to change the color using api.
Ans:
==
Declare
value Boolean;
Begin
value := fnd_profile.save('FND_COLOR_SCHEME','red','SITE');
End;
/
===
Thanks,
Mi2
thanks for the update...
ReplyDeletethanks for the update...
ReplyDelete