Filter problem in combined analysis

Hi
I have the following scenario
i made one criteria1
channel id ,sum(sales) with filter channelid=direct
i made second criteria2
channel id ,sum(sales) with filter channelid=indirect
Then i combined all the two criteria with union all operator in combined analysis
but i only got the result of second criteria.
the combined query is taking the second query with filter.
but i want the first query result also,pls help
regards
Obiee fan

Did you try to extract the SQL from the union report and run it against the database to see if you are seeing the results that you want? This might be because of an in appropriate joins in the RPD. Just another thought, instead of creating two different reports and having filter on the same column in both reports, why do you not create one report and filter the criteria there? for ex: channel Id is equal to direct and in-direct? This would avoid all the extra work right?
Regards,
-Amith.

Similar Messages

  • Dashboard Prompt to filter multiple Subject Areas (in a Combined Analysis)

    I have a Combined Analysis where I am combining multiple Subject Areas. I want to add this report to a dashboard to use a dashboard prompt to filter by the Year.
    The problem I have is because the 'Year' value in each subject area has a different Column Formula ("Close Date"."Calendar Year" and "- Custom Number/Integer (Custom Object 2)".INDEXED_NUM_0)) I'm unable to have a single 'Year' prompt filter both Column Formulas.
    I have it currently working by creating two dashboard prompts - one for each subject area - that each ask for the Year to filter by.
    Is there a way to have a single prompt for Year and somehow have that filter both subject area's 'Year' value?

    I have tried a bit with no luck.
    In the Dashboard Prompt on that 'Year' filter I set the Presentation Variable to 'FILTER_YEAR'.
    I then set the filter in the report to be Equal to a Presentation Variable with the Variable Expr set to 'FILTER_YEAR'.
    When I run the report and enter the filter year it doesn't bring back any data for that report.
    Anybody have experience using the Presentation Variables?
    Thanks

  • Combined Analysis & Prompt

    Hello,
    I have built a combined analysis (7 simple reports) which display the number of actiities linked to a customer and/or account and/or Custom Object4.
    I have set a filter on the creation date (Superior to CURRENT_DATE-10). The performance is great and the report works fine.
    Now, I would like to be able to choose a period (Year + Month). But not only the current one. I want it to be flexible (Not hardcoded in the filter).
    Unfortunately, the prompt functionnality is not compatible via combiend analysis.
    Do you know any tips that could help me?
    Thanks in advance,
    Laurent

    Hey Laurent,
    You could think about mounting your report on a dashboard page. Then you can include a dashboard prompt to filter the results.
    This is still tricky because the field 'Created Date' will be different for each entity. E.g. the field Account.Created Date will have a different physical reference to Opportunity.Created date, this will make prompting tricky as you really need to be promoting on multiple created dates rather than just the one and the dashboard prompt is still filtering the underlying reports and not the summarised report view.
    1. I would suggest you create another report which just has 'Date' in it. Create this in the 'Account History' subject area (because it includes all dates rather than those with corresponding data). Set your dashboard prompt to filter on this subject area and the Date fields. This effectively gives you a dashboard prompt and a report which enables you to select a date range.
    2. Now mount the report and dashboard prompt on the same dashboard page and check the filter works. When this works go each of your 7 simple reports and create an Advanced filter for every created date (Click the filter icon on the 'Create Date' field for that report, select Advanced Filter, then - Filter Based on Another Request) Then reference the report you created in step 1 and the Date field for the Created Date in your report, use the 'Is Equal To Any' operator. Save all this...
    3. Now mount your combined report on your dashboard page as well. When you now select a prompt you're filtering the new report you created which in turn filters each of the 7 results and shows the correct date range in your report. You can use guided navigation to hide the new report you created from the users on the dashboard page.
    The 'Is Equal To Any' operator isn't great so I would recommend looking at is greater to etc but you can play with that (it wont select more than 1,064 individual dates without returning an error). You can also have a play to include month using the same method. This is a lot of effort to be honest so I would also ask the business whether 'Created in the Last 3 months' or 'In the last 4 weeks' hard coded filters would work. I would recommend this approach to be honest.
    Hope this helps...
    Oli @ Innoveer

  • Filter based on another analysis need to run as a seperate query obiee 11g

    Hi,
    I have a main report which has a filter condition that depends on the another request(Created through Filter based on another analysis).The Filter based on another analysis report query comes as a embedded query along with the main query (making a subquery).As it has a subquery it is taking more time to fetch data.
    Is there any possiblity of running the Filter based on another analysis report as a seperate query.
    Please suggest.
    Thanks,
    Soukath

    Hi,
    Make sure one thing,u have eanble check box and submit sql button in the bottom of Advanced tab then save it and try again it will work.
    refer:
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Thanks
    Deva
    Edited by: Devarasu on Dec 19, 2011 11:59 AM

  • TIMESTAMPDIFF function in combined analysis

    Hello,
    Has anyone used the timestampdiff function in a combined analysis? I have created a combined analysis with using two subject areas and tried using the timestampdiff function in the results section but its not giving me the right results. I am using timestampdiff(sql_tsi_day, saw_5, saw_3).
    Any help is appreciated.
    Thanks!
    Sonia

    I guess you can use TIMESTAMP functions in result columns. The only case where you may hit an error is when one of the columns(say saw_5) is having a null/blank value for the corresponding value in saw_3.

  • Combined Analysis related question

    Dear all,
    I have a requirement from my customer as follows:
    - Display the list of opportunities split with Estimated order taking by Type (New business, Development on existing customer, Contract Renewal) and by Sales Stage with an indication of the forecasted turnover for the current year next to the Estimated order taking.
    Forecasted turnover is stored in an oppty related object (Assets) which has been configured to support our need (Business need is to have a forecast year after year and to have an estimated turnover for the year).
    Anyway, the aim is to have a list of oppties that should look like this Mockup
    I tried a combined analysis with 2 reports :
    - First report is the full list of Opportunities
    - Second report is the list of opportunities with a line of Forecast for 2012
    I select UNION and the result is not the expected Mockup, the Oppty Revenue and 2012 Forecast columns are duplicated.
    Can anyone please advise on the right way to perform this?
    Thanks in advance,
    Charles DUBANT.

    Hello, I would like to verify if my explanations here
    are correct. ( I believe they are, after some
    experimental tests, but just in case)
    In a XOR statement, both expressions are evaluated,
    but are the alterations to the x variable permanent,
    even if the if statement is false and hence doesnt
    ever run? I mean there could be a complicated boolean
    condition that alters variable x for the if statement
    to be evaluated. When/if that statement eventually
    evaluates to false, the expression following the if
    will never run... But is the variable x permanently
    altered? Say, for code that follows later in the
    source file?-- So when conditionals are evaluated,
    regardless of the outcome (tru or false) any
    alterations to variables remain. I think thats true.
    Thanks for any input.If you change the variable's value in the process of evaluating a conditional then yes, that value will remain. However, XOR does not change the variable's value. The only thing I see modifying variables is your prefix and postfix unary operators.

  • How to add Saved Filter to my new analysis, not in left side catalog pane?

    I have set up a set of filters which i have saved in the /Shared Folders/Filters directory (i created a Filters directory there). The analysis where i created this saved filter works just fine.
    Now i start a new analysis and i try to add the filter by navigating within the Catalog pane in the lower left corner. But there isn't anything in there by the few top level directories. I don't see any other objects, including sub-folders, analyses, etc.
    I don't understand why i do not see anything at all. When i use the top/main Catalog link, of course i see all sorts of analysis, filters, prompts, etc., which i have in my environment.
    How can i add my Saved Filter to my new analysis if i can't find it in the Catalog pane, and why is that (or anything) showing up in that pane?
    Thanks.

    user12602240 wrote:
    I have set up a set of filters which i have saved in the /Shared Folders/Filters directory (i created a Filters directory there). The analysis where i created this saved filter works just fine.
    Now i start a new analysis and i try to add the filter by navigating within the Catalog pane in the lower left corner. But there isn't anything in there by the few top level directories. I don't see any other objects, including sub-folders, analyses, etc.
    I don't understand why i do not see anything at all. When i use the top/main Catalog link, of course i see all sorts of analysis, filters, prompts, etc., which i have in my environment.
    How can i add my Saved Filter to my new analysis if i can't find it in the Catalog pane, and why is that (or anything) showing up in that pane?
    Thanks.Is the new analysis in the same Subject Area? Saved Filters are tied to Subject Areas so if the SA is different, you won't see it.

  • Building Combined analysis reports

    Hi, I am new to Oracle Crm on demand and I working on building reports. I have a requirement where I require to create a combined analysis report but I completely don't understand how to display records in a single row. I am using a pivot table to display records in a single row and I am dropping the columns, which I think will have a null value in one criteria, in the measures area and changing the aggregation rule to max. Doing this way it only gives me max value of the record set but I require all the values to be shown in my report. How would I go about displaying all the records from the record set in the pivot table column?
    Thanks, in advance.

    In Version 17 there is a current bug within combined reporting i would also suggest you cover this before creating the report. More information on combined reporting can be found in the help and training section

  • GRC5.2 - SCC - Combined Analysis

    Is it possible in CC5.2 as it was in CC4.0?
    Thanks in advance
    Claudio

    Hi
    The combined analysis in CC52/53 works only for role level.
    There is not direct way to achieve this but you can run combined analysis based on simulation.
    The simulation in 52/53 works on principals of combined analysis.
    Here is work around for it :
    in CC52/53;
    Go to Informer > Risk Analysis > Role Level.
    Select the system for which you want to run analysis .
    Select one of the roles .
    down below in the page , click on simulation button .
    select type = Role .
    for Values field , Select the Yellow arrow.
    Type in the list of single roles for which you would like to do combined analysis .
    Execute it .
    You will get what u wanted.
    cheers!

  • Fetch the result in combined analysis

    Hi
    I have created a combined analysis report. Now in the final report I need to find the percentage of two column .each coloumn coming from the 2 reports. How can i write the function for the same.
    a simple division is giving me wrong data.Kindly help me with the issue.
    Thanks
    Meena

    This may sound like lot of effort, but will definitely work.
    Create a static text. There write a piece of code to read the rows, columns displayed. and to script
    on the field that you want navigation code as on click of column, document.location.href = "url of the report with appropriate parameters"
    td = document.getElementsByTagName("td");
    for(i= 0;i< td.length; i++)
    td.onclick = function (){
    document.location.href = "url of the report with appropriate parameters"
    Let me know if you need more explanation.

  • Contact coverage rate report(very complex, combine analysis)

    Hi experts,
    we have a KPI to measure the contact coverage base on segmentation.
    the business scenario is as following:
    1. We have 4 segments for tcontact, A, B, C, D. it is the custom filed in contact object;
    2. my contact: if I am in the contact team, even I am no the owner of the contact, the contact is also mine;
    3. My visited contact: the contact associated with activity which the owner is me;
    The seg A contact coverage rate = # of my visited contact with seg A / # of my contact with Seg A;
    The difficulty is it is in different report subject area. my contact should be used "Contact Tem", my visited contact should be used "Activity history";
    Now I can use combine analysis to run out # of my contacts by count(contact id) in contact team; subject area and the # of my visited contacts by(count(distict(contact id))) in activity subject area. the question is how I can calculate the rate, it is on different row same column;
    Please help;

    Max,
    The report I am trying to achieve is like:
    Sales Rep, # of seg A contacts, # of Seg A visited contacts, Seg A contact coverage rate; # of Seg B Contacts, # of Seg B Visited Contacts, Seg B contact coverage rate;
    AAA, 20, 15, 75%; 25, 20,80%;
    thanks

  • TOPN filter on two combined cubes

    Hi guys,
    do you know how to apply a TOPN filter on two combined queries like the one below:
    SELECT saw_0, saw_1, saw_2 FROM ((SELECT Companies.Company saw_0, "Non Revenue Facts".Rooms saw_1, "Local Revenue Facts"."Room Revenue" saw_2 FROM COMPANY) UNION (SELECT "Travel Agent".Travel saw_0, "Non Revenue Facts".Rooms saw_1, "Local Revenue Facts"."Room Revenue" saw_2 FROM TRAVEL_AGENT)) t1 ORDER BY saw_1 DESC
    The filter should be this one WHERE TOPN("Non Revenue Facts".Rooms,10) <= 10)
    I tried to apply it on each query, but doesn't give the expected results.
    the filter should apply for both queries.
    Any idea?
    Thanks!

    Hello User,
    When you are trying to implement on one query the TOPN function,Are u getting any error? Or just it is not showing the results?
    Do let me know the updates?
    Thanks.

  • Alv grid filter problem

    Hi all,
    I have a problem when filtering data in alv (I use REUSE_ALV_GRID_DISPLAY FM). The problem is that data is truncated in the matchcode of the filter.
    I've seen several threads talking about this, but was not able to find the right solution for me... a lot of notes, and I think I shouldn't have to install all of them.. should I?
    I followed this thread
    ALV filter problem
    but do not know the note installed by the asker in the end...
    Could anybody help me?
    Best Regards

    Hi,
    Please apply OSS note 898852.
    Regards,
    Bharadwaj

  • Combined analysis to show Opportunity records and all related Contacts?

    Hi All,
    I am trying to create an analysis that would pull up Opportunity records and all their associated Contacts, not only the Primary Contacts. I believe there is a way of doing this using Combined Analyses.
    Any suggestions will be of great help.
    Regards,
    Andy

    If you are using the out of the box fields defined for this purpose, both on the Product Revenue and Opportunity objects, then the Update Opportunity Totals button on the Product Revenue section would do it. If not then you'd need to go the Webservices way.
    Udaya

  • Combined Analysis Report - Grand Total

    Is it possible to have a grand total on a "Combined Analysis" report?

    I think you can use the Pivot Table view and show the sum of rows. If no digits appear in the metrics, set the Aggregation Rule to Sum.

