11
Apr

Error on login page of Oracle E-Business Suite

Error:

Unable to generate forwarding URL. Exception: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.

ORA-00257: archiver error. Connect internal only, until freed

Solution:

Check Flash Recovery Area usage:

SELECT
ROUND((A.SPACE_LIMIT / 1024 / 1024 / 1024), 2) AS FLASH_IN_GB,
ROUND((A.SPACE_USED / 1024 / 1024 / 1024), 2) AS FLASH_USED_IN_GB,
ROUND((A.SPACE_RECLAIMABLE / 1024 / 1024 / 1024), 2) AS FLASH_RECLAIMABLE_GB,
SUM(B.PERCENT_SPACE_USED) AS PERCENT_OF_SPACE_USED
FROM
V$RECOVERY_FILE_DEST A,
V$FLASH_RECOVERY_AREA_USAGE B
GROUP BY
SPACE_LIMIT,
SPACE_USED ,
SPACE_RECLAIMABLE;
Read more...

4
Jan

Workflow Mailer Validation Error

Symptoms:

While configuring the Workflow Notification Mailer, a "Validation Error" is displayed.

Workflow Mailer Validation Error
Read more...

24
Dec

Transaction Managers Restarting

Symptoms:-

The following Concurrent Managers Do Not Start / Die After Restart:

Receiving Transaction Manager
FastFormula Transaction Manager
INV Remote Procedure Manager
PO Document Approval Manager

The following errors are reported in the Internal Concurrent Manager log file.

Routine AFPEIM encountered an error while starting concurrent manager FFTM.
The manager is not able to start properly.
The manager has been put on a SYSTEM HOLD to allow the system administrator to address the issue.
When addressed, the "Fixed" button on the Administer Managers screen can be pressed to restart the manager.
Read more...

17
Aug

Kill all FNDLIBR processes

Kill all processes of FNDLIBR.

ps -ef |grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9

Similarly, we can kill other processes as well by replacing 'FNDLIBR' with other process names.

Kill all processes of java.

ps -ef |grep java | grep -v grep | awk '{print $2}' | xargs kill -9

Read more...

17
Jun

Pages not Rendering Correctly in Oracle E-Business Suite

Symptoms:-

Dark blue background, mid-sized fonts, and incorrectly formatted buttons.

 

Solution:-

Read more...

Back to Top