Reporting and Report tools for CCM

Can anyone point me in the right direction or give me some suggestions on reporting in CCM. To be a little more specific; for example if a few users complain they are tryin to make outbound calls, and getting a busy signal, is there any reporting tool that I can use to pinpoint the problem or eventually be able to say, hey we need another phone line, etc...
Also. User calls can complains that the calls they are making lack in quality, how do I report on this or research?

In order to determine if there are any records in the Structured Query Language (SQL) database, complete these steps:
Choose Start > Programs > SQL > Enterprise Manager > Microsoft SQL Servers > SQL Server Group.
Choose Publisher Server > Databases.
Choose CDR > Tables. Right-click the CallDetailRecord table.
Choose Open Table > Return All Rows. Determine if there are any records.
If many records appear, complete this procedure to remove records from ART:
Choose Programs > SQL Server > Query Analyzer. Log in and choose ART database.
Run these queries:
delete from Tbl_Load_History
delete from Tbl_Dump_PkID
delete from Tbl_Error_Id_Map
delete from Tbl_Billing_Data
delete from Tbl_Billing_Error
delete from Tbl_Dump_CallDetailRecord
delete from Tbl_Dump_CallDetailRecordDiagnostic
This forces ART to get all the old CDRs into ART in the next scheduled loading time. By default, CDR data is loaded every day from midnight to 5 a.m.
Restart the CDR Insert and DBL Monitor Services from CCM Administration > Application >Cisco CCM Serviceability >Tools > Control Center.
Refer to the How can I manually purge the ART database? section of CallManager Issue Resolution with CDR and ART FAQ for more information.
Note: Information deletes from the ART database but not from the CDR.
Note: If you do not see any records, there are no CDR entries for that time and date range. Determine if conditions are met for CDR generation. CDR records are generated in these circumstances:
The service parameters CdrEnabled and CallDiagnosticsEnabled are set to True.
The call is established and has a talk duration greater than 0.
The call fails and has a cause code that reflects the error.
In order to set the service parameters, choose Service > Service Parameters, and make sure that the service parameters CdrEnabled and CallDiagnosticsEnabled are set to True in all of the Cisco CallManager servers, both publisher and subscriber.

