Bid Analyses

Hi all,
Need help regading bid analysis..
Maintained attributes at header and item levels..
Maintained the weighting % for the header attributes and item attributes..
Maintained Parameter weightage at item level...
But with all the above is there any standard analyses available with EBP..(Bcoz i can see the analyses TAB on the BID for comparisons)
But when i click on the tab there is nothing showing up...
is there any setup that has to be done...
Regards
Sunny

Hi Vadim,
With some technical assistance figured out that there were no Javascript errors on the page... and we also debugged from the web GUI.. and could not really figure out where the problem is..
The Html template shows up but it is all blank..
so could republishing the service be a remedy..
or could you gimme some more ideas to solve this problem..
Regards
Sunny

Similar Messages

  • [Forum FAQ] How do I create calculated measure using AMO in SQL Server Analysis Services?

    Introduction
    In SQL Server Analysis Services (SSAS), you can create a calculated measure in SQL Server Data Tool (SSDT)/Boniness Integrated Development Studio (BIDS). Sometimes you may need to create calculated measure by using AMO in a C# or VB project.
    In this article, I will demonstrate so how to create calculated measure using AMO in SSAS?
    Prerequisites
    Before create calculated measure using AMO, you need to ensure that the following components were installed in your server.
    The multidimensional database AdventureWorks Multidimensional Model 2012
    A SQL Server with SSIS and SSAS installed
    The AMO libraries installed:
    X86 Package (SQL_AS_AMO.msi)
    X64 Package (SQL_AS_AMO.msi)
    Solution
    Here is the detail steps to create calculated measure using AMO in SSAS.
    Open SSDT and create a new SSIS project.
    Drag Script Task to the design surface.
    Click SSIS-> Variables to open the Variables window and add two variables that used to connect to the server and database.
    Create a connection to connect to SSAS server.
    Rename the connection name to ssas.
    Double click the Script Task to open Script Task Editor.
    Add Connection and Database variables to ReadWriteVariables textbox and then click Edit Script button.
    Add AMO reference in the Solution Explore window.
    Copy the script below and paste it into the script.
    Dim objServer As Server
    Dim objDatabase As Database
    Dim strDataBaseID As String
    Dim objCube As Cube
    Dim objMdxScript As MdxScript
    Dim objCommand As Command
    Dim strCommand As String
    objServer = New Server
    objServer.Connect("localhost")
    objDatabase = objServer.Databases("AdventureWorksDW2012Multidimensional-EE2")
    strDataBaseID = objDatabase.ID
    If objDatabase.Cubes.Count > 0 Then
    objCube = objDatabase.Cubes("Adventure Works")
    If objCube.MdxScripts.Count > 0 Then
    objMdxScript = objCube.MdxScripts("MdxScript")
    objMdxScript = objCube.MdxScripts(0)
    Else
    objCube.MdxScripts.Add("MdxScript", "MdxScript")
    objMdxScript = objCube.MdxScripts("MdxScript")
    End If
    objCommand = New Command
    strCommand = "CREATE MEMBER CURRENTCUBE.[Measures].[Multipy Measures By 3]"
    strCommand = strCommand & " AS [Measures].[Internet Sales Amount] * 3, "
    strCommand = strCommand & " VISIBLE = 1 ; "
    objCommand.Text = strCommand
    objMdxScript.Commands.Add(objCommand)
    objMdxScript.Update()
    objCube.Update()
    End If
    objServer.Disconnect()
    Then you can run this SSIS package to create the calculated measure.
    Applies to
    Microsoft SQL Server 2005
    Microsoft SQL Server 2008
    Microsoft SQL Server 2008 R2
    Microsoft SQL Server 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • File System error while restoring a backup from analysis server to another

    Hi
    I have restored an analysis database backup to from server 1  (sql server 2008) to server 2(sql 2008) and its working fine 
    and now am trying to restore another database from analysis server server 3 (sql 2005) to  server 2 (sql 2008 )but its giving error that 
    File System error occured while opening the file G:\ProgramFiles\MSAS10.MSSQLSERVER\OLAP\Backup\Workordermodule.0.db\WomDW1.7.00 ..etc

    Hi Maverick,
    According to your description, you are experiencing the error when restoring the SSAS 2005 database on SSAS 2008 server, right?
    In your scenario, how do you backup your SSAS 2005 database? Please ensure that you backup and restore steps are correct. Here is a blog which describe how to migrate a cube in SQL Server Analysis Services 2005 to SQL Server Analysis Services 2008 step by
    step, please refer to the link below.
    http://blogs.technet.com/b/mdegre/archive/2010/03/31/migrating-a-cube-in-sql-server-analysis-services-2005-to-sql-server-analysis-services-2008.aspx
    Besides, you can import SQL 2005 AS database in SQL 2008 BIDS Project. Then fix AMO warnings and deploy that database on SQL 2008 Server.
    http://technet.microsoft.com/en-in/library/ms365361(v=sql.100).aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • SQL Server 2005 agent job runs a SSIS package ( Analysis Services Processing Task) fails

     Hi,
    SQL Server 2005 standard edition.
     I have a SSIS package which has a  Analysis Services Processing Task. I have tested the package in BIDS and it runs ok. But when I created a agent job and run it from the job it reports error:
    Code: 0xC0012024     Source: Analysis Services Processing Task      Description: The task "Analysis Services Processing Task" cannot run on this edition of Integration Services.
    It requires a higher level edition.
    This is the result of select @@version
    Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)   Nov 24 2008 13:01:59   Copyright (c) 1988-2005 Microsoft Corporation  Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 1) 
    Any idea?

     Hi,
    SQL Server 2005 standard edition.
     I have a SSIS package which has a  Analysis Services Processing Task. I have tested the package in BIDS and it runs ok. But when I created a agent job and run it from the job it reports error:
    Code: 0xC0012024     Source: Analysis Services Processing Task      Description: The task "Analysis Services Processing Task" cannot run on this edition of Integration Services. It
    requires a higher level edition.
    This is the result of select @@version
    Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86)   Nov 24 2008 13:01:59   Copyright (c) 1988-2005 Microsoft Corporation  Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 1) 
    Any idea?
    Anyway, I have found a work around:
    http://technet.microsoft.com/en-us/library/ff929186.aspx

  • SSAS(SQl Server Analysis Services).

    Hello Sir,
    We have created an OLAP cube using Business Intelligence Development Studio(BIDS) with
    SQL Server Analysis Services(SSAS) using our data Source which is working fine & for reporting we are connecting the cube with
    MS-Excel through data Connections & we are able to generate the reports with the cube data by filtering & Customizing according to the requirement of reports within the same server instance. But when we want to deploy the cube onto
    the different server (basically on users server) to generate the respective reports we are facing problem. As the end user is not going to have access to the SQL Server Business Intelligence Development Studio how can we deploy the cube. As, we are using ODBC
    connections.
    As this is our first project through SSAS, we kindly need some support to proceed forward. 
    So, Please find the Queries related to the enclosed description as above.
    Queries related to SSAS Cube:
    What are the steps involved to deploy a OLAP cube created in one server to another server?
    Is there any third party tool required for it?
    Thanks in advance.
    Regards,
    Praveen.

    Hi Praveen,
    The following link tells you what you need to know; -
    http://technet.microsoft.com/en-us/library/ms166576(v=sql.105).aspx
    I confirm you do not need a third party tool to deploy a cube and empower your users to access this cube.
    So in summary; -
    Within your Analysis Services solution within BIDs; -
    1) Right click your mouse over the Analysis Services database icon, which is immediately below the solution icon.
    2) Select the sub tab "Deployment".
    3) Enter the name of the server you need to deploy to.
    4) Click "OK".
    5) Right click your mouse (again) over the Analysis Services database icon, which is immediately below the solution icon.
    6) Select "Deploy"
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Preview output error for bid

    Hi,
    I have an issue in Bid output.When I tried to preview output for the bid invitation, I am getting error Business Partner Does not Exist.I checked the data maintained for the bidder which looks fine.Which business partner it could be referring to?
    Any clue as initial analysis sugegst SF_BID_DATA-BIDDER_CONTACT-PARTNER_ID coming empty
    Thanks in advance
    rgds
    arjman

    hi
    only this one this bi has issue or every bid invitation..
    check all business partner data in the BI..
    in SRM every one is a BP , purchaser , vendor, bidder ,plant ,etc.etc.
    muthu

  • Custom field in Create Bid Invitation..

    Hi,
       I have to add a custome field in the 'Create Bid Invitation - Find bid invitation - Extended Search screen. has anyone done this same scenario.
    john.

    hi,
    I dont think you can add custom field at the item overview level.
    There is nothing in standard for CUF in item overview.
    CUF are available in Header/item basic data, accounting and search screens, but nothing in item overview.
    The only workaround which i can see is to modify the HTML page in the Internet Service .
    You can try to use some standard field which stores the information you want to display (instead oc creating a custom field).e.g.If you want to display the Product CAtegory in addition to its description on the item overview screen(Table control),then you will have to find out the std field which stores the Prod category value.
    If the standard populates that field  with the info you require you'll not have to populate it yourself: so check it.
    Be careful to add this column as the last column in the Table control, as the template refers to column numbers for existing data.
    Then change the template  in order to manage the field display in the different cases (selection and display).
    DO NOT COPY STANDARD PROGRAM, or you will loose modification tracking during upgrade or SP applications.
    Be careful. The same HTML templates of the Internet Service are (shared) used for all the users. So be very sure in making changes to the standard HTML template and publishing those changes. Incase of shortdumps here, you need to go through each line in the Service to see the cause of the error(which might be as silly as missing a comma, bracket, period after a line). SAP dump analysis is not much help here.
    BR,
    Disha.
    Pls reward  points for useful answers.

  • Bid Evaluation Time Out

    Hi Experts,
    We have installed the basic SRM system on Classic Mode. The Bidding Functionality is working fine with Bid Invitation getting published and Bid responce getting created and can be accepted properly.
    Issue is only when we click on the "Bid Com[parison" button, or go Bid Evaluation under analyses tab the system gives time out dump after a long wait.
    Rest all functions within Bidding Engine are absolutely smooth and timeout timing in ICM is also increased at a very high value.
    Can anyone suggest the diagonosis for this issue.
    Regards
    Hussain

    Hi Dinesh,
    The Notes were heplful to give some insight. Though it has not solved the problem.
    As per note Note 846797 we have maintained the parameter value at ztta/diag_area and
    As per note Note 889279 the changes were already present as per the patch level.
    The issue still remains the same. Can you or anyone please suggest anything else.
    Regards
    Hussain

  • SQL SERVER 2008 R2 Analysis Services

    Hi 
    We have a SQL Server 2008 R2 Analysis Services and it was running fine but suddenly its not processing the cube. I have checked log the file msmdsrv.log and there its continuously logging the following error message.
    Message: The file '\\?\C:\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Data\TRCOLAP.0.db\Fact SL Financial Transaction.0.dim\466.SL Journal Type.kstore' could not be opened. Please check the file for permissions or see if other applications
    locked it. (Source: \\?\C:\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Log\msmdsrv.log, Type: 3, Category: 289, Event ID: 0xC1210023) 
    Would really appreciate help in this regard. It our production box
    Thanks
    inazakat

    Hi Inazakat,
    According to your description, your SQL Server Analysis Services database cannot be processed that can be processed without any problems before, right?
    Based on the message, file could not be opened. Please check the file for permissions or see if other applications locked it. It seems that the file is corrupt. This issue can be caused by that the file was deleted by antivirus. You can go to the corresponding
    folder and check if this file exist or not. If this file was deleted or corrupt, you can open the original project on BIDS, and redeploy it to your server. And then process this database.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Microsoft OLE DB Provider for SQL Server 2012 Analysis Services Error Code = 0x80040E05

    I've been running a package for 6 months without any issues that pulls data from a cube via MDX and moves it to a database.
    We've recently moved to a new server x64 and the connections all succeed but at runtime (in 64 = T&F) I get the following error:
    [SRC AdExchange [87]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E05.
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server 2012 Analysis Services."  Hresult: 0x00000001  Description: "Error Code = 0x80040E05, External Code = 0x00000000:.".
    [SSIS.Pipeline] Error: SRC AdExchange failed the pre-execute phase and returned error code 0xC0202009.
    I've installed SQL_AS_OLEDB, SQL_AS_ADOMD from Microsoft® SQL Server® 2012 SP1 Feature Pack
    Why is my connection failing?

    The server has a 10Gbps network connection.
    I've installed CU6 for SQL Server 2012 SP1
    http://support.microsoft.com/kb/2874879/en-us#hfi
    I'm still getting the same error at runtime in BIDS:
    [SRC AdExchange [87]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E05.
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for SQL Server 2012 Analysis Services."  Hresult: 0x00000001  Description: "Error Code = 0x80040E05, External Code = 0x00000000:.".
    [SSIS.Pipeline] Error: SRC AdExchange failed the pre-execute phase and returned error code 0xC0202009.
    Looking at the errorlog, everything looks normal until:
    Launched startup procedure 'sp_ssis_startup'.
    Attempting to load library 'xpsqlbot.dll' into memory. This is an informational message only. No user action is required.
    Using 'xpsqlbot.dll' version '2011.110.2100' to execute extended stored procedure 'xp_qv'. This is an informational message only; no user action is required.
    Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.
    Using 'xpstar.dll' version '2011.110.3000' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.
    Attempting to load library 'xplog70.dll' into memory. This is an informational message only. No user action is required.
    Using 'xplog70.dll' version '2011.110.2100' to execute extended stored procedure 'xp_msver'. This is an informational message only; no user action is required.
    AppDomain 2 (SSISDB.dbo[runtime].1) created.
    Unsafe assembly 'microsoft.sqlserver.integrationservices.server, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil' loaded into appdomain 2 (SSISDB.dbo[runtime].1).
    Unsafe assembly 'microsoft.sqlserver.integrationservices.server, version=11.0.0.0, culture=neutral, publickeytoken=89845dcd8080cc91, processorarchitecture=msil' loaded into appdomain 2 (SSISDB.dbo[runtime].1).
    AppDomain 3 (master.sys[runtime].2) created.
    Software Usage Metrics is enabled.
    SQL Server is terminating because of a system shutdown. This is an informational message only. No user action is required.
    Service Broker manager has shut down.
    Error: 17054, Severity: 16, State: 1.
    The current event was not reported to the Windows Events log. Operating system error = (null). You may need to clear the Windows Events log if it is full.
    .NET Framework runtime has been stopped.
    SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    The SQL Server Network Interface library could not deregister the Service Principal Name (SPN) [ MSSQLSvc/XXXXXXXXXX.com ] for the SQL Server service. Error: 0xffffffff, state: 63. Administrator should deregister this SPN manually to avoid client authentication
    errors.
    The SQL Server Network Interface library could not deregister the Service Principal Name (SPN) [ MSSQLSvc/XXXXXXXXXX.com:1433 ] for the SQL Server service. Error: 0xffffffff, state: 63. Administrator should deregister this SPN manually to avoid client authentication
    errors.
    Wondering about the unsafe assembly in SSIS and deregistering the SPN..
    Anyone have any ideas on how to resolve this?
    Thanks!

  • Analysis Services - Data Warehouse

    Hi
    I'm new to DW-Analysis Services. I've created a Data Warehouse Database and populated with data. Later, I've created a cube using BIDS. It created database in SSAS and also cube in same database. 
    If I create more cubes, will it create database for each cube or all the cubes will be created in same database.
    When I access this cube will it pickup data from Data Warehouse or using the structure of the cube Or  data is stored in SSAS. If I'm updating Datawarehouse database daily how these cubes will be refreshed, do I need to follow any procedure to update
    these cubes.
    Thanks
    Venkat Nori
    nories

    Hi Venkat,
    If You are creating Multiple Cube inside a database of same name as it is in SSAS database name.
    Then all your cube will come under the same database.While browsing you can select what cube you want to browse.
    When you change any thing in your SQL database i.e. loading data or anything relatied to transaction,then you need to process the cube.
    For Processing the cube everyday,you can create SSIS package and schedule it on daily basis.
    Regards
    msbiLearning

  • Add line items programatically (Bid invitation)

    Hi all,
    I've created a bid invitation and would like to add items programatically. Is there a standard method I can use? I started to analyse SAP standard program and try to find  
    out the functions I can call to do the task... Am I going to the wrong direction?
    Thanks in advance for your help.
    Franck

    Thanks for your quick answer Vadim,
    How do you generate the new item guid. Do you know the function module that does that? In debug, I noticed that a simple numeric value is put in the field and it's later translated but I didn't find the function that does the translation.
    Regards,
    Franck

  • Processing Cube in BIDS Removes Roles

    Greetings
    Why is it when I do a full cube processing in BIDS the Roles are deleted? Is there a way to avoind this/
    kam

    When you fully process the cube you are processing all properties, this includes roles.  When you first deploy and process the cube the properties and meta-data is written to the instance of analysis services that are specified in the properties of the project/deployment.  When you add roles to the cube when using the SQL Server Management Studio then the project remains unchanged, but the roles are added to the AS database.  You have two options:
    1. From the project include the roles in project and then deploy, this will include them in the project and will persisted during deployment.
    2. When making changes from BIDS, rather than opening the project file, which is most often stored locally, go to:
       a. File>Open>Analysis Services Database
       b. Browse to the analysis services instance and database and open
    The second option will open the entire database, including the roles within it, in BIDS.  This option can also create some inconsistency in change control.  I would highly recommend implementing specific policies regarding this, possibly using source safe and checking the project in rather than directly accessing the production AS database.
    Hope this helps.

  • Bid Evaluation ?

    Hi,
    I am configuring the strategic sourcing [SRM5.0]scenario and have a situation in the process.
    I[buyer] am successfully creating Bid invitations and assigning the vendors. I was also able to login with the vendor details and create bid successfully and a notification is also received the by the buyer as "This is an automatically generated e-mail. Please do not reply. Dear purchaser, The submission deadline for bid invitation no. xxxxxxx has lapsed. Please check the bids and take the appropriate action. "
    But I am not sure where to check these bids and take appropriate action?
    Can someone guide me on this?

    Hi Roopesh,
    There are two ways to compare bids that have been submitted for a bid invitation.
    1. Click on the Bid Comparison action icon on the main screen with the Search Results table
    2. Access the invitation by clicking on its name and then navigate to Analyses tab in the header. Select the link Bid Evaluation.
    On both of these ways you reach the Compare Bids screen that features the details of the bids submitted on the items in the invitation, as well as the bidder’s answers to attributes and the corresponding valuation (i don't know if you have implemented it...).
    If you want to define which bids should be compared, click the Bid Selection button on top of the screen, flag the checkboxes for the bids you want to compare and click Copy.
    Kind regards,
    Yann
    Message was edited by: Yann Bouillut

  • SQL Server 2014 Official Final Version ---- Data Tools (SSIS, BIDS, etc.)

    I have VS 2013 Professional, and just installed SQL Server 2014 Developer version. Can someone tell me where the proper location for the Data Tools (fka BIDS) is located ? I'm seeing CPT1, etc. but looking for the truly released version.
    THank you,
    John

    Hi,
    SSDT-BI installs the Microsoft SQL Server Data Tools Business Intelligence project templates for Analysis Services, Integration Services, and Reporting Services. SSDT does not contain those BI project templates.
    SQL Server Data Tools for SQL Server 2014 is available declares that there is a update for Visual Studio 2012 and 2013 has been pushed
    which makes SQL Server Data Tools fully compatible with SQL Server 2014.
    As I understand, what you need is SSDT-BI and checking updates would not do much help.
    Per http://www.microsoft.com/en-us/download/details.aspx?id=42313, Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2013 has been removed from the Download
    Center since April 11.
    SSDT-BI has been temporarily removed to deal with side by side issues with SSDT-SQL.
    Please be patient and wait it to be reposted. However, I cannot guarantee when it may be released. Sorry for the inconvenience you have experienced and thank you for your understanding and continued support.
    Thanks.
    Tracy Cai
    TechNet Community Support

Maybe you are looking for

  • Deleting a single map impossible?

    So I live in USA and only speak English..  That's the only maps and voice I want on the N8..  But apparently I have to delete ALL just to add only those 2? Come on Nokia, that's a foolish system, unless I'm missing something?

  • Ipod to hi fi via digital converter

    I have previously been using a digital converter from my cd player to amplifier. The cd player had a digital output which connected via single lead (which maybe an 's-video' lead, I'm not sure, as it was made for me and called a black slink)to the co

  • Text in Transaction FBL5N gets overwritten

    Hello expert, When text has been entered in field BSEG-SGTXT in transaction FBL5N, this text is overwritten with the reason code description when I enter a reason code. I entered the reason code in transaction FBL5N- Additional data - field BSEG-RSTG

  • What package can be used to remove ORACLE options?

    After 11g default install , OLAP, Data Mining and Real Application Testing shows there, how to remove these options using command (PL/SQL package) ?

  • Fade to Black greyed out

    Hey All: So I've got a few clips and some background music.  Nothing too challenging.  However, I'm trying to fade one clip out into a second clip, however the fade to black is greyed out.  What gives?  Thanks!