Concurent Manager Log file

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Concurent Manager Log file

latifa

Hi Erman,

I would like to find the logfile of a custom concurrent manager.

*mgr in APPLCSF/APPLLOG don't show any thing.

How to see its history ? Actions done for it's creation ? when was it activated for first time ?

Thanks you in advance for your help.

Regards,
Latifa
Reply | Threaded
Open this post in threaded view
|

Re: Concurent Manager Log file

ErmanArslansOracleBlog
Administrator
Find the log file using a query like the following;

SELECT logfile_name FROM fnd_concurrent_processes WHERE concurrent_process_id=(SELECT controlling_manager FROM fnd_concurrent_requests WHERE request_id=<reqid>);

As you see, you can even find the concurrent manager's log file using the request_id of a request, that was executed by concurrent manager in question.
Reply | Threaded
Open this post in threaded view
|

Re: Concurent Manager Log file

latifa

Thank you very much Erman.

It was nice. I found the logfle according a reqid. However, as it was a new Concurrent Manager, I was looking for the informations of its creation, its activation, etc ...

Regards,
Latifa
Reply | Threaded
Open this post in threaded view
|

Re: Concurent Manager Log file

ErmanArslansOracleBlog
Administrator
run a concurrent request by assigning it to that custom concurrent manager and then check with the query that I provided you earlier. For instance assign Active Users concurrent program to that manager and run the program.. Then check with the query I provided.
This is a quick solution :)
I m on vacation and got a limited connection. So I can't check on a real EBS system. But normally, you can find the log and its creation time using OS utils -> ls -al, stat and file commands.. In the concurrent manager log directory, check with some suffix such as .mgr then analyze it with file or stat command . .This is an alternative way.