BI answers functions

Hi
is there any documentation about the functions in bi answers , I got trouble finding out how to calculate a percentage, I finally found this : measure/sum(measure by column).
I have trouble now using other functions , if any doc is available please help
thks
Edited by: L3ilm on Aug 12, 2009 11:50 AM

Well not errors , just can't do some things,
In my cube I have total clients by profile and by balance range(low , medium, high)
I added a calculated maesure : For a each profile the percentage of clients in each range :
client_count/sum(client_count by profile)*100
Profile                 High Medium  Low
PF1                    15% 70%     15%
PF2                    13% 66%     20%      
PF3                    15% 60%     25% Now I need to show the results in a table and gauge chart for the low range only, like this
Profile                 Low
PF1                     15%
PF2                     20%      
PF3                     25%When I create a filter in range dimension it gives me this result which I am not interested in :
Profile Low
PF1 100%
PF2 100%
PF3 100%
How can I hide results for the medium and high range without affecting results?

Similar Messages

  • DOES THE IPHONE 6 HAVE AN AUTO ANSWER FUNCTION

    I just bought a portable speaker for my iPhone for use in my shop.  It is not blue tooth and the phone must be connected to the speaker through the earphone jack.  The speaker has an answer function that interrupts the music for an incoming call and a microphone to facilitate hands free usage.  The big catch seems to be that I still must push the answer button on my iPhone screen to answer the call.  I hope I am missing something.  Does the iPhone 6 have an auto answer function?

    This seems incredible. How could Apple pass up such a basic function.  I don't have a car new enough to integrate with my phone so I just assumed that auto-answer was a common feature in all smart phones.  I seem to remember disabling this feature in an LG android phone several years ago.  What am I missing?

  • OBIEE Answers functionality questions

    Hi,
    I pretty new to OBIEE Answers orginally working with Business Objects XI Webi, I have read through the user guides for Answers but some functionality I would like thats in BO XI but doesnt seem to be avaliable in Answers, Im not sure if its not documented because its more advanced functionality or whether Answers just can't do it ? Is the following functionality avaliable in Answers,
    1. I want to build a report based on 2 queries and then link the data in these queries by a common dimension and display this data in 1 report, for example I have query 1 with fields A,B,C and query 2 with fields A, D, E, I want to link on field A as its common and in the 1 report display the fields A,B,C,D,E
    is this possible ? This is not the same as union / intersect, and is not the same as dashboard showing two query results, I want 1 table showing the results of two queries.
    2. Once you have you data set returned is there anyway to filter on the data displayed in the report without the SQL actually having the filter in ? For example I have 1 query returning 100 rows of data and in that 50 rows are of type = A and 50 are of type = B. I dont want to have two seperate queries one to get all type A and one to get all type B, but I would prefer to return all rows in the query then filter the results in the report itself so I can have 1 report table showing type = A and 1 report table showing type = B, pretty much like how you can add a filter in Excel or again how you would add a report level filter in BO XI ?
    Edited by: RichRich on 01-Feb-2010 02:41
    Edited by: RichRich on 01-Feb-2010 02:41
    Edited by: RichRich on 01-Feb-2010 02:42

    HI,
    May I know obiee version?
    Can you refer below thread, it sees similar error.
    https://forums.oracle.com/message/9866218
    https://forums.oracle.com/message/10091143
    Thanks,
    Satya

  • How to return more than one value through RECORD TYPE from function

    Hi friends,
    i m ew in oracle forms. i want to return the two values at a time from a function but can't,Please help me. my codding is as following
    Thanks in advance.
    FUNCTION Fun_Choose_Right_cast(v_post_no payroll.post_register.post_no%TYPE) RETURN RECORD IS --here is the error 
    v_return_char CHAR NOT NULL := 'X';
    TYPE row_no_record_type IS RECORD
         (v_row_id NUMBER(3)NOT NULL := 0,
         v_char CHAR NOT NULL := 'X');
    row_no_record row_no_record_type;
    BEGIN
    IF v_post_no = 1 THEN
         IF TRUNC(v_post_no*0.15) >= 1 THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'A';
              --v_return_char := 'A';
         END IF;
         IF TRUNC(v_post_no*0.075) >= 1 THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'B';
              --v_return_char := 'B';
         END IF;
         IF TRUNC(v_post_no*0.275) >= 1 THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'C';
              --v_return_char := 'C';
         END IF;
         IF row_no_record_type.v_row_id = 0 AND v_char = 'X' THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'D';
         --IF v_return_char = 'X' THEN 
              --v_return_char := 'D';
         END IF;
    ELSIF(v_post_no BETWEEN 2 AND 100) THEN
         IF TRUNC(v_post_no*0.15) > TRUNC((v_post_no-1)*0.15) THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'A';
              --v_return_char := 'A';
         END IF;
         IF TRUNC(v_post_no*0.075) > TRUNC((v_post_no-1)*0.075) THEN
              IF TRUNC(v_post_no*0.15) > TRUNC((v_post_no-1)*0.15) THEN
                   row_no_record_type.v_row_id := v_post_no-1;
                   v_char := 'B';
                   --v_return_char := 'A';
              ELSE
                   row_no_record_type.v_row_id := v_post_no;
                   v_return_char := 'B';
              END IF;
         END IF;
         IF TRUNC(v_post_no*0.275) > TRUNC((v_post_no-1)*0.275) THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'C';
              --v_return_char := 'C';
         END IF;
         IF row_no_record_type.v_row_id = 0 AND v_char = 'X' THEN
              row_no_record_type.v_row_id := v_post_no;
              v_char := 'D';
         --IF v_return_char = 'X' THEN 
              --v_return_char := 'D';
         END IF;
         END IF;
    RETURN row_no_record;
    END;

    Posting your Oracle version is immensely helpful when asking questions (different version = different answers / functionality available).
    select * from v$version;Also, using tags will preserve the formatting of your code.
    You should likely read (a lot) about  [http://www.stanford.edu/dept/itss/docs/oracle/10g/appdev.101/b10807/05_colls.htm]
    Basically, you would need to create a PL/SQL record and reference that, OR you could create a SQL type.
    If you're looking for a 'simple' way to return many single values (no arrays) then your best bet would be a procedure with multiple OUT parameters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HP Officejet Pro 8600 Plus (All-in-One) - Incoming Fax but mistakenly answer phone

    I have landline phone service.  On this line, I have multiple phones, an answering machine, internet service via wireless Uverse setup, and the HP Officejet Pro 8600 Plus as a fax.  It's also a printer/scanner - but that uses the wireless Uverse service.
    The unit works as a phone, if I answer in fewer than 4 rings.  The answer machine picks up after 4 rings.  If a fax, the fax connects after 6 rings.  (Auto answer function is turned on.)  This works.
    If I mistakenly answer a fax call with the phone that the HP 8600 is connected through, I can press: 1,2,3 and the fax will answer.  This works.
    Problem: If I mistakenly answer a fax call from one of the other phones in the house (same phone line is ringing as before - but the phone is NOT the one through which the HP 8600 is connected) - 1,2,3, does NOT work.  If I rush to the HP 8600: pressing the "fax" button on the unit does not connect the fax call; nor does the HP 8600 give me the option to "Accept" the call, when the phone as been answered. 
    Does anyone know what buttons to push to get the fax to connect when the phone line is answered at a phone?  Either at the answered phone OR if I can get to the HP 8600 when I hear the fax tone - buttons I can push on the HP 8600 to get it to respond to the fax tones coming in on the line?
    Thanks to anyone who can help.

    Hello Vandy73,
    I see that this is your first visit with us here on the HP Forums.  Let me please take a moment to say "Welcome". 
    I hope you enjoy your experience!
    To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I see that you have some concerns when it comes to answering a fax call by accident from another phone.  Pressing the 1.2.3 on the fax is the proper way to remedy the issue when you answer from the fax, however this feature will not work from another phone.
    I do realize that this is an inconvenience.  The only resolution would be to contact the sender of the fax and have them resend.
    Thank you for your time.
    Cheers,
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Calling a c# function with a ref parameter to a struct

    public struct TestStruct
    public bool Value;
    public class Functions
    void Flip(ref TestStruct testStruct)
    testStruct.Value = !testStruct.Value;
    I'm trying to call the from c++ like this
    TestStruct ^ testStruct = gcnew TestStruct();
    Functions ^ functions = gcnew Functions();
    functions->Flip(testStruct);
    This gives an compiler error saying "cannot convert parameter 1 from 'TestStruct ^' to 'TestStruct %'
    I know that this is the correct syntax if TestStruct was a class and not a struct. But i'm using a third party library so changing from struct to class is not an options.
    Anybody know how to make this call. 
    Found the answer:
    functions->Flip(*testStruct);
     

    Hi Grarup,
    I took a stab at getting this to run and compile and this is what I came up with.  Let me know if this helps at all.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    Console.WriteLine("\"True\" or \"False\"?");
    bool boolVal = bool.Parse(Console.ReadLine());
    Functions f = new Functions();
    TestStruct t = new TestStruct() { Value = boolVal };
    f.Flip(ref t);
    Console.WriteLine(string.Format("Flipped value = {0}: ", t.Value));
    Console.ReadLine();
    public struct TestStruct
    public bool Value;
    public class Functions
    public void Flip(ref TestStruct testStruct)
    testStruct.Value = !testStruct.Value;
    Best of luck.

  • Droid incredible 2 phone calls can't be answered

    If my Android Incredible 2 is in the sleep mode and the screen has gone dark when a call comes in the slide answer feature does not work.  It is a brand new phone so I have not uploaded apps (some internet posts claimed too many apps wrecked the answer function).  I know slide down is answer and slide up is ignore but neither works.  Please advise.
    Thanks. 

    Hello Ann154,
    This is highly unusual for this device since it's new to the market. Have you tried a factory reset on the device? If that doesn't resolve the issue, we may have to look into additional options. Please respond to this post if you decide to do so.

  • FAX Setup for Officejet 8620 -- Auto Answer & Cord "Fail"

    I have encountered two issues after setting up my new Officejet 8620.
    I have followed instructions for connecting the printer, using the phone cord provided by HP.  Repeated tests insist "FAIL" for "Using Correct Type of Phone Cord with Fax." I have tried hard reset a couple of times with no change in test result.
    The fax is working: I can send and receive faxes, but why the "FAIL"? I see from other forum messages that this is a common issue.
    Second issue is that the Auto Answer is set to "ON," but the fax doesn't answer incoming calls. I get the message on the display screen giving me the options to "Ignore" or "Accept", and pushing "Accept" does result in the fax coming through, but I need the machine's "Auto Answer" function to work. The 8620 is not connected to an answering machine. It's connected directly to the phone wall jack. Also,I have disabled voicemail service on that phone line, so there shouldn't be anything interfering with Auto Answer.
    I would be grateful for help resolving these problems.
    This question was solved.
    View Solution.

    Hello @hpuser24333, Welcome to the forums
    I read your post about the concerns and issues you're running into with your Officejert 8620, and I wanted to reach out to share my suggestions with you.
    I would recommend a factory reset on the printer, and to run through the fax set up again. I am hoping you won't run into the same problems again however, if you do, please give us a call.
    On the printer, select the Setup Menu, Tools, Restore Factory Defaults, Yes, restart the printer.
    When the power is back on select Setup, Fax Setup, Fax Setup Wizard, Yes, continue through the setup.
    I really hope this helps!
    If you need to contact us:
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Happy Wednesday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Automatic answering of calls using sbh52

    Hello!
    I am not able to figure out how to make my sbh52 bluetooth device answer calls from my Xperia Z1 automaticly (without pressing any buttons). I also have an Samsung S-2 connected and it works fine with that because it has an automatic setting oppurtunity for incoming calls when using headsets or bluethooth devices. No such setting opputunity on the Z1...? Or...?

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    As far as I know, there are no auto answer function as standard in SBH52 or your Xperia Z1. Perhaps, you can find a third party application from Google Play with this function. Search on "Auto answer" for example.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • I need an auto answer   Any ideas.

    I need help.   Brother is a quad and does not have Hand usage.  How can I make phone answer automatically

    don't know if this is too late for you but you can finally do this.
    You can't do it with a wired headset but you can do it with a Bluetooth one, but you have to buy a very specific headset because the technology is in the headset not the phone.
    I'm not working for this company, I am a disabled person who has needed this to be available for ages and I've finally just found the answer myself.
    I've been looking for this for years but no one has made an App for it, except on jailbroken phones, and there are distinct drawbacks with that.
    You have to buy a Bluetooth "Plantronics Voyager Legend" headset and this has an auto answer function which speaks to you and allows you to answer using your voice.
    If somebody dials you it will look and see if it is in your contacts, if it is it will say who is calling and then say do you want to "answer" or "ignore". If it's not in your contacts it will just say do you want to answer or ignore.
    If you wait about a second and then say one of those two words it will do what you tell it to.
    You can also voice dial and do some other functions as long as you can get your hand to your ear to push a button, I can't but the voice answer was what I was looking for as I can do the rest on the screen.
    You can also pair it to 2 separate devices at the same time so you can use it to talk to your cellphone and your computer at the same time.
    It's brilliant, I would highly recommend it even if it's not cheap, and it really works well.

  • Difference between procedure and function

    hi
    please give solution to below discussion:
    Interviewer: What is the difference between Procedure and Function ?
    Myself: Procedure may or may not return a value and can return multiple values and Function must return a value.
    Interviewer : Can function return multiple values ?
    myself: Yes, It can return multiple values.
    Interviewer: Then, there is no need to use procedures any more, according to your previous answer (function can return multiple values) "we can do all the things by using procedures by using functions". Then why there is differentiation between procedure and function ?
    myself : no reply (simply frustated at this question)
    The above is conversation between me and interviewer.
    Please suggest me what would be my reply to above topic.
    In one book i find that using functions we can return multiple values but it is poor programming practice.
    why this is a programming practice ?
    please suggest me solution
    thanks in advance
    prasanth as.

    Another difference is function must return something. There is no such restriction on procedure.In fact, a procedure CANNOT contain an expression in its RETURN statement.
    SQL> create or replace procedure test_return is
      2  begin
      3    return(10) ;
      4  end ;
      5  /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TEST_RETURN:
    LINE/COL ERROR
    3/3      PLS-00372: In a procedure, RETURN statement cannot contain an
             expression
    3/3      PL/SQL: Statement ignored
    SQL>And, a procedure cannot be called as part of a expression (it must be a function).
    SQL> create or replace procedure test_return is
      2  begin
      3    return ;
      4  end ;
      5  /
    Procedure created.
    SQL> variable x number ;
    SQL> exec :x := test_return ;
    BEGIN :x := test_return ; END;
    ERROR at line 1:
    ORA-06550: line 1, column 13:
    PLS-00222: no function with name 'TEST_RETURN' exists in this scope
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    SQL>

  • BB Flip External Display Caller Notification Issue

    Hello-
    I have owned this phone for approximately two weeks; and until today it was working perfectly. As of today the external display is no longer working for "caller ID" or incoming call notification. The temporary fix was to disable the "auto answer" function for convenience, although this does not truly solve the problem.
    The question is how can I restore the external display as it was working prior to today with the display of "caller ID" incoming call notification? Incoming emails, SMS previews; continue to work properly on the external display, and the issue appears to be isolated to incoming call notification.
    Is this a bug with the device, or is their a fix to the problem?
    Any help or guidance greatly appreciated.
    Message Edited by skilltel on 11-03-2008 09:05 PM
    Message Edited by skilltel on 11-03-2008 09:06 PM
    Message Edited by skilltel on 11-03-2008 09:06 PM
    Solved!
    Go to Solution.

    Hi and welcome to the forums!
    Did you try the battery pull we talked about?
    Thanks,
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Randomize/shuffle array item without repeat actionscript 3.0

    i am creating a question and answer quiz using flash cs3 and actionscript 3.0.
    i have a large array of question, i wish to put it into xml document
    (can xml document be reside in the flash file itself?i thought ive seen someone did that.)
    ok,my main problem is to shuffle the questions without repeat until all questions were asked. i have worked on this tutorial,and it does great shuffling without repeat. http://www.flashandmath.com/howtos/deal/
    but,i wish to ask one question at once. i have looked into the option to shuffle frames, but i think about how can i count the score of the quiz at the end of it?
    can anyone tell me the best way of doing this?
    many thanks 

    . i have looked into the option to shuffle frames,
    you can`t really shuffle frames in flash, you have to tell the playhead of your movie to jumpp to a specific frame.
    so if you have say 20 Questions that are ordered in 20 kjeyframes along the main Timeline. you will have an array o Numbers from 1-20 that is shuffled by a function like you mentioned above.
    Then in the function that evaluates your answers that targets this aray as a pointer to where to go next.
    The pointer could be a simple Number, that describes the position of one specific number in this array, like so:
    //At the beginning of your quiz
    var randArray:Array = [1...20];
    var pointer:int = 0;
    var points:int = 0;
    var right:Boolean= false;
    //in the function that evaluates your answer
    function evaluateAnswer():void{
       if(right){
       points+=1;
    else{
    //don`t add Points
    //this will choose the next frame from your shuffled Array
    pointer++;
    if(pointer<=20){
    this.gotoAndPlay(randArray[pointer]);
    else{
    //when the last question is answered do something in a funtion that shows the result
    showResult();

  • Output sound level from gramophone and from computer should be the same

    Dear friends,
    Why the output sound level isn't equal if we listen the LP directly from the gramophone (AUX1) or from the computer during the recording the track on the computer?
    We are using The E-MU 0404 USB 2.0 Audio/MIDI Interface:
    http://ixbtlabs.com/articles2/proaudio/emu-0404-usb.html
    http://www.emu.com/products/product.asp?product=10447&nav=features
    and we have connected E-MU with the (gramohone) speakers through the headphone output on the E-MU and turn the headphone level to the maximum, but the sound level is still lower from the same speakers.
    If we compare the track after the recording with the LP on the gramphone is the level of the sound the same/equal.
    So we need to have all three sound levels equal:
    -from the LP form the gramophone
    -from the computer during the recording
    -from our track on the hard disk after the recording
    Thank you for your answer.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Connecting loudspeakers to the headphone output on the E-mu sounds like completely the wrong thing to do altogether - you should
    only connect headphones to a headphone output, and nothing else at all.
    We will buy the cable as you mentioned and connect it in the line level (S/PDIF).
    function(){return A.apply(null,[this].concat($A(arguments)))}
    Almost certainly you will need to adjust the monitoring levels in Patchmix to get this the way you want it
    Then we will try to adjust the monitoring levels in Patch (I will report if and how did we manage it).
    Our equiptment is:
    ·       turntable Stabi Kuzma audio komponents ( http://www.kuzma.si/AmplioCMS2/public/EnterPublic.cms2?langId=60&request_locale=en_US )
    ·        Rotel Phono equalizer RQ-970BX,
    ·        Rotel Stereo integrated amplifaier RA-9858X
    ·       speakers JMlab Focal Daline 3.1 (nom. impendance 8 Ω, max. power 75 W)

  • Error [38133] : does not join to any other logical table

    Hi,
    Is there a way to avoid this error. We dont have the requirement to join the table with any other table. The client wants to use
    the OBI Answers functionality on a single table. No joins needed or wanted. Some hidden checkbox to avoid the OBI join-requirement?
    Thanks

    Hi,
    Refer the below link.
    Adding a single table without a logical join to another table (OBIEE 10g)
    or,
    To report on a single table: just drag/drop the table twice from the physical layer to the busines model layer. Then define a complex join (just drag/drop a line) between tablex and tablex#1. Define a key on the dimension table (the white colored folder).
    You can then put one of the tables in a presentation folder and report.
    Hope this help's
    Thanks,
    Satya ranki reddy
    http://satyaobieesolutions.blogspot.in/

Maybe you are looking for

  • ITunes Match step 3 freezing!!!

    Every time I get to the third step of iTunes match it freezes on the first upload. It does not give me any error messages but simply says waiting. What is wrong? I have waited for hours and nothing has happened.

  • USB not recognizing any of my iphone?

    Please help! My macbook is not recognizing any of my iphones. I have 1 3gs and 1 3g phone when I plug them into usb ports they do nothing. Not even charge. When I connect the to my Macbook Pro the connect and charge and recognize fine. Can anyone hel

  • Password Reset Not Working - Very Annoying

    Tried to resrt my password for HP Connect, the link   gives this error message: SERVER ERROR Oops! Something just went wrong with our server. Try refreshing the page. Being cute doesn't help, rather fix the error, it has been going on for more than S

  • Error in accounting interface at the time of Invoice posting

    Hi..   Im getting this error at the time of Invoice Posting . "Error in accounting interface " Plz guide me regards Deepa

  • Process of Sub Assets

    Hi Gurus, Can you please tell me the process of Sub Assets in AUC and in normal assets as well? How to capitalize it, retire it, what to do if any sub assets is gone for repairing? Please revert asap. Thank You