Similar Messages

  • ALD API and ALD (Advanced Layout Designer) as a reporting tool for AddOns

    Dear all,
    as per SMP "ISVs and VARs can integrate combit's List & Label functionality into any SAP Business One Add-on without additional combit license fees", so am i right it means that LnL (ALD) has an API which allows to manipulate it right from SBO AddOn?
    and yes, according to the combit site (e.g., http://www.combit.net/en/page1077.aspx?action=display&articleid=KBTE000662) this really has API.
    so the questions are:
    1. does anybody has any expierence with ALD as a reporting tool for the SBO AddOns (ALD API expierence)?
    2. does anybody has any samples (how to call ALD API from AddOn)?
    3. are there any elearning materials at the SMP regarding ALD API usage from the AddOns?
    4. is ALD API available for the SAP 2005 SP01 as well as SAP 2007 versions?
    please comment on this with your point of views and some attitude
    thank you and kind regards,
    A.

    Hi Alexey,
    I've got ALD running at sites (2005A SP1).
    1) ALD is certainly more powerful than PLD in terms of presentation and formulas. The only limitation I came across was that you can only have 1 data table in a report (unlike other report writers like Crystal or Reporting Services). Also, working with special lines and serial/batch data in marketing documents is overly complex in my opinion.
    2) There were some samples attached to SAP Notes. I'm afraid my samples would be useless because you'd have to have the same UDFs and my reports are quite site specific.
    3) I've never seen ALD learning material from SAP but there was a decent enough manual that came with the addon.
    4) Not sure. I think you'll need to ask Combit directly.
    Pros:
    a) I particularly like the sound of the API although I haven't had a chance to look at it yet
    b) Some nice built in features like labels and the ability to create layouts for user queries (...PLD is capable of doing this, just not very well )
    c) Software is part of 2007A (ie no additional license fee)
    d) Integrated with SBO
    Cons:
    a) The integration is not perfect (eg if you use the SBO Mailer then report attachments still use the PLD layout and not ALD).
    b) A bit buggy at times (although this was on an early 2005A version)
    c) Formulas use a C++ type syntax which can be confusing for those not used to it though there is a formula builder to help out.
    d) No reports built in. SAP/Combit should be considering having all marketing documents and maybe some other key reports built in as standard.
    All things considered, ALD is worth looking at if PLD is not up to the job.
    Hope that helps,
    Owen

  • Best Usage reporting tool for SharePoint 2013 (onpremises)

    Please suggest me best reporting tool for SharePoint 2013 on premises.
    Need to get site usage summary for any time in last one year.
    Need to get library/list usage summary for any time in last one year. etc.
    How many peak hits and unique no of users across all levels.
    Thanks, Ram Ch

    Hi Ram
    We have two links “Popularity Trends” and “Popularity and Search Reports” in the site settings. By Clicking on the two links we can view the usage reports in SharePoint 2013.
    More references:
    http://technet.microsoft.com/en-us/library/jj715890(v=office.15).aspx
    http://sureshpydi.blogspot.com/2013/06/usage-reports-and-popularity-trends-in.html
    http://blogs.msdn.com/b/chandru/archive/2013/08/31/sharepoint-2013-web-analytics-report-where-is-it.aspx
    http://www.prweb.com/releases/2012/8/prweb9821144.htm
    Amit Kotha

  • Using AE(htmldb 2.0)  as for reporting tool for other oracle databases.

    Maybe I was mistaken, but when I first saw the HTMLDB demo's I saw this as a slick way to build a browser based reporting tool for the masses for quasi-ad-hoc reporting on some of our larger databases that currently have limited reporting capability, and also as a possible replacement for the many MSAccess applets we have.
    I just got 2.0 installed and working on a 9i database and went through the basic tutorials, but I can't find much info on how to connect to other oracle databases.
    Are my options as follows?:
    create dblinks from the local database that houses htmldb to all the other databases?
    or
    install htmldb schemas on each database I want to access from htmldb?
    or
    I'll keep looking, but if any of you have any pointers or know of a tutorial that explains the best way to do this it would be greatly appreciated!
    tia

    As for question 1, yep, that's what I mean. Example:
    In a schema in the App Express instance, create a user called "APP1_USER", and then
    create view app1_user.people as select * from people@link_user@remotedb
    As for the next question, using the built-in insert/update/delete processes will give you
    ORA-01461: can bind a LONG value only for insert into a LONG column
    among other errors. Apparently version 2.1 will fix this. See Cannot Update VARCHAR column in Remote DB
    We address this problem by creating pl/sql APIs for DML, and then writing our own insert/update processes. Slows us down a little, but even with that, App Express remains a productive choice for us.
    Another weird problem: auto-row fetch (built-in to HTML DB) doesn't work over db links when you have two columns for a primary key. Many ways around this, e.g. create sequence-populated primary key, create a view with single column that concatenates primary key column values (key1|key2)
    Hope this helps!
    -John

  • Reporting tools for the Business user - Crystal reports or BEx tools ?

    Hi,
    We have recently implemented BI/BO infrastructure. Scope of the inital implementation was an executive dashboard based off COPA data. We have used Xelcisus for dashboard and BEx tools for query design etc.
    We would like to set up some of our key business users (analysts in respective functions) to be able to write their own queries off this COPA cube. The discussion point is whether to roll out Crystal reports for business users or have them trained on BEx tools i.e BEx query designer/analyzer.
    Any inputs to my question "Crystal Reports or BEx tools for the Business users - pros and cons", is appreciated.
    Thanks,
    Girish

    Our user currently do not have anything.  It's fresh implementation. We would like to get the business users involved. The question is - what's the best start for a business user - Crystal Reports or Bex ?

  • [Reports]   The best reporting tool for JDeveloper 10g

    Hi,
    Which is the best reporting tool for JDeveloper 10g: JasperReports, Crystal Reports or something else? I want to build parametric and rather complex reports but I don't know which tool offers more features, flexibility, ease of use , ... . I've built some simple parametric reports using JasperReports and JDeveloper 10g but I think it's not so productive and may need something more, maybe iReport. Does anyone have any ideas?
    S/\EE|)

    Hi Saeed,
    I'lm using Jasper too, and here is an example of how i pass to it some variables:
         <parameter name="theWantedId" isForPrompting="false" class="java.lang.Integer"/>
         <queryString><![CDATA[SELECT field1, field2 from table1 WHERE table1.field1 = $P!{theWantedId}]]></queryString>And in a bean (or other java code from which the template is called)
            Map parameters= new HashMap();
            parameters.put("theWantedId", findSelectedId()); // return the ID of the object to print
            JasperDesign design =
                JRXmlLoader.load(myTemplate); // First load template from the Blob table in an inputstream
            JasperReport report =
                JasperCompileManager.compileReport(design);
            InitialContext initialContext = new InitialContext();
            DataSource ds = (DataSource)initialContext.lookup("java:comp/env/jdbc/MYDATASOURCEConnectionDS");
            Connection conn = ds.getConnection();
            JasperPrint print =
                JasperFillManager.fillReport(report, parameters, conn);Hope that can help, if you need more information please ask,
    Best regards,
    Tif

  • Reporting Tools for Hyper-V 2008 R2

    Are there any documenting or reporting tools for Hyper-V 2008 R2?  I just need to get a list of all VM guest running and their associated VHD files along with where those VHD's are stored. 
    Thanks!
    Kristopher Turner | Not the brightest bulb but by far not the dimmest bulb.

    Sam,
    Thanks, we are at the start of an upgrade from 2008 R2 to 2012 R2.  Just needed an easier way to pull information about the current environment like what location each VHD for each VM is located and if there are any snap shots saved, etc. 
    Just planning ahead to help make the migration easier.  The current environment is a mixture of CSV's and direct LUN's.  So it should be interesting when we start our migration planning.
    Noticed you are from the King of Prussia area?  Just spent a few weeks over at the Hilton Garden Inn at Valley Forge. 
    Kris
    Kristopher Turner | Not the brightest bulb but by far not the dimmest bulb.

  • Report tool for OWB

    Can we use cognos as a reporting tool for Oracle warehouse builder?
    Prasath.

    There are two answers to this depending on what your question:
    1) Can I use Cognos to write reports against the OWB repository? Yes you can. There are a series of public tables that expose the key elements of the OWB repository covering, configuration, metadata, data quality, and deployment.
    For data quality there is an Application Express sample bundled with OWB that provides a starting point for data quality reporting.
    For more information see the following link on the OWB OTN home page:
    Oracle Warehouse Builder 10gR2 and Metadata Reporting
    http://www.oracle.com/technology/products/warehouse/pdf/OWB10gR2%20and%20Metadata%20Reporting.pdf
    2) Can I register Cognos reports within OWB to benefit from OWBs metadata impact analysis features? Yes. You can extend the Warehouse Builder repository to cover additional objects such as Cognos reports and their content to provide a complete front to back, back to front impact analysis environment.
    For more information see the following link on the OWB OTN home page:
    Repository Extensibility Cookbook
    http://www.oracle.com/technology/products/warehouse/pdf/Oracle%20Warehouse%20Builder%2010gR2%20Repository%20Extensibility%20Cookbook.pdf
    Hope this helps
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • Reporting tools for idoc

    hi,
        can anybody tell me what are the reporting tools for idocs.
    thank you very much.

    Hi,
    Can you make your question a little clear, i mean what do you actually mean by saying reporting tools for idoc.
    regards,
    Syed

  • Backpac: A package state snapshot and restore tool for Arch Linux

    backpac:
    A package state snapshot and restore tool for Arch Linux with config file save/restore support.
    https://aur.archlinux.org/packages.php?ID=52957
    https://github.com/altercation/backpac (see readme on the github repository for more information)
    Summary & Features
    It's a common method of setting up a single system: take some notes about what packages you've installed, what files you've modified.
    Backpac creates those notes for you and helps back up important configuration files. Specifically, backpac does the following:
    maintains a list of installed groups (based on 80% of group packages being installed)
    maintains a list of packages (including official and aur packages, listed separately)
    maintains a list of files (manually created)
    backs up key config files as detailed in the files list you create
    The package, group and files lists along with the snapshot config files allows system state to be easily committed to version control such as git.
    Backpac can also use these lists to install packages and files. Essentially, then, backpac takes a snapshot of your system and can recreate that state from the files and lists it archives.
    Use Cases
    Ongoing system state backup to github
    Quick install of new system from existing backpac config
    Conform current system to given state in backpac config
    Backpac is a very, very lightweight way of saving and restoring system state.
    It's not intended for rolling out and maintaining multiple similar systems, it's designed to assist individual users in the maintainance of their own Arch Linux box.
    Status
    Alpha, release for testing among those interested. Passing all tests right now but will continue to rework and refine. Bug reports needed.
    Why?
    There are a lot of 'big-iron' solutions to maintaining, backing up and restoring system state. Setting these up for a single system or a handful of personal systems has always seemed like overkill.
    There are also some existing pacman list making utilities around, but most of them seem to list either all packages or don't separate the official and aur packages the way I wanted. Some detect group install state, some don't. I wanted all these features in backpac.
    Finally, whatever tool I use, I'd like it to be simple (c.f. the Arch Way). Lists that are produced should be human readable, human maintainable and not different from what I'm using in non-automated form. Backpac fulfills these requirements.
    Regarding files, I wanted to be able to backup arbitrary system files to a git repository. Tools like etckeeper are interesting but non /etc files in that case aren't backed up (without some link trickery) and there isn't any automatic integration with pacman, so there is no current advantage to using a tool like that. I also like making an explicit list of files to snapshot.
    Sample Output
    This is the command line report. Additionally, backpac saves this information to the backpac groups, packages and files lists and the files snapshot directory.
    $ backpac -Qf
    backpac
    (-b) Backups ON; Files will be saved in place with backup suffix.
    -f Force mode ON; No prompts presented (CAUTION).
    (-F) Full Force mode OFF; Prompt displayed before script runs.
    (-g) Suppress group check OFF; Groups will be checked for currency.
    (-h) Display option and usage summary.
    (-p) Default backpac: /home/es/.config/backpac/tau.
    -Q Simple Query ON; Report shown; no changes made to system.
    (-R) Auto-Remove OFF; Remove/Uninstall action default to NO.
    (-S) System update OFF; No system files will be updated.
    (-U) backpac config update OFF; backpac files will not be updated.
    Sourcing from backpac config directory: /home/es/.config/backpac/tau
    Initializing.................Done
    GROUPS
    ============================================================================
    /home/es/.config/backpac/tau/groups
    GROUPS UP TO DATE: group listed in backpac and >80% local install:
    base base-devel xfce4 xorg xorg-apps xorg-drivers xorg-fonts
    GROUP PACKAGES; MISSING?: group member packages not installed:
    (base: nano)
    (xfce4: thunar xfdesktop)
    PACKAGES
    ============================================================================
    /home/es/.config/backpac/tau/packages
    PACKAGES UP TO DATE: packages listed in backpac also installed on system:
    acpi acpid acpitool aif alsa-utils augeas cowsay cpufrequtils curl dialog
    firefox gamin git ifplugd iw mesa mesa-demos mutt netcfg openssh rfkill
    rsync rxvt-unicode sudo terminus-font vim wpa_actiond wpa_supplicant_gui
    xmobar xorg-server-utils xorg-twm xorg-utils xorg-xclock xorg-xinit xterm
    yacpi yajl youtube-dl zsh
    AUR UP TO DATE: aur packages listed in backpac also installed on system:
    flashplugin-beta freetype2-git-infinality git-annex haskell-json
    package-query-git packer wpa_auto xmonad-contrib-darcs xmonad-darcs
    AUR NOT IN backpac: installed aur packages not listed in backpac config:
    yaourt-git
    FILES
    ============================================================================
    /home/es/.config/backpac/tau/files
    MATCHES ON SYSTEM/CONFIG:
    /boot/grub/menu.lst
    /etc/acpi/handler.sh
    /etc/rc.conf
    /etc/rc.local

    firecat53 wrote:I think your plan for handling an AUR_HELPER is good. If AUR_HELPER is defined by the user, then either you might need a list of major AUR helpers and their command line switches so you can pick the correct switch for what needs to be done (most use some variation of -S for installing, but not all), or have the user define the correct switch(es) somehow for their chosen AUR helper.
    That's a good idea. I'll add that to my AUR refactoring todo.
    I also found directory tracking to be a weakness in other dotfile managers that I tried. I think you would definitely have to recursively list out the contents of a tracked directory and deal with each file individually. Wildcard support would be nice...I just haven't personally found a use case for it yet.
    I've been thinking that I could just add the directory and scan through it for any non-default attribute files. If those are found then they get automatically added to the files list. That's pretty close to what etckeeper does.
    Edit: I just compiled the dev version and removed my comments for already fixed things...sorry!
    The master branch should have those fixes as well, but I didn't update the version number in the package build. I'll have to do that.
    1. Still apparently didn't handle the escaped space for this item: (the file does exist on my system)
    Ok, good to know. This wildcard directory business will require some new code and refactoring so I'll also rework my filenames handling.
    2. Suggestion: you should make that awesome README into a man page!
    I was working on one (the pkgbuild has a commented out line for the man page) but I had to leave it for later. Definitely want a man page. Once this stabilizes and I'm sure there aren't any big structural changes, I'll convert it to man format.
    3. Suggestion: add the word 'dotfile' into your description somewhere on this page, the github page, and in the package description so people looking for dotfile managers will find it. You could also consider modularizing the script into a dotfile manager and the package manager, so people on other distros could take advantage of your dotfile management scheme.
    I actually have a different script for dotfile management that doesn't touch packages, but there is definitely overlap with this one. That script isn't released yet, though, and if people find this useful for dotfile management that's great. I'll add that in.
    4. Suggestion: since -Q is a read-only operation, why not just make it run with -f automatically to avoid the prompt?
    Originally, running backpac without any command line options produced the Query output. I was concerned that since it is a utility that can potentially overwrite system files, it is important to give users a clear statement prior to execution about what will be done. Since the Query output is essentially the same as the Update and System reports in format and content, I wanted to be explicit about the Query being a passive no-change operation. The current command line options aren't set in stone though. If you feel strongly about it being different, let me know.
    Long answer to a short question
    5. Another suggestion: any thought to providing some sort of 'scrub' function to remove private information from the stored files if desired? This would be cool for publishing public dotfiles to github. Perhaps a credentials file (I did this with python for my own configs). Probably detecting email addresses and passwords without a scrub file would be rather difficult because dotfiles come in so many flavors.
    Yes, absolutely. In fact, if you look at the lib/local file (pretty sure it's in both master and dev branches in this state) you'll see some references to a sanitize function. The idea there is that the user will list out bash associative arrays like this:
    SANITIZE_WPA_=(
    [FILE]='/etc/wpa_supplicant.conf'
    [CMD]='sed s/expungepattern/sanitizedoutput/g'
    Question: am I missing an obvious option to remove a file from the files.d directory if I delete it from the files list? Or do I have to delete it manually? It might be helpful to add a section to the README on how to update and delete dotfiles from being tracked, and also a more detailed description of what the -b option does (and what is actually created when it's not used).
    You are only missing the function I didn't finish. There should be either dummy code or a TODO in the backpac main script referencing garbage collection, which isn't difficult but I just haven't finished it. The idea being another loop of "hey I found these old files in your files.d, mind if I delete them?" It's on my list and I'll try to get it in asap.
    And finally, just out of curiosity, why did you choose to actually copy the files instead of symlink like so many other dotfile managers do?
    git not following symlinks, hardlinks also out for permissions issues (git wouldn't be able to read the files, change them, etc.)
    I definitely would prefer to not make an entire copy of the file, but I haven't come up with a better option. Shout with ideas, though. Also, if there is a way around the link issues I noted above, let me know. I don't see one but that doesn't mean it's not there.
    edit: I think a Seattle area Arch meetup would be cool! Perhaps coffee someplace? Bellevue? U-district? Anyone else? BYOPOL (bring your own pimped out laptop)
    A general meetup sounds good. I was also thinking it would be fun to do a mini archcon with some demos.

  • Collection : Popular DVD and Video Tools (For Mac)

    Collection : Popular DVD and Video Tools (For Mac)
    iPod softwares http://www.oursdownload.com/Mac-DVD-Video-iPod.html
    iPhone softwares http://www.oursdownload.com/Mac-DVD-Video-iPhone.html
    PSP softwares http://www.oursdownload.com/Mac-DVD-Video-PSP.html
    Apple TV softwares http://www.oursdownload.com/Mac-DVD-Video-Apple-tv.html
    DVD to Mobile(3GP) softwares http://www.oursdownload.com/Mac-DVD-3GP.html
    DVD Video to MP4 softwares http://www.oursdownload.com/Mac-DVD-Video-MP4.html
    DVD Converter http://www.oursdownload.com/Mac-DVD-Converter.html
    Video Converter http://www.oursdownload.com/Mac-Video-Converter.html
    DVD Copy softwares http://www.oursdownload.com/Mac-DVD-Copy.html
    DVD ripper softwares http://www.oursdownload.com/Mac-DVD-Ripper.html
    DVD to Blackberry http://www.oursdownload.com/Mac-DVD-Blackberry.html
    DVD Creator http://www.oursdownload.com/Mac-DVD-Creator.html
    DVD Studio Pack http://www.oursdownload.com/Mac-DVD-Studio.html

    I addition to running less concurrent processes or installing more RAM as Kappy mentioned.
    I also see that you have less than 10% of free space left on your HDD.
    Disk Information: ?
      ST3500418AS disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 499.25 GB (40.6 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    Which is fairly low and forcing it to work on the slowest part of the HDDs platter.

  • Data Warehouse and ETL tools for data verification ?

    Data Warehouse and ETL tools for data verification ?
    How need to to data verification using ETL tool ? Also how to relate this thing to datawaehouse ?
    Thanks in Advance

    Hi  Shyamal Kumar,
    1)  BW it self  facilitates to do the ETL (Extraction Transformation Loading)  steps:
         example:
                     Extraction  - from SAP or other data bases
                     Transformation - using transfer rules, Updates rules
                     Loading  -  Loading into ODS, Cube, master data
    2) Typically used ETL tools in the industry are:
         a)   datastage from Ascential (owned by IBM)
         b)   Informatica
         c)   Mercator
    Regards, BB

  • Monitoring and Alerting tools for Business Object Data Integrator

    Hi,
    We have Business Objects DI installed in AIX 5.3 environment. Please advise any type of monitoring and alerting tools for DI.
    Monitor tools to monitor Job servers(like job service and web services running properly) and also to monitor long running extraction jobs and alerting the same. Thanks.
    Thanks.
    Raj.

    Hi Thomas
    Though both the tools objectives are for Data integration, the purpose for both tools are different.
    SAP BODS/ BOBJ Data Integrator is an ETL tool which involves combining data residing in different sources and providing users with a unified view of the data
    SAP PI is a Middleware/EAI tool which have a mechanism/technology that connects different parts of an application or a series of applications
    SAP BOBJ Data Integrator
    Bulk Data Integration
    Extraction Transformation and Loading
    Deals of huge volume of data
    SAP PI
    It is process based integration of application data
    It is a middle ware which integrates various project applications into a common programming package that can be operate/access as a single application
    SAP NetWeaver PI is SAP’s implementation of Service-oriented Architecture (SOA) middleware and facilitates the integration of business processes that span different departments, organizations, or companies.
    SAP PI uses SAP NetWeaver Application Server and message servers where in fail over cases the messages can be resent again.
    The below differences will gives you more clarity
    Verdict is we can use both the tools for data transfer/migration and for choosing the tool depends upon the business requirement
    Please reply back if you need more information.
    Regards
    Murthy

  • Reporting tool for access.log and other files

    Any know of a good reporting tool to make useful reports out of the log files in
    Weblogic?

    I think you should verify this with Oracle Support.
    This is the perfect measure to have them drop the phone on you.
    Sybrand Bakker
    Senior Oracle DBA

  • Searching for a Reporting Tool for Oracle 11g

    Hello,
    I have created several OLAP-Cubes with the Analytic Workspace 11.1.0.7.0B on the Oracle Database 11g. Now I need a Tool for Creating some Reporting. I have Oracle BI Spreadsheet Add-In Version 10.1.2.3 for Microsoft Excel. I have installed it and I have a Connection to the Database. But on the Query-Assistent, I can't see my Measures and Dimensions. I guess it is because of the Version.
    My Questions are:
    - Is there any BI Spreadsheet in Version 11?
    - Is there any other Reporting-Possibility with another Tool for Oracle 11g? I couldn't find anything yet.
    I am very happy, if there is anyone who can answer my questions.

    I have no knowledge of BI publisher but if you install OBIEE then you will have option to install BI publisher also. You can download OBIEE from here.
    After installation you can look at following post to see the set up required to access olap cubes.
    http://www.oracle.com/technology/obe/olap_biee/index.html
    OBIEE install/user documentation -> http://download.oracle.com/docs/cd/E10415_01/doc/nav/portal_1.htm
    Thanks,
    Brijesh.

Maybe you are looking for

  • Macbook pro retina quit working with external displays

    Just got a new external display, and can't get it to work with my MBP. I tried it via the mini display port and also via the HDMI connection. Then I tried to use my flatscreen tv just to test things out via HDMI and now that doesn't work either, I've

  • Newbie on Touch... Question of File structure and file

    Hi, I am usually a windows / windows mobile user, but have got a "touch 4" for musical reasons. The apps are simply much better. However I am struggling to copy my Midi files across. In windows you can simply copy the ".mid" across to a folder and th

  • HT4759 lost all of my picture in icloud

    hello i lost all of my histroy  of all my picture how get back up ?

  • Problem when using Polygonal lasso tool

    Hello. Im just trying to create a simple triangle, but photoshop creates other chapes in addition when create it. Please see my attached image. The shape i created is the triangle, and photoshop put in the rest. This only happens when the shapes I cr

  • PLaylist problems with 5.01 PLease help

    Hi All, Not sure if its related to the version or not.....I have tried all sorts. I wiped the ipod and deleted the itunes folder, then did a fresh install.. I created some play lists and updated to the new ipod fine.....I then added some more playlis