"Error in executing BI_callback request: 'm_messageBundle'
Hiapply the following solution1. Stop all services, 2. Navigate to the %HYPERION_HOME%\products\Foundation\workspace\AppSe rver\InstalledApps\workspace_static\js\iHTMLServlet folder 3. Take a backup of the file called helperEis.js 4. Open this file with a text editor, 5. Locate the definition of the BIAjaxReq function. It starts with the line below: function BIAjaxReq( form, altCtrlKeysPressed) In this function replace this line: this.m_glassPane=new BIGlassPane(form.elements['ObjectIDs'].value,BI_Ge tMessage(m_messageBundle.PROCESSING1)); With the following six lines: var msgString="..."; if(typeof m_messageBundle!='undefined' && m_messageBundle!=null) { msgString=m_messageBundle.PROCESSING1; } this.m_glassPane=new BIGlassPane(form.elements['ObjectIDs'].value,BI_Ge tMessage(msgString)); 6. Save and close the file. 7. Start all services. 8. Clear the web browser's cache.
0