My Oracle Support Banner

ERROR MESSAGES ACROSS TOP OF ALL FORMS (Doc ID 1050787.1)

Last updated on JULY 27, 2022

Applies to:

Oracle Utilities Work and Asset Management - Version 1.8.1.1 and later
Information in this document applies to any platform.

Symptoms

THE FOLLOWING MESSAGES  APPEAR AT THE TOP OF ALL FORMS:

" var tries = 5; //number of attempts to find the PJC on Main form var timeout = 5000; //time in milliseconds //Called by SIA JavaScript after initial forms loading. Also called by // formsapplet.jsp: initialLoad() function sendFormsRequest(sParameters) { try { var nWhereForm = sParameters.indexOf("WHERE_FORM_NAME"); if (sParameters == "tgt=processFormsShutdown") { //request to shutdown forms document.all.oApplet.processFormsShutdown(); } else if (nWhereForm > -1) { //special where_clause filter with Forms navigation var nNextParam = sParameters.indexOf("&", nWhereForm); var whereFormName = sParameters.substring(nWhereForm + 16, nNextParam); whereFormName = whereFormName.toUpperCase(); var whereClause = sParameters.substring(nNextParam + 1); document.all.oApplet.processFormsWhereClauseRequest(whereFormName, whereClause); } else if (tries == null || timeout == null) { document.all.oApplet.processFormsRequest(sParameters); } else { document.all.oApplet.processFormsRetryRequest(sParameters, tries, timeout); } } catch(error) { alert(error.description); } return false; } //Prevent IE Help from firing and allow Forms help to load when the F1 key is pressed function checkKeys() { var key = window.event.keyCode; if (key > 112 && key < 123) { window.event.keyCode=0; window.event.returnValue=false; window.event.cancelBubble=true; return false; } } "

Cause

To view full details, sign in with your My Oracle Support account.

Don't have a My Oracle Support account? Click to get started!


In this Document
Symptoms
Cause
Solution


My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.