How to use FILTER -- USING    in rpd???

Can we use FILTER USING in rpd ?

Yes in the 'use existing logical columns as the source' window of a measure.
Its under Functions - Display Functions in the expression builder.

Similar Messages

  • How to use two RPD in a single installation

    I have developed separate RPD for the Wholesale business and one for Retail business.
    How can I use these two with one BI installation

    Hi,
    It is possible if you create another instance in the same server.
    http://obiscraps.blogspot.in/2011/05/setting-up-multiple-obiee.html
    To be Simple and straight forward , to combine two rpd of completly different subject ares, business models and data sources.You can easily cut and paste the objects from one rpd to other rpd using two way merge(Parentless 3 way merge) in offline mode.When it prompts for original rpd, create an empt rpd and give the dummy rpd location in original rpd .
    Regards

  • Need to use 2 rpds

    Hello,
    Uisng obiee 11g,
    I would like to know how to use 2 RPD on one single server instance.
    Already i have deployed one rpd.
    Now there is a req to create a new rpd,for a new dashboard.
    First thing i would like to know is
    Why do we need to create a new RPD when we can do it in same/existing RPD itself.I mean is there positive answer for this.
    I mean any advantages for this?
    Please tell me more regarding this?
    Thanks

    Hello,
    I tried exactly to do the same,but giving this error when trying to restart all services.
    Message     Supplementary information regarding operation: BI_INSTANCE:coreapplication;FAILED_TO_START;Error in starting one or more components of BI Instance; Please check the server log files for detailed message.
    Message     Supplementary information regarding operation: PROCESS:instance2:coreapplication_obis1;FAILED_TO_START;Operation Failed: start; OracleInstance: instance2; Component: coreapplication_obis1; msg: 0 of 1 processes started.
    BI server is not getting started.
    I created one dumy rpd,one org was already uploaded into rpd.
    Then open->NQSConfig.ini->After default rpd line i added one more line below Star
    testrpd=testrpd.rpd
    Then in the Credentials ->Added the new key.
    Thanks

  • How to use the prompted value in the filter expression

    Hi
    Is it possible to use the prompted value in the filter expression?
    My requirement is that user will be prompted for a date field and I need to filter the records such that the records are displayed for the last 5 weeks from the date entered by the user.
    If somehow I know how to use the prompted value in the filter expression then this requirement is easy to be done. If this is possible, please guide me?
    If there are other ways to acheive the desired results then please suggest.
    Thanks
    -Jaz

    Edit: example added
    SQL> create table tb_test
      2  ( id number(5)
      3  , tot number(5)
      4  , mon_tot number generated always as (tot*15) virtual
      5  );
    Table created.
    SQL> insert into tb_test (id, tot) values (1, 5);
    1 row created.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1          5         75
    1 row selected.
    SQL> update tb_test
      2  set    tot = 15
      3  where  id = 1;
    1 row updated.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1         15        225
    1 row selected.

  • Does anyone know how the cutout filter works and is there a way of achieving the same effect without using filters to get more control over final look?

    does anyone know how the cutout filter works and is there a way of achieving the same effect without using filters to get more control over final look?

    Several ways to get similar results.  Image > Adjustments > Posturize with low values similar to what you'd use n Cutout.  This is the most flexible way I can think of as you keep the image in RGB mode with layers intact.  A more radical approach would be to reduce bit depth using Indexed Colour.  You'll need to experiment with settings, try changing Forced to Primaries, and Matte to Foreground Color.  There's no going back from this route, although you can change the mode back to RGB to re-enable layers, adjustment layers etc.
    A nice thing about the Filter gallery filters is that you can change the layer to a Smart object with all the control that gives you.
    Now if only this forum could filter out bizarre content.

  • Sharepoint 2013 :Content Search Web part Property Filter By Query String - How to use ?

    Hi,
    I would like to filter data that is displayed in content search web part  by using  URL.
    I tried to use Value of a parameter from a URL - Query String.Parameter1
    But have no idea how to use it.
    Can someone help me pleas ?

    duplicate thread
    http://social.msdn.microsoft.com/Forums/en-US/f9fef155-1aa3-43b5-b285-5eae5d036b8d/content-search-webpart-property-filter-by-query-string-how-to-use-?forum=sharepointgeneral
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to use Stored Procedure in RPD

    In the physical layer we have a option for procedure when we select a tables general tab.I created the procedure
    but i am not able to retrieve values in the Dashboard.
    Could anyone help me with this as how to use procedure.

    Oracle stored procedure don't return recordssets. You have to put the result of the stored procedure in a global temp table and reference the rpd to that table. the execution of the stored procedure can be triggerd form the "execute before query" part in the connection pool.
    regards
    John
    http://obiee101.blogspot.com/

  • Where to locate and how to use the filter thershould to binarized image

    Good morning friends. I am using
    Labview with VDM and let me know where to locate and how to use the
    filter thershould. Also that parameters used to binarized image captured
    via webcam and display it in black and white.
    Thank you very
    much.

    Is the image that you are getting a RGB one? Use color plane extraction and then use a binary threshold to convert it into a binary image. You can also directly use a color threshold and convert a rgb (color) image to a binary image.

  • How to use combobox to filter datagrid in Flash Builder 4?

    Hi,
    I've been working through the TestDrive application with Flash Builder 4 and I would like to learn how to filter a datagrid using a combobox.  I've googled the subject and results for many different versions of Flash, some which look like they will take a considerable amount of time to implement.  I'm hoping with Flash Builder 4 there is a straight-forward way to do this without writing pages of code.
    I think I may be close to getting this working by passing the combobox value into a PHP script which queries the database with a WHERE clause.
    Thakns,
    David

    I was able to get the data returned from a PHP call into an array by placing the following in the service result handler:
       public var myEmployeesArray : Array;
       [Bindable]
       public var myEmployeesDataProvider : ArrayCollection;
        myEmployeesArray = mx.utils.ArrayUtil.toArray(event.result);
        myEmployeesDataProvider = myEmployeesArray[0];   //data provider for the datagrid
    Not certain how to use filterfunction yet though.  I started to read this page but need to work on it more: http://cookbooks.adobe.com/post_Using_the_to_ArrayCollection_s_filterFunction-5441.html
    I'd like to filter only one field in the ArrayCollection.
    Also, for anyone else who may be learning while reading this, I found the following page helpful in figuring out how to load the PHP service return data into an array:
    http://www.cflex.net/showFileDetails.cfm?ObjectID=415
    David

  • Quartz Filter  - How to use to lighten prinouts

    My new color laser printer is printing a little dark. I looked at color sync and the quartz filters. I have read the instruction and moved the sliders around but I see no difference in the printng.
    There is no other thing that I can change to make the print lighter.
    Does anyone know how to use the quartz filter in coor sync to lighten the picture?
    G-5 , 2.3   Mac OS X (10.4.9)  

    Image src = getImage("doc:///demo/images/duke/T1.gif");
    ColorFilter colorfilter = new ColorFilter(Color.color);//whatever color
    Image img = createImage(new FilteredImageSource(src.getSource(),     colorfilter));
    Is that what you mean?? I'll try it when I get a chance.. THANKS!!

  • How to use Hierarchy Filter Selection?

    Hi, experts !
    Could anyone give me a detail for how to use hierarchy filter selection ?
    When i locate a Hier filter selection in the template and execute it, a false info
    accured while filtering data,and the IE inferred the hier node object was missing.
    Then i add another hier filter in the same template, and the secend runs well, however the first one didn't.
    At last, i hide the first one, but the second one can't either.
    Help me !!!
    Thx in advance!

    Thanks Toja !
    Sorry to reply so late !
    The error is line: 51. error:'document.HIERARCHY_MENU_1.NODEID' is null or is not the object.
    The code on line of 51 says:document.HIERARCHY_MENU_1.NODEID.value = i_node;
    Could you please give me some documents on the topic of Hierarchy Filter Selection ?

  • How to use event structure of event data nodes event filter nodes in programming

    hi,
    I need manual of how to use 'event structure' events of 'event data nodes' and 'event data filters'...please help me....
    Regards
    Ravindranath

    I'm not really sure what you are looking for here.  Did you do a search in the LabVIEW help for Event Structure?
    The Event Data Node just returns information about the event, like control data, control reference, what caused the event, etc.
    The Event Data Filters are just used in Filter Events.  This allows you to discard an event or change the data that the event will recieve.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to use rowid in filter for datawindow?

    I try to use filter to filter data in datawindow, like
    dw_1.SetFilter("column = value")
    dw_1.Filter()
    then I can get data from this datawindow like:
    GetItemNumber(row, column_name)
    GetItemString(row, column_name)
    but I want to filter expression like
    "column = value and rownumber>10"
    How to use datawindow row number for filter?

    What about GetRowIdFromRow and GetRowFromRowId methods for DataWindow control ?
    AUS Julián Tagarro
    NeoSistemas SRL

  • How to Use and Filter Table contents after execution of Bapi

    Can anybody guide me how to Use and Filter the table Contents which i got after successful execution of a Bapi
    I used Component Controller in my Project
    Ex: My table contains Redundant data for a single column but i want to display the column contents with out Redundancy
    Name
    Raghu
    Raghu
    Raghu
    Debasish
    Debasish
    I want to filter the table contents and i want to display the table with out Redundancy
    and Even when i am using a Dropdown i selected a Column  from a Table as the values for that Dropdown  but that table is having redundant data and the same data is getting displayed in that Dropdown i want the Dropdown to display data with out redundancy
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • How can I filter thermocouple noise using a TC-2095 and SCXI-1102c?

    Hello all,
    I currently have four TC-2095s connected to SCXI-1102c cards inside a SCXI-1001 chassis. These thermocouples are floating and I have been getting a fair amount of noise (3-phase 400 Hz and even 60 Hz noise) when we power on some equipment such as blowers and fans. Using this current set up, how can I filter the noise? Or do would I need to set up a new hardware configuration (i.e. SCXI-1102 cards)?
    Solved!
    Go to Solution.

    Hi RALoo, 
    The 1102C has a lowpass filter with a cutoff at 10kHz, so you will not be able to filter in hardware with your current setup.  
    Your first option would be to use a software filter.  LabVIEW has several functions which accomplish this. More information on this can be found here: http://zone.ni.com/reference/en-XX/help/371361J-01/lvanls/filter_vis/
    The second option would be to change to SCXI 1102 cards as you suggested.  The lowpass filter of the 1102 has a selectable cutoff frequency at 2 Hz, which will stop the 400 and 60Hz noise from affecting your readings.
    Patrick W.
    Applications Engineer
    National Instruments

