How to monitor heap size used in OPP in order to protect Out of Memory
My objective is to know how much heap size currently use so I can handle or do something before user got error report.
The following sql statement just determine what the heap size per OPP process is currently setting:
select DEVELOPER_PARAMETERS from FND_CP_SERVICES
where SERVICE_ID = (select MANAGER_TYPE from FND_CONCURRENT_QUEUES
where CONCURRENT_QUEUE_NAME = 'FNDCPOPP');
Now OPP heap size is set to 1.5G.
Thanks
The following sql statement just determine what the heap size per OPP process is currently setting:
select DEVELOPER_PARAMETERS from FND_CP_SERVICES
where SERVICE_ID = (select MANAGER_TYPE from FND_CONCURRENT_QUEUES
where CONCURRENT_QUEUE_NAME = 'FNDCPOPP');
Now OPP heap size is set to 1.5G.
Thanks
0