SSM calling Xcelsius and BO Reports combine datas and Universes into SSM

I would like to connect within SAP SSM reports and Xcelsius passing parameters to dashaboards of Xcelsius (with BO universes or not) and merge information from PAS Cube and data from other universes BO.
Could someone help me
Best Regards
Carlos Mardinotto

Carlos,
There are two different processes you use to get information into Xcelsius and into Universes. For Xcelsius you are using web services, since you are bringing in not only the data but the objective names, etc. to create the dashboards.
For getting PAS data into Universes you create an ODBO connection to Voyager and from Voyager you create a Universe.
In the Configuration Help guide for Strategy Management available from Service Marketplace (Installation & Upgrade Guides), Section 9.6 gives information on providing Strategy Management data for Xcelsius and Section 9.7 has instructions on providing Strategy Management Data for Voyager.
Regards,
Bob

Similar Messages

  • Is it possible to create a report combining data from 2 reports?

    Post Author: swalker
    CA Forum: General
    We are upgrading the application, ServiceCenter.  We have reports that show our Response and Resolution Metrics.  I have 2 set of reports, one for the old version and one for the new version.  I need to combine the results of both reports into 1 and do calculations on the data from both.  Can this be done with 2 sub reports in the main report that does the calculations?  Can 1 report connect to 2 separate databases?  I am using Crystal Reports v8.5. Is there any documentation on this or sample reports?  Can any one please give me some guidance?  Thanks

    Post Author: swalker
    CA Forum: General
    yangster thanks for the quick reply.  I am not really sure about combining reports, so I looked into what you said.  I tried to create a shared variable on the field that I need to share but that field is a running total and I get an error when I try to run the report "This field cannot be used becaus eit must be evaluated later."    So I am not sure what to do now.  Is there a work around for this?  Thanks for any help.

  • Grouped data being split into single groups.

    I’m using DIAdem 10.0 and LabView 8.2. Trying to simulate a multi channel DAQ system, saving data as tdms. When using DIAdem Data Portal to load tdms data, the data come is as 1 Group (multi channels in one group) but when I use LabView and DIAdem to open / read / create report the data is loaded into DIAdem as multiple groups. One can use the LabView examples to reproduce this issue. Can someone help with some code that will open / read / create reports that keeps multi channel data as a single group? This will make it much easier to create a tdr template for multi page reports.
    thanks

    Hey Zilla,
    The issue you are mentioning is expected behavior for the Express Report VI.  This VI was created primarily for customers that wanted to create a report on the fly when streaming data. It does not work as well when using multi page report templates.  I would recommend downloading and installing the DIAdem connectivity VIs which I have linked below.  When you install these VIs, there will be a DIAdem palette that shows up under the connectivity palette within LabVIEW.  In this palette is an express VI that I think will work better for you.  The DIAdem connectivity VIs in general are very powerful and allow many options.  You can run scripts within DIAdem from LabVIEW, export to PDF, and do several other things.  I have posted an example below that should provide similar functionality to the Report VI, but it will work as you would expect with multi page reports. You will have to install the DIAdem connectivity VIs before running this example.  Hope this helps!
    DIAdem Connectivity VIs
    Pat P.
    Software Engineer
    National Instruments
    Attachments:
    DIAdem example.zip ‏53 KB

  • Is it possible to take the CDR data from a v4.2 Call Manager and copy it to a separate server where it would be made available for reporting?

    Is it possible to take the CDR data from a v4.2 Call Manager and copy it to a separate server where it would be made available for reporting? We are not interested in migrating the CDR data to v6 because of the concerns it introduces to the upgrade process. Is it possible to get the raw data and somehow serve it from a different machine? (knowing it would be 'old' data that stops as of a certain date). If so, what would be the complexity involved in doing so?
    It seems like the CDR data lives within MSSQL and the reporting interface is within the web server portion of the Call Manager... that's as far as we've dug so far.

    Hi
    It is absolutely possible to get the data - anyone you have in your org with basic SQL skills can move the data off to a standalone SQL server. This could be done most simply by backing up and restoring the DB using SQL Enterprise Manager.
    Moving the CAR/ART reporting tool would be more difficult... if you do actually use that for reporting (most people find it doesn't do what they need and don't use it for anything but basic troubleshooting, and get a third party package) then the best option may be to keep your publisher (possibly assigning it a new IP) and leave it running for as long as you need reporting.
    You would then need a new server to run your upgraded V6 CCM; you may find you need this anyway.
    Regards
    Aaron
    Please rate helpful posts...

  • Call tcode from alv report and passing  group of values

    hi all .
    i want to call tcode from alv report and passing an internal table or group of values to a selection option of that t code ? how
    ex. passing group of GL to fbl3n and display the detials of all .
    thank you

    Dear,
    You have done a small mistake
    --> rspar_line-option = 'EQ'.
         rspar_line-HIGH = PDATE-HIGH.
    u r passing "high" value and in "option u r passing "EQ" so how it will work!!!
    So if u r passing only 1 date or more dates like 01.01.2010 , 15.02.2010 , 10.03.2010 then pass
    rspar_line-selname = 'SO_BUDAT'.
    rspar_line-kind = 'S'.
    rspar_line-sign = 'I'.
    rspar_line-option = 'EQ'.
    rspar_line-LOW = PDATE-HIGH.
    APPEND rspar_line TO rspar_tab.
    or if u r passing low & high date means in range like 01.01.2010 to 30.01.2010, then pass
    rspar_line-selname = 'SO_BUDAT'.
    rspar_line-kind = 'S'.
    rspar_line-sign = 'I'.
    rspar_line-option = 'BT''.
    rspar_line-LOW = PDATE-LOW.
    rspar_line-HIGH = PDATE-HIGH.
    APPEND rspar_line TO rspar_tab.
    try above code , hope it helps...
    i think u cannot use "call transaction using bdcdata" in ur case bcoz as u said in ur 1st post u want to display the details of all but still if u want to use then u should pass all parameters in  loop.
    PROGRAM
    DYNPRO
    DYNBEGIN
    FNAM
    FVAL
    ex:-
    LOOP AT GT_TEMP INTO GS_TEMP.
    CLEAR bdcdata_wa.
    bdcdata_PROGRAM = 'SAPXXXX'.
    bdcdata_DYNPRO = '1000'.
    bdcdata_DYNBEGIN = 'X'.
    bdcdata_wa-fnam = '''.
    bdcdata_wa-fval = ''.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_PROGRAM = ''.
    bdcdata_DYNPRO = ''.
    bdcdata_DYNBEGIN = ''.
    bdcdata_wa-fnam = 'SD_SAKNR'.
    bdcdata_wa-fval = GS_TEMP-GLACCOUNT.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_PROGRAM = ''.
    bdcdata_DYNPRO = ''.
    bdcdata_DYNBEGIN = ''.
    bdcdata_wa-fnam = 'BDC_OKCODE'.
    bdcdata_wa-fval = 'XXX'.
    APPEND bdcdata_wa TO bdcdata_tab.
    ENDLOOP.
    try above code if u r using call transaction...
    Edited by: mihir6666 on Jul 9, 2011 3:10 PM
    Edited by: mihir6666 on Jul 9, 2011 3:11 PM
    Edited by: mihir6666 on Jul 9, 2011 3:13 PM

  • Xcelsius and SQL Server 2008 Reporting Services

    I am totally and utterly p1$$3d off and surely I cannot be the only person to be using a similar setup i.e. Xcelsius along with SQL Server 2008 Reporting Services.
    I have installed and tried to get working the XRS gateway and get connectivity to Reporting Services so that SSRS reports can be utilized with Xcelsius... BUT NO...
    when trying to configure and use the GetReports command from the xrs.asmx web file I get an error, namely:
    <?xml version="1.0" encoding="utf-8" ?>
    <ROOT>
    <Message>Client found response content type of '', but expected 'text/xml'. The request failed with an empty response.</Message>
    <StackTrace>at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) at Microsoft.ReportingServices.ReportingService.ListChildren(String Item, Boolean Recursive) at Microsoft.ReportingServices.CatalogManager.CreateXmlNode(XmlDocument Doc, CatalogItem Item, XmlNode ParentNode) at Microsoft.ReportingServices.CatalogManager.SerializeToXML() at Infommersion.XRS.Service.GetReports()</StackTrace>
    </ROOT>
    Only to be told when I logged a support call, that "SQL Server 2008 Reporting Services is NOT SUPPORTED"
    please go back to using 2005!!!
    I find this totally and utterly unbelievable, it's not even as if its a new product... and surely i am not the only person using Xcelsius and wanting to utilise 2008Reporting Services Reports...
    has anyone come across this error or understand what is not occuring to get this message and how to resolve?
    yours eternally grateful if anyone can shed light on the matter
    dean

    Indeed, got the XRS gateway working but it isn't able to connect to RS2008.
    I guess the cause is that for RS2005 the web service connection point is the file ReportService.asmx. In RS 2008 this file is renamed to ReportService2005.asmx and therefor the XRS gateway cannot connect to it.
    A fix pack seems to be in the making:
    [1400035 - Xcelsius 2008 with MS Reporting Services 2008 Supportability |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433303330333033333335%7D.do]

  • Combining Date and Time into 1 Field

    Post Author: Marc Vaccarino
    CA Forum: Formula
    Hi,
    I'm trying to write a formula to combine 2 fields (date and time) into one. I would like it to look like this.
    2/12/2007 + 12:00pm = 2/12/2007 12:00pm
    Thanks,

    Post Author: Marc Vaccarino
    CA Forum: Formula
    Thanks that worked but my problem is currently the date field I'm using has a date and time (12/12/2007 12:00am) and the time field has it as well  (12/12/2007 1:45am).  I've been going into crystal and clicked on format field and just showing the date and in the time field, just showing time. Then I would extract the report to excel then run another formula to get it to work. I'm looking to automate it a little. Any ideas??

  • How can i call ajax and extract the data?

    Hi all,
    I don't know briefly about ajax..i want to learn ajax, so my question is how can i call ajax and extract the data. for ex, i have JSON file
        "mobile": [
                "Name": "Micromax",
                "Model": A310
                "Name": "samsung",
                "Model": grand 2
    for above example how can i call ajax..please anyone explain with small example because it'll help me a lot.
    Thanks & Regards,
    Palsaran

    Hi Palsaran,
    As i understood, your requirement is to POST data from UI to backend.
    The above code you given is not correct if you want to use model based implementation.
    In UI5 you don't need to do an explicit Ajax call, for which we can use Models like OData, JSON etc.
    For your JSON example, you can use like,
    var oModel = new sap.ui.model.json.JSONModel();
    var oData = "YOUR JSON DATA";
    oModel.setData(oData)
    oModel.loadData(yourURL/Entityset,"POST");
    For ref, you can use the below link
    JsDoc Report - SAP UI development Toolkit for HTML5 - API Reference - sap.ui.model.json.JSONModel
    Thanks
    Naveenraj

  • Xcelsius and Reporting Service connectivity

    Hi,
    I want to create a dashboard for my client and it is created by Xcelsius Engage Server 2008.
    I tried to link this report with original source from Reporting Services by using feature Reporting Server Button.
    When I previewed it in Xcelsius Engage Server 2008, it was perfect by the mean of data has been refreshed according to its reporting services data.
    But, of course we don't install the Xcelsius Engage Server 2008 in the client side, so we must export it into .swf file or others.
    I exported it into .swf files and it could not load from the reporting services data.
    So what I would like to asked, is it possible to be done like this?
    Or have I missed something?
    Thank you in advance.
    Regards,
    Ricky

    Hi,
    Check in
    https://www.sdn.sap.com/irj/boc/xcelsius
    https://www.sdn.sap.com/irj/boc/xcelsius?rid=/webcontent/uuid/10857210-2281-2b10-f7ae-bd1225b47308 [original link is broken]
    /message/6743910#6743910 [original link is broken]
    Thanks
    Reddy
    Edited by: Surendra Reddy on Mar 10, 2009 7:13 AM

  • Call manager and rme config archive report

    Hi,
    I know that rme does not support the call manager for config archive. It is clear.
    The RME home page show config archive status for failed devices and there are some devices which are not supported by RME config archive.
    I've set this devices to suspended state in RME but config archiv is trying with this devices also.
    This is a financial costumer and the local Financial supervisory authority would like to see all devices config is saving successfully.
    How can i exclude the call manager and similar devices from config archiv process and status reports?
    Regards,

    Hi,
    I would like to qoute from RME help.
    Working With Suspended Devices
    Suspended device state cannot participate in any RME application flows but all historical data pertaining to the device will continue to be maintained by RME.
    Nevertheless the RME is trying to fetch the config from suspended devices!!!
    What is the truth in this thing?
    Regards,

  • MB5B Report for Date Wise Stock and Value

    Hi,
    I am Taking MB5B Report for Date Wise Stock and Value.
    But I have one doubt all stocks is coming or not in these report like Unrestrected Stock,Return Stock.Blocked stock,Transist stock,Restrected Stock,qty Inspection Stock.
    I have another Doubt in these report three Stock type indicaters are there like these.
    1.Storage Location / Batch Stock
    2.valuated Stock
    3.Special Stock.
    But i have one doubt what is defferent these
    1.Storage Location / Batch Stock
    2.valuated Stock

    Hi Prasad,
    Yes MB5B report consider the Unrestricted, Quality, Blocked, Transit stock and restricted stock. Not sure about Return Stock.
    If you select the Storage location/Batch stock radio button then the system will display all the possible stock from the storage location and the corresponding batch also.
    If you select Valuated stock radio button then system will show only the valuated stock not the Non-valuated stock. Because Non-valuated material type is available in SAP system will not show those stock suppose if you select the Valuated stock radio button.
    Regards
    Karthick

  • Report for date variances between delivery and goods receipt date

    dear guru ,
    i search a standard report for date variances between delivery date in the purchase order and the goods receipt date.
    Do you help me ?
    Thanks

    Hi,
    Use Report ME80FN and here check the delivery schedule option in output screen.

  • Report Completion date and Report start date in BI Publisher

    Guys
    We have a requirement to get the Report Completion date and start date without Scheduling the report. Can any one give me an idea to get in the BIP Reports
    Regards

    What is the requirement ?
    When the user run report from BIP EE, you want to display how long the report run ?
    or
    Where you want to display these info >?
    If you expecting these info, on click of viewbutton then i dont think it is possible, unless you write the query to fetch the time and in the template processing, subtract that from the current sys-time to get the time it took to run.
    if you can schedule then
    Simplest would be is , taking these info from the tables, directly for the report you are running.
    or
    use Public WS provided by BIP to get the report info
    but in order to get these, first of all the reports should be run in scheduled mode.
    if you don't want the report to be scheduled then, i don't think, you can get these kind of report completion status info.
    otherwise , you can run the query by yourself to get the data and the time it took to complete from database and do some sort of custom calculation by urself

  • HT4623 I have an IPhone4 and is updated with version 6.1.3 and I am not able to connect with face time calls. I have checked the date ant time. I used to be able to use face time with no problem. since the late os upgrace I have not been able to connect w

    I have an IPhone4 and is updated with version 6.1.3 and I am not able to connect with face time calls. I have checked the date ant time. I used to be able to use face time with no problem. Since the late os upgrace I have not been able to connect with face time.

    Read http://support.apple.com/kb/ts3367

  • How to use url to open report and refresh report's data,but the report's toolbar haven't "refresh data" button

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    HI,
    scenario is
    I hope use url to open the report,and refresh the report data,but I didn't the user use the "refresh data" button to refresh the report's data.How to do that?
    regards

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    Thank you for your attention, amr_foci .
    I created a Web Intelligence report,there will be more than 30 companies use.The company only allowed to see the Company Data. I want to use the url of the way, from my company in the development of the system to open report, and refresh reported Table data.but do not want users to use the toolbar of "data refresh" button to refresh the data .
    Now the question of identity authentication system, as well as statements by url open the question of Has been resolved, but it can not shield statements through the pages of "data refresh" button.
    In addition, I now used by the business object XI system is posted on the JAVA environment.
    Regards,

Maybe you are looking for

  • Strange flash audio problem

    Can anyone help me with this strange audio issue? Seeming randomly, I am loosing the audio to my movie. I will publish or preview the movie and notice that suddenly the audio is not there. I am not doing anything related to the flv and I can't tell w

  • Antenna for 3700 series

    Hi all,  I have done a lot of research regarding the best antennas for the warehouse but would like to hear your views on what I have chosen.  We are deploying in the warehouse and the ceiling is 10m high. We will be installing the 3700e and am eyein

  • Setting administrator permissions on Macpro with four internal hard drives.

    Error message while logged n as admin "This software requires administrator or higher level permissions" when trying to install new software from cd-rom or download. ie. Quark 7.01 cd-rom, Epson scanner driver update. I am able to install these progr

  • Want to upgrade...finally!

    Hi. I'm using OS 10.2.8 now and I am going to upgrade. I have the system requirements to upgrade to Tiger, but does anyone know if I'll have trouble installing it without having 10.3 first?

  • See used fonts without opening ai doc

    hi, is there a way to see what fonts are used in an illustrator document without opening it. maybe an applescript or something, but it should not be a third party app or plug-in. by the way: it should work with mac os x thanks fprince