Maybe you are looking for

  • E-business suite R12 and webcenter integration

    Hello, We are integrating E-business suite R12 with webcenter. We followed the steps from the white paper: https://support.oracle.com/CSP/main/article?cmd=show&id=1074345.1&type=NOT We successfully completed step 1 through 4 and we are stuck at step

  • What is a B2B scenario definition from XI perspective ?

    Hi All, what is a b2b scenario in xi ? suppose, data flows from wholesale dealer database to companies r/3 system, will it be a b2b scenario ?

  • What is the best way to do this? I am stuck!!

    I have a block with this, PLEASE help! I am writing a plsql package that is going to create a custom table everything is going fine EXCEPT that I don’t know what will be the best way to do this. Please point me in the right direction a function or so

  • Fms_adminConsole.htm remote login times out, won't connect

    FlashMediaServer4.5_x64.tar.gz (fms 4.5.1 release) linux instructions followed, success! System Information, logs, etc.. Below. uname -a Linux poolhdz01.localdomain 3.0.0-16-generic #28-Ubuntu SMP x86_64 x86_64 x86_64 GNU/Linux lsb_release -a Distrib

  • Portlet repository-- Seeded providers does not show Portal Content area

    Hi, When I login to portal as admin user go to administration --> Display portlet repository--> Seeded providers does not show Portal Content area.I tried to search but no results shown. Any idea as to how to get it back ? Thanks and regards. Neeti.