dbTalk Databases Forums  

Microsoft BI Portal (BIP) Problem saving a view

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss Microsoft BI Portal (BIP) Problem saving a view in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Lutz.Morrien
 
Posts: n/a

Default Microsoft BI Portal (BIP) Problem saving a view - 07-02-2003 , 02:25 AM






Hi,
check in older postings for a thread on this problem. I
found it before via google group search. I cannot really
remember the solution. Since BIP is not an official
Microsoft product, it has a number of flaws.

I think you can save a view into a different folder if
you are in a folder which already contains views i.e.
Foodmart folder (something like that).

Once a view has been saved in a new folder, you can save
more views.
HTH Lutz

Reply With Quote
  #2  
Old   
Mark P. Andrews
 
Posts: n/a

Default Re: Microsoft BI Portal (BIP) Problem saving a view - 07-31-2003 , 03:20 PM






The problem is that there is a bug in ext\addins.js in the EnableAddinMenu
function. The condition inside the for loop is backward so it tries to
enable a menu item that has no MenuId and quietly blows up. Here is the
code that I replaced it with.


function EnableAddinMenu()

{

// Create a new node for each Addin registered

for (i = 0; i < BIP_AddinsArr.length; i++){

if(!((BIP_AddinsArr[i].IsDisplayIfDANotPresent == false)

&& (p_bDAPresent == false)))

{

EnableMenu(BIP_AddinsArr[i].MenuID);

}

}

}

HTH
Mark P. Andrews, MCSD
ROI Technology


"Christian Hamel" <chamel17364 (AT) hotmailNOSPAM (DOT) com> wrote

Quote:
Hello.
I've just installed Microsoft BI Portal on a server at our company to
do
some testing. It seems very interesting as a front end for my users but I
have a problem with it.. I can create a new "Category" but when trying to
create a new view, I can't save it. The option "Save" and "Save As" are
grayed and not available. My user is in the BIP_PW (Power Users),
BIP_USERS
and BIP_ADMIN. As far as I'm concerned, everything that needed to be
installed is... Any idea?

Thanks.






Reply With Quote
  #3  
Old   
thalcomb
 
Posts: n/a

Default Re: Microsoft BI Portal (BIP) Problem saving a view - 10-27-2003 , 04:30 PM




Would you mind re-posting your code fix for the script referenced above.
It seems to have been cut off in the post.



Thanks.



T. Halcomb


--
Posted via http://dbforums.com

Reply With Quote
  #4  
Old   
Eugene Frolov
 
Posts: n/a

Default Re: Microsoft BI Portal (BIP) Problem saving a view - 10-28-2003 , 04:18 AM



Hi!

I have found a this code in newgroup archives, but corrections in my
addins.js dont resolve problems.

/************************************************** ***********/
The problem is that there is a bug in ext\addins.js in the EnableAddinMenu
function. The condition inside the for loop is backward so it tries to
enable a menu item that has no MenuId and quietly blows up. Here is the
code that I replaced it with.


function EnableAddinMenu()

{

// Create a new node for each Addin registered

for (i = 0; i < BIP_AddinsArr.length; i++){

if(!((BIP_AddinsArr[i].IsDisplayIfDANotPresent == false)

&& (p_bDAPresent == false)))

{

EnableMenu(BIP_AddinsArr[i].MenuID);

}
}
}

HTH
Mark P. Andrews, MCSD
ROI Technology
/************************************************** ************************/

"thalcomb" <member45878 (AT) dbforums (DOT) com> сообщил/сообщила в новостях следующее:
news:3528746.1067293850 (AT) dbforums (DOT) com...
Quote:
Would you mind re-posting your code fix for the script referenced above.
It seems to have been cut off in the post.



Thanks.



T. Halcomb


--
Posted via http://dbforums.com



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.