Custom Search

Wednesday 24 July 2013

FRM-92095: Oracle JInitiator version too low. Please install version 1.1.8.2 or higher



Reason: The forms version of Oracle EBS formsweb.cfg is modified to use JRE7 when JRE7 (JRE1.7) is installed on the client. 

The Forms version older than 11.1.1.6 or Forms 11.1.2 and older are not compatible with JRE7, and you have to uninstall JRE 1.7 and Reinstall the latest JRE 1.6 release

Java installation is straight forward and Java uninstall installations instructions can be found here

P.S: Updates for Java 6 are no longer available to the public. Oracle offers updates to Java 6 only for customers who have purchased Java support or have Oracle products that require Java 6.

Print This Post

Tuesday 23 July 2013

Deleting an Expense Report


I have come across this case where user has wrongly entered some expense details for approval and was accidentally approved, and a correct expense report was later created. Now she wants this old approved and Ready for Payment expense report to be deleted; as this cannot be done from the application I have to use the below API to withdraw the Expense Report so that all the Payables actions are disabled and withdrawn from any further payment.

ap_web_oa_mainflow_pkg.withdrawexpensereport(p_report_header_id=>ln_report_hdr_id);

ln_report_hdr_id := report_header_id from AP_EXPENSE_REPORT_HEADERS_ALL.

please APPS initialize before calling this API

Print This Post