Reg external Summary tables

Hi
I am using Disc Release 4.1
I have registered a external summary in the Discoverer admin addition against my folders. My database version is higher than 8.1.6.
I made sure that The options
"Available for queries" = Yes
"when do u want to use summary data" is set to "always, whenever available"
are selected.
But when i try to generate reports and try to see the execution plan it is querying the base tables rather than the external summary table.
How do i solve that?
Thanks in advance

Hi
I am using Disc Release 4.1
I have registered a external summary in the Discoverer admin addition against my folders. My database version is higher than 8.1.6.
I made sure that The options
"Available for queries" = Yes
"when do u want to use summary data" is set to "always, whenever available"
are selected.
But when i try to generate reports and try to see the execution plan it is querying the base tables rather than the external summary table.
How do i solve that?
Thanks in advance

Similar Messages

  • Summary Tables in Disco 3.1

    Using the Summary Wizard, I only have access to "Registering an external summary table". The other options are greyed out. How can I use the other options??

    Within the Discoverer User Edition:
    Tools -> Options -> Query Governor
    Then uncheck the record limit.
    Good Luck,
    Christopher

  • Invalid External Summary

    Hi all,
    "Invalid External Summary - External summary is referenced in the summary definition".
    During creation summary folder with step-1 "I want to specify the summary meself". step-2 "Registering an external summary table". Step -3 I tried to mapped the item and got the error
    And the "Have Discoverer recommend and create the best summaries" option slways disable in administrator. Please tell me how i can enable this option? I have granted all the priviliges according to the manual. Create table, view, procedures, alter, drop any materialized view etc.
    Regards
    Hassan

    Hassan -- please identify the complete versions of Discoverer and the DB you are using.
    Thanks,
    Discoverer PM

  • ODI XML data server error while creating External databse tables.

    Hi,
    i am trying to create External database tables using XML data server.
    i am getting the following error,i have done this same thing for small xml files before.
    Java.sql.SQLException: ORA-00904: : invalid identifier
         at com.sunopsis.jdbc.driver.xml.bz.execute(bz.java)
         at com.sunopsis.jdbc.driver.xml.ca.execute(ca.java)
         at com.sunopsis.xmlfifth.b.u.a(u.java)
         at com.sunopsis.xmlfifth.b.bj.a(bj.java)
         at com.sunopsis.xmlfifth.b.bj.a(bj.java)
         at com.sunopsis.jdbc.driver.xml.u.a(u.java)
         at com.sunopsis.jdbc.driver.xml.u.g(u.java)
    Thanks,
    RK

    RK,
    With no details of how you configured the XML server, what were the parameters used in the configuration for using external database, etc, I dont know how much can someone help you.
    This is an Oracle error, so a few things that could be problematic with your "big" xml -
    1.) An element name could be of length > 30 characters (Oracle table name length limit is 30)
    2.) There are some special characters in the element name
    3.) Element name begins with a Number
    4.) Element name is an Oracle reserved word.
    This list can go on.

  • How to link a summary table

    Post Author: strife
    CA Forum: General
    I am using Crystal 10 and trying to develop a donor percent participation report, comparing donors to total number of class members (donors per class/good addresses per class) * 100.  The number of class members comes from a summary table of good address counts that remains static throughout the year.
    1)      I can create a view for the good address counts but Iu2019m unclear as to the way to link this view to the table of donors.  I canu2019t link ID to ID since itu2019s a summary and doesnu2019t have a row per ID (I need address counts for ALL IDs not just the ones who are donors). 
    2)      If I put the view in a subreport, I get only one result not a count for each group which is class year. 
    3)      If I put the subreport in the class year group to get a result returned for each class but the subreport creates unwanted blank rows in the export to Excel.
    I am looking at the last option but wonder if there is some other way that Iu2019m overlooking.  Any help is appreciated.

    Here is the video!  and it works for 2010.  It shows you how to put the pivot wizard that you need on the ribbon.
    https://www.youtube.com/watch?v=pUXJLzqlEPk
    Excel Pivot Tables: How to flatten a cross tab table
    Note:  the above instructions for 2007 and 2003 work as well BUT you must let go of the "alt" & "d" when you press "P"!

  • How do I display an invalid zip code in a summary table

    On my airshow website we have a feedback form, one of the questions is the zipcode where the visitor came from. This works fine. The summary results tab includes a lookup for the zipcode where I show the city associated with the zipcode and then how many responses came from that zipcode. This can be seen here http://www.hollisterairshow.com/feedback-results.php?tab=7
    In testing, I found that an invalid zipcode is not displayed in the summary table, although it is counted in the total number of responses. I'd like to display the invalid zipcode and leave the City blank, or maybe put "Invalid zip code". The current code is displayed below, it's beyond my ability to figure out how I should change it to display invalid zipcodes and I'd really appreciate some direction on this.
    I know I could validate the zipcode on entry but it's quite possible the zipcode table I have is out of date and i can't find a free downloadable list, so I'm thinking anything invalid could cause me to update my table.which is fine.
    Thanks for any assistance.
    Tony
    <div class="TabbedPanelsContent">
    <?php
    // Make a MySQL Connection
    $query = "SELECT feedback.zip, COUNT(feedback.zip), zipcodes.citystate FROM feedback, zipcodes WHERE feedback.zip = zipcodes.zipcode GROUP BY feedback.zip";
    $result = mysql_query($query) or die(mysql_error());
    // Print out result
    while($row = mysql_fetch_array($result))
    echo $row['zip']. " ". $row['COUNT(feedback.zip)']. " ". $row['citystate'];
    echo "<br />";
    ?>
    </div>

    Use an outer join on the two tables so that results are returned for all feedback rows, instead of just matching rows. The column zipcodes.citystate will be NULL. In your recordset output, you can test for null in the column and populate it with "Invalid Zipcode" if you want.
    You'll need to move the join to the FROM clause as I believe that MySQL does not support outer joins in the WHERE clause like most other DBMS's.

  • Report Summary table

    Hi
    I am tasked with producing an automated version of a manual summary table that is built in Excel.
    The data is derived from a single reporting table.
    My problem is going about how to design such a table.  Please see the image attached to get an idea of what i'm after.
    It's like I'm after a double grouping of data - one for the rows and one for the columns, but I don't know how to implement one.
    Should I just insert a row for each summation into the table that first begins with the row title?  eg
    VALUES ROWTITLE, SummedInfo2012, SummedInfo2013 etc....
    Or is there another way about this?
    Thanks.

    Well, keep guessing
    select type, value
    from (select
            sum(cast(fault as int)) as
    fault ,
            sum(cast(nonfault as int)) as
    nonfault ,
            sum(cast(dispute as int)) as
    dispute 
          from t1) as agg
      unpivot(value for type in([fault ], [nonfault ],
    [dispute ])) as u;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • CO-PA: Can we activate Movement Types in the summary table of CO-PA

    Hi SAP Financials experts,
    Are we able to activate Movement Types in the summary table of CO-PA when we extract into BW? At the moment, I understand that we are only pulling in YTD
    Thanks

    Hi
    I dont think Mvt Types can be activated in COPA summary table.. Have never heard of this
    Br, Ajay M

  • Summary Tables for Asset Master?

    I need to create an asset/insurance data report, using SAP Query, which shows the asset master record balances only (acquisition and posted depre'n) as at report selection date. 
    Are there any summary tables for fixed assets that are equivalent to GLT0, KNC1 and LFC1 for GL, Customer and Vendor? 
    Thanks in advance for any assistance.
    Best regards,

    I am not sure about ANEP or know how to use it.  It only has data records for the fiscal year when there is posting to acquisition values field u201CAmount postedu201D for the asset. No data records for other years with posted depreciation.

  • Tcode for setting FI-SL planning: Summary table name

    can any body suggest Tcode for  for setting FI-SL planning: Summary table name.

    Hi,
    Check Tcode : GB01.
    CHECK THESE ALSO,
    GLPLINST.
    GLPLINSTALL.
    THANKS,
    REWARD IF HELPFUL.

  • Summary Tables

    Hello
    We are using Oracle 10g rel2 and have a table called transactions. There are millions of rows in this table and we would like to build a summary table that will sum the PNL by day. At some point we will purge data which is older than 60 days but need to be the summary totals by day. What is the best way to accomplish this. Materized views rely on the master table and that table will have data purged out of it, so I do not think it will work.
    Transaction table has column transaction_date , cost,sale
    We want a summary table of TRANSACTION_DATE,SUM(SALE - COST) AS PNL
    GROUP BY TRUNC(TRANSACTION_DATE)

    Danny G wrote:
    Hello
    We are using Oracle 10g rel2 and have a table called transactions. There are millions of rows in this table and we would like to build a summary table that will sum the PNL by day. At some point we will purge data which is older than 60 days but need to be the summary totals by day. What is the best way to accomplish this. Materized views rely on the master table and that table will have data purged out of it, so I do not think it will work.Not a problem with materialized views.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/refresh.htm#sthref888
    You do need to be strict about here about process control though:
    * suspend modifications to transaction table.
    * refresh the MV.
    * purge the old transaction data.
    * CONSIDER FRESH on the MV.
    * restart modifications to transaction table.

  • Linkig FI-SL Summary Table in Transaction FSI1

    Hi,
      I'm trying to create Balance Sheet Report on FI-SL. I do not see any option on how to link summary table to the report. We are in ECC 6.0. Any help is appreciated.
    Thanks,
    Trinadha

    Hello Trinadha,
    The linkage will be created / established when you create your library, sets and variables as well as when you specify  the FI-SL ledger in the columns of the report.
    For instance when you create a library, you need to enter the FI-SL summary table.  The linkage is then established when you enter the report and the report group in the said library.
    Refer back for any other clarifications.
    Elias

  • How to poll data with DBAdapter using external sequencing table usecase ?

    Hi,
    When I'm polling for data using the 'update external sequencing table on different db' with a dbadapter, I'm getting this error ORABPEL-09903
    My sequencing table is present in another schema. I created the connection pool and data source for the same and provided it as a credential to the adapter when it asked for data source. But my process is not getting deployed. The complete error it's giving is as below :
    [deployProcess] Deploying process E:\Softys\jdev\jdev\mywork\Test\PollExternal\output\bpel_PollExternal_1.0.jar
    BUILD FAILED
    E:\Softys\jdev\jdev\mywork\Test\PollExternal\build.xml:79: A problem occured while connecting to server "ple-jgau.us.oracle.com" using port "7777": bpel_PollExternal_1.0.jar failed to deploy. Exception message is: ORABPEL-09903
    Could not initialize activation agent.
    An error occured while initializing an activation agent for process "PollExternal", revision "1.0".
    Please ensure that the activation agents are configured correctly in the bpel deployment descriptor (bpel.xml).
    oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException
    at com.collaxa.cube.engine.core.BaseCubeProcess.startAllActivationAgents(BaseCubeProcess.java:370)
    at com.collaxa.cube.engine.deployment.DeploymentManager.activateDefaultRevision(DeploymentManager.java:1577)
    at com.collaxa.cube.engine.deployment.DeploymentManager.setDefaultRevision(DeploymentManager.java:1536)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:886)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(DeploymentManager.java:728)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainManagerBean.java:445)
    at sun.reflect.GeneratedMethodAccessor152.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:646)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:319)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:341)
    at deployHttpClientProcess.jspService(_deployHttpClientProcess.java:376)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Total time: 20 seconds
    Any help regarding this would be highly appreciated.Please provide me with any link to the documentation for DBAdapters,Polling and its different Usecases.
    Thanks,
    Bhavya

    Hi there,
    this exception just mentions that the process failed to deploy, but it does not explain why. Could you look at the bpel logs, and find the complete exception stack trace with linked exceptions?
    This is a common trouble shooting problem as the process deployer doesn't show the linked exception. Please look at the best practices guide:
    http://download.oracle.com/technology/tech/soa/soa_best_practices_1013x_drop3.pdf
    Under DBAdapter there is a section on how to troubleshoot the adapter. Search for "Find the Root Exception". It is on Page 130.
    Thanks
    Steve

  • Discoverer and Standby Database Summary Tables

    Are there any known problems with Discoverer attempting to write to read-only Standby database summary tables? Has anyone been successful running Discoverer against a Standby database?
    Regards,
    Chad

    I have not used synonyms in our system, but they can be accessed by creating custom folders in admin. In general, Custom folders are created to build complex query using advanced SQL which cannot be handled by discoverer end user editions. Custom folders can use tables, views, or synonyms.

  • Need of aggregated dimension to use summary tables

    Hi,
    I have two fact tables workdetail and worksummary. Worksummary is aggregated to month in time dim and workdetail is at timedim day level.
    Now i configured my business model with timedim and work detail table.( created a hirerchy for time dim (year-month-day)). Now i want to use worksummary tables, how do i include this in my business model. I know creating new Logical Source and mentioning levels.
    My major doubt is do i need to create another physical table for Time-Month? or can i use same time dim physcial table to use with summary fact tables?

    the answer to your question is YES, To use aggregated summary tables, we need to have aggregated dimensions. Other wise data will be redundant and will return incosistent values.
    In your case if you use the same timedim-day level table with summary tables, data will be multiplied by 30 days beacuse of time-dim monthkey will be repeated in multiple rows.
    simplest solution is create view from Time_Dim table, select distinct year,month,monthkey. this view returns only unique year-months. so each month will have only one row.
    -> import view in your physical layer and create a join with summary fact table.
    -> Include the month table(which is view) in logical time_dim as another source,mention the levels.
    -> and include your fact table in logical fact table and mention the levels to month of time dim
    this will work. Let me know if i am not clear. Also we can wait for other experts comments.
    - Madan

