Reg Sorting in Combined Request in OBIEE11g

Currently we are facing a problem in OBIEEE11g Combined Request where sorting is not happening on any column at all. Please note that sorting should be dynamic on which column the user selects based on the column property available. Sorting works for normal request but not for combined request.
Please advise if there is any way or workaround to resolve this issue. Thanks.
Edited by: user11008583 on Mar 25, 2013 12:46 AM

Thanks for your response. We have a requirement where the Column Sorting should happen on any column based on what user selects from UI. This is working for a normal request but not for Combined Request in 11g. Please provide your valuable inputs to resolve this issue.

Similar Messages

  • Reg Filter View in Combined Request OBIEE11g

    Hi,
         We have a requirement where we need to show the filter view in a combined request. Currently we have achieved the same but putting another request but the issue when the download of the request happens the filter view is not downloaded and it has to be downloaded separately. We are using OBIEE11g(11.1.1.6.9).
         Please advise if there is any workaround to achieve this functionality so that download of results and filter view can be achieved in one shot. Thanks.

    Dev,
    Not possible to use the filter view in union request.Try creating the filters with filter view as a separate request and add them to the dashboard.
    Rgds,
    Dpka

  • Outer Join or Combine Requests

    I have tables A (Account), B (Measures), and C (Time). I want all values from table A to appear in queries regardless of data or lack of in the other tables. I have created a left out join from A to B and this works fine...until I need to query on year from table C. (B and C have an inner join.) Querying on year form table C is mandatory, but when I do so I don't get any Account data. I can get this to work in SQL if I nest a select statement joining B and C (and then A left outer joined to nested B/C select statement)...but i can't find a way to do this in Answers. The SQL on the advanced tab is not at this level. Any suggestions? Is there a way to do this in Answers at the report level—maybe by combining requests?
    Thanks in advance for any suggestions!!

    Are you looking for a continues time line?
    http://obiee101.blogspot.com/2008/03/obiee-continues-time-line.html
    HTH
    John
    http://obiee101.blogspot.com/

  • Filer view for combine request

    Hi ,
    can any one help me to get filter views for combined request reports. As normal, when we use filter view with combine request then , it doesn't show us what value we have selected in dashboard prompt. so i need alternate approach, for showing dashboard selection with combined request reports..
    Thanks
    Deepika

    i think creating prompt in sql would not help as i m using exixsting prompt and creting all prompt is not good.. tat too would not help for shwoing like filter view in combined request..
    Edited by: Deepika Sinha on Jul 17, 2012 11:12 PM

  • Filter view for combined request

    Hello!
    We have 12 requests combined to the single Answer's request using UNION. Each of these 12 requests has a filter. But when we try to display the filter view for the combined request, it says "Request contains no filters". Any ideas how to display the big "combined" filter?
    Thank you!

    I am assuming that the columns in each of your 12 individual queries are the same and you just have different combinations of filters to produce your final query. If so, try building this using one query and using the OR operand for each set of criteria that corresponds to the 12 different sets of filters. This way the filters will show up in Filter View.
    If the columns in the 12 queries are simply the same datatype (minimum requirement), but different, then how would the user know which filter set corresponds to which set of columns since the "final" query will have one name for each column? It would be confusing at best. The only thing I can think of is having 13 queries, 12 individual ones and the one "combined query."
    In your dashboard, display the "combined query" in the Compound Layout view in the usual manner. Underneath that query in the design mode of your dashboard. Add the 12 individual queries but only display the "Filter View" of each query.
    With just the combined query, nothing will display in Filter View as you surmised.

  • Using filter view in combined request.

    Hi,
    I want to see the filters used in a combined request in a filter view which I am unable to. Can anyone help me with this?
    Regards,
    Dev.

    Dev,
    Not possible to use the filter view in union request.Try creating the filters with filter view as a separate request and add them to the dashboard.
    Rgds,
    Dpka

  • I have Photoshop Elements 7.0 and when I go to sort the photos in order (from oldest date) I keep getting the message "Photoshop Elements 7.0 has stopped working" and then the program closes.  Sometimes, eventually it has sorted as I request but today thi

    I have Photoshop Elements 7.0 and when I go to sort the photos in order (from oldest date) I keep getting the message "Photoshop Elements 7.0 has stopped working" and then the program closes.  Sometimes, eventually it has sorted as I request but today this has been rejected over 15 times.  What is wrong?

    Try the licensing service update:
    http://helpx.adobe.com/creative-suite/kb/error-licensing-stopped-windows.html
    EDIT I see that maybe you did (is that the patch you mean? ); if so, try the other suggestions there.

  • Prompt for a combine request

    Hello experts,
    I want to know that is there possible to create a prompt for a column in a combine request which associated the different attributes in each request?
    For example:
    Request 1 has column: Installed date
    Request 2 has column: Unstalled date
    In combine request, this two columns associated the column Date
    and in the combine request, i want to create a prompt for the column Date, is that possible?
    Thanks

    Hi,
    create a prompt for date column from your time dimension and set a presentation variable v_date...
    on reports don't use is prompted for what date coumn you need, just say 'is equal or is in' add presentation variable and set to v_date..
    if you find this post usefull please be free to award points
    Regards
    Nicolae
    Sorry Kart... you were faster.. (didn't sow your post)
    Edited by: Nicolae Ancuta on 02.06.2010 16:07

  • Applying filter in combined requests

    Hi all,
    In obiee 11g how can i apply filter when combining similar requests. I need to filter data from both the requests.
    Thanks in advance

    Use presentation variable while creating page/dashboard prompt and filter both the requests based on it.

  • Sorting a combination of two longs using a comparator

    Hello to all,
    I need to implement a comparator that will take as input an object containing two longs, combine them and sort them in the form a.b, where a is the first long and b the second, first by a and then by b. (eg.1.2, 2.8, 1.5, 2.4, 3.4, 3.3, etc... becomes 1.2, 1.5, 2.4, 2.8, 3.3, 3.4, etc..)
    Is there a way to achieve this?
    Thank you in advance!

    like this?
    class LongComparator implements Comparator {
      String delimiter;
      public LongComparator(String delimiter) {
        this.delimiter = delimiter;
      public int compare(Object o1, Object o2) {
        String[] s1 = ((String) o1).split(delimiter);
        String[] s2 = ((String) o2).split(delimiter);
        Long l1s1 = Long.valueOf(s1[0]);
        Long l2s1 = Long.valueOf(s1[1]);
        Long l1s2 = Long.valueOf(s2[0]);
        Long l2s2 = Long.valueOf(s2[1]);
        if (l1s1.compareTo(l1s2) == 0) {
          return l2s1.compareTo(l2s2);
        } else {
          return l1s1.compareTo(l1s2);
    }

  • Reg: Sorting

    Hi all,
    we have builte a report on EBS Statisitics using following columns
    Organization Code, Organization name, Fiscal Week, Fiscal year, Row Count.
    Actually this report is being pulled directly by using one table ie. EBS Satistics_G (i.e. directly pulling the data from the SQL query we have overwritten at Source Extract Level i.e SDE)
    Now in this table EBS Satistics_G we are having these columns (Organization Code, Organization name, Row Count, Run Date)
    So for displaying fiscal week in the report we have used CONCAT('FW ', CAST(WEEK_OF_YEAR(" EBS Statistics"."Run Date") AS char)) and for displaying Fiscal Year we have used YEAR("EBS Statistics"."Run Date") .
    Now we are facing issue with the Fiscal Weeks Sorting. When we select Fiscal year 2012 fiscal weeks are showing up FW1, FW10,FW2,FW3,FW4,FW5,FW6,FW7,FW8,FW9.
    but when we select fiscal year 2011 we don't have any issues as we are having data from FW15 to FW 52.
    So is it the problem with this formula CONCAT('FW ', CAST(WEEK_OF_YEAR(" EBS Statistics"."Run Date") AS char)) .
    Now our requirement is to show all the fiscal weeks in Sequence.
    Kindly help

    I answered this question when you asked it the first time. Look at part II of my answer. If you don't want to display the formatting I have, you can put this column at the far left, apply the sort, and then hide it.
    Re: Reg; Current Quarter and Past Quarter

  • Error while sorting in combination with xdofx in rtf template

    I'm trying to sort my invoices in a rtf/xml template.
    To do so I used a statement I found on google:
    <?sort:xdofx:lpad(H_FACTUUR_NR,15,’0’)?>
    The error is:
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
         at RTF2PDF.runRTFto(RTF2PDF.java:629)
         at RTF2PDF.runXDO(RTF2PDF.java:442)
         at RTF2PDF.main(RTF2PDF.java:289)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'xdofx' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:806)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:571)
    Any advise?
    Best regards,
    Joost.

    I used the following XSL and its Working !
    <?xdoxslt:xdo_format_date($_XDOXSLTCTX, "YOUR COLUMN",'DD-MMM-YYYY HH12:MI:SS AM')?>

  • Reg: Sending a Soap Request

    Hi,
    I am doing a Soap to RFC Scenario. I created a webservice in WebDynPro using NWDS and deployed that in local machine. I would like to send a soap request. How can I send it, if I have only NWDS??

    Hi,
    >>> I created a webservice in WebDynPro using NWDS and deployed that in local machine
    There are 2 ways while dealing with a webservice (same with any other adapters)
    a. Webservice at the sender side.
    b. Calling (invoking) the serivce of an existing webservice.
    If you want to create a scenario as in option <b>a</b>
    In this case, the sender is not actually a webservice, rather it is a client (webservice client) that invokes the webservice. The actual webservice in this case is your XI server. But again XI server is not a webservice. All XI does is understands the webservice client request and converts it to a XI message and does the operation.
    If you wish to do such a scenario, there are guides available in SDN, (How to expose your outbund interface as webservice, How to Soap Adapters). Follow them.
    Best Regards,
    Jai Shankar

  • Sorting table combine with Assending n DESCENDING  value

    Dear All ...
    i want to sort by table  with some field.  which some of the field in assending  n some in desending.
    example: this my table itab .
                 1.1.09       a            H 
                 1.1.09       c            H
                 1.1.09       c           S
                 1.1.09       a           S
    after sort  become
               1.1.09       a          S   
               1.1.09       a          H   
               1.1.09       c          S   
               1.1.09       c         H   
    from above sample ....... 1st n 2nd value is sort in assending , but 3th sort in desending ....
    any idea ?

    Hi,
    Try this,
    DATA: BEGIN OF itab OCCURS 0,
            f1(15) TYPE c,
            f2(15) TYPE c,
            f3(15) TYPE c,
          END OF itab.
    itab-f1 = 1.
    itab-f2 = 'a'.
    itab-f3 = 'H'.
    APPEND itab.
    itab-f1 = 1.
    itab-f2 = 'c'.
    itab-f3 = 'H'.
    APPEND itab.
    itab-f1 = 1.
    itab-f2 = 'c'.
    itab-f3 = 'S'.
    APPEND itab.
    itab-f1 = 1.
    itab-f2 = 'a'.
    itab-f3 = 'S'.
    APPEND itab.
    SORT itab by f1 f2 f3 DESCENDING.
    LOOP AT itab.
      WRITE:/ itab-f1, itab-f2, itab-f3.
    ENDLOOP.

  • Reg:Invoice to creditmemo request settings

    Hi Gurus,
    We are maintaining copy controls for generating credit memo requests with reference to problem originated invoice.For this i have done all copy control settings but while raising the credit memo request its giving G/L Account missing in incompletion log.Is there any thing still i need to do in revenue account determination ?
    Help me on this.
    Regards
    Sash.

    Dear sash 
    I think you need to check in Inclmpletion log for credit memo request document which you are using.
    I hope you know how to check Incompletion log.
    Reward if you feel good.
    Regards,
    Srikanthraj

Maybe you are looking for

  • Outage in my Area - now constant flashing Orange l...

    Apparently, last night my internet went down and was area specific.  Since then it's been repaired, but my HH3 refuses to connect.  My OpenReach modem has 3 solid green lights, but my 'b' on my HH3 is constantly flashing Orange.  I've Reset my modem,

  • Imported album is split in two sections

    I have an album titled "II" and it puts songs 1,2,5,11,12 and 13 after the album titled "III". How can i make it so the whole album is together? I've tried to re-import it but that does not work. Actually it was a folder on my comp that was added to

  • HT1710 password doesn't work after archive and install

    I was advised to do an Archive & Install, without preserving info to see if it would fix a weird slowness issue. I just did the Archive & Install, and when it restarted, it showed my name and photo, but it wouldn't accept my password. I can't login.

  • How do i find past playlists?

    Hi all , new here. Im just wondering where you can find past premade playlists by iTunes, for example i saw those iTunes made lists of Workout songs sponsered by Nike or something, just want to know here I can find these types of playlists again, thx

  • Workspace Hangs - V11.1.1.3

    Hi All, We are able to open EAS,Planning,Shared services.....but workspace is not opening at all.... When we type in the workspace URL and enter ....it just hangs in there...... We are in 11.1.1.3 Version. Essbase,Sharedsrvices,Planning,Reporting all