Focal Point
Upgraded from 7.1.7 to 7.6.5 and now get error

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/6701015782

June 11, 2008, 11:07 AM
.eric
Upgraded from 7.1.7 to 7.6.5 and now get error
So I just upgraded my development environment from 7.1.7 to 7.6.5 and most went smoothly.

I have a self service environment and a dashboard setup, everything runs fine out of the dashboard but now when I try and run reports out of our self service environment I get an error saying "'null' is null or not an object" (reports are be run from a parameterized HTML launch page).

If I goto into debug the line it breaks on in the ibirls2.js file is this: (this is in the GetAmpersValue2() function)

operation = inputFirst.getAttribute("operation");

Any ideas?

This message has been edited. Last edited by: .eric,


dev: WF 7.6.5 w/IIS + Tomcat

prod: WF 7.6.5 w/IIS + Tomcat
June 11, 2008, 11:55 AM
.eric
BTW ... if I used the ibirls2.js file from my 717 version the reports work fine. Anyone know what is causing this?


dev: WF 7.6.5 w/IIS + Tomcat

prod: WF 7.6.5 w/IIS + Tomcat
June 11, 2008, 11:59 AM
Prarie
If you will do a search with 7.6 as the subject on the Forum...you will find lots of discussion on different errors from converting that may give you some ideas.


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
I have been since yesterday but haven't come across anyone with this error yet, I will keep looking though.


dev: WF 7.6.5 w/IIS + Tomcat

prod: WF 7.6.5 w/IIS + Tomcat
Eric,

As Praire suggested, do a find on ibirls2.js or ibirls2; your answer may be in those threads...Tom


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
Try opening the html page in the HTML Layout Painter and then re-saving it. See if that helps you at all.


Ginny
---------------------------------
Prod: WF 7.7.01 Dev: WF 7.6.9-11
Admin, MRE,self-service; adapters: Teradata, DB2, Oracle, SQL Server, Essbase, ESRI, FlexEnable, Google
quote:
Originally posted by GinnyJakes:
Try opening the html page in the HTML Layout Painter and then re-saving it. See if that helps you at all.


It's actually a fex file with -HTMLFORM inside of it because I run a few includes to populate dropdowns before loading.

Anyway I did find out what was wrong/changed...

In 7.6.5 they changed the line:
var inputs = document.getElementsByName(variableName);

to:
var inputs = getElementsByName(variableName);

So I added the "document." back in and all works now...weird.


dev: WF 7.6.5 w/IIS + Tomcat

prod: WF 7.6.5 w/IIS + Tomcat