Maybe you are looking for

  • Can't change Flash Player global settings

    Hello, I've had this problem about a year now and have been searching all over the internet for the solution. Ive seen it come up many times but it never fixes my problem, so I decided to just start a thread. I have: -Windows 7 Home Premium 64-bit -F

  • Issues in Data Transfer Process

    Hello All, After creating transformation from Infosource to InfoCube, now i am trying to data transfer process. In DTP Type it displays "DTP for direct process", but i need DTP type as Standard(Can be scheduled). Its giving me an error as "Source doe

  • ICA driver for Canon MX512 scanner?

    I've exhausted Canon Support, trying to get a Canon PIXMA MX512 multifunction printer/scanner/fax machine to work on my father-in-law's dual 2.0 GHz processorr PowerMac C5.  They do have a printer driver, downliaded from their website, that allows it

  • Disable button in alv tree

    Hi, I'm not able to disable a button that I added in the toolbar of an alv tree. Here is a piece of my code Add_Button     data: lr_functions type ref to  cl_salv_functions_tree.     lr_functions = mr_tree->get_functions( ).      lr_functions->add_fu

  • Web service connector's trouble

    I have created web service connector in portal, specified wsdl url. How i can use it in my java programm, like a integrating 3rd-Party search engines into KM index management or other? The likn(http://help.sap.com/saphelp_nw04/helpdata/en/e1/d0d240ca