Oracle Advanced Queuing provides message queuing as an integrated part of the Oracle Server, thereby creating a message-enabled database. Oracle uses the following components to deliver AQ fuctionality: Message A message is the smallest unit of information inserted into and retrieved from a queue. It contains user data (payload) in the form of an object […]
Workflow Notification Mailer Configuration in Oracle EBS
Workflow notification mailer in Oracle apps The Workflow Notification Mailer performs email send and response processing for the Oracle Workflow Notification System.By deploying the Workflow Notification Mailer workflow users receive their notifications by email, as well as from the Work-list web pages. Currently Java based workflow notification mailer is being used in Oracle apps. Previously […]
How to create ADDM task and check its report
In this post, I will explain How to create ADDM task and check its report We are using start snapshot as 900 And end snapshots as 950 BEGIN — Create an ADDM task. DBMS_ADVISOR.create_task ( advisor_name => ‘ADDM’, task_name => ‘900_950_AWR_SNAPSHOT’, task_desc => ‘Advisor for snapshots 900 to 950.’); — Set the start and end […]
PHP echo construct
Today I had learned about echo in PHP , it is not a function , it is a language construct. By language construct I mean that meaning that it is an integral part of PHP itself. It allows us to output data on the users web browser. You can output values stored in a variable […]
How FND_INSTALL_PROCESSES created ,used and dropped
In previous articles, i presented about Autopatch and various ad utilities.All these need the table fnd_install_processes for the parallel processing This is also used with adop and other ad utilities in R12.2 General sequence of steps for parallel worker processing in Autopatch/adpatch This is the sequence of steps that happen which is not visible in […]
How to write first php program
Write first php program Now I had installed all I need to write PHP scripts or files but how do I write the first PHP program. First of all, I created a learning folder on my desktop where I intended to keep all the files I made during my learning process. So now I am […]