Maybe you are looking for

  • Session Timeouts - User modifiable

    I'm looking for a way for a user to be able to increase their session & idle timeouts after logging in. I want the user to have to make the choice to increase them, every time they login. On checking the API we have getMaxSessionTime() and getMaxIdle

  • Newbie question (I think you can answer me)

    Hello. I am a newbie about EJB. But I am teacher of a Java course and I have introduced EJB to my students. I have said them that EJB is good for big applications but, when the application is small, is overkill (I read this in several books). But the

  • Clarification regarding start routines!

    Dear all, I would like to know what exactly the start routines are and how they can be used to manipulate the data coming into the BW system from the R/3 system. If anybody can explain it with an example I would be very greateful. Thanks. Regards, Su

  • To kill session in one schema from another schema

    Hi Team, I got a problem like a table from one of my schema has been locked. I am getting 'ORA-00054: resource busy and acquire with NOWAIT specified' error when trying to delete rows from that table or even when trying to truncate that table. Let th

  • Can't open Desktop app. "There was an error with this action.  Try again later."  How do I solve this?

    I've been trying to open "Desktop App" for a couple of days now.  I get the above error message.  "Later" obviously isn't going to work.  I've signed out of my account and signed back in, but that hasn't helped.  I can reach the App Mgr from PS, and