Reg:filter operator in is not like

hi,
can anyone tell how does the filter operator "is not like pattern" function in obiee answers?in what scenarios this operator might be used/
thanks

Hi,
Filter:
Its used to filter data from report.We apply filter on report as prompted to make prompt effective.
Example :
ColumnA is prompt then we apply filter is not like ('India','Singapore') then the report will display expect india and singapore country in the output the report as ColumnA is prompted
Filters can be apllied on report in many with diff operators like not equal In order to select values dynamicaly from report and filter data from report we use prompt.
Prompt - Its used to select specific values to be filtered from the report
Thanks
Deva

Similar Messages

  • NO 11g "Manage Filters" Online Layout "OR" filter operator!?

    Hey guys,
    I realize this is a totally n00b question about the BIP 11.1.1.5 Online Layout editor (for Interactive layout mode). I've created a complex P&L financial statement report in BIP using a Word RTF template, and I'd like to try to retool it into the online layout editor for possibly easier maintainability.
    But I'm coming up against what looks like a fundamental limitation and problem to me in the online layout editor. I'd like to create either a Repeating Section object or a Data Table object that will display values if a few certain values are found in the data. So, I want my filter to do something like this (to display the section or table):
    If Group = 'ABC'
    If Group = 'XYZ'
    Problem is, in my "Manage Filters" window, I need to be able to supply an "OR" filter operator between those two lines! It's an implicit "AND" operator between them apparently.
    I would gladly use an "IN" operator instead of "=" if it existed, but alas, I don't see that option either in my Manage Filters controls.
    Has anyone else come up against this in the 11g online layout editor for interactive mode output? Am I missing something totally obvious here that's right under my nose and I just can't seem to see it or find it?
    Thanks,
    Jeremy

    Hi BIPuser,
    Thanks so much for the reply; sorry for the delay in getting back to you. I believe you are referring to the group filter functionality on the data model itself, correct? If so, that's a good thought and maybe I can use that approach, but it means I would have to potentially break up my "master" data set into many, many copies to get this "OR" like functionality.
    For example, suppose I had 26 groups, groups A-Z that I wanted to show together in different report sections in my final layout. So I want A&B, C&D, E&F, etc. Instead of having one master data set with report-level grouping that way, I guess I'd have to break my data model into 13 different data sets, each one group filtered for A&B, C&D, E&F, etc, right?
    That approach seems to involve a lot more setup and data set maintenance, when all I really want is just an "OR" ability in the report layout designer itself. Something exactly like OBIEE provides in the filter section in the Criteria tab of a BI Analysis (when developing a query there).
    Now that I say that, maybe I can extend my OBIEE BI Analysis (I'm using that as the basis for my source), and perhaps I could create a new A&B, C&D, etc grouping column there to "bucket" my data together into a single data group to work around the online layout limitation of not having an "OR" filter operator available. Or, like you mentioned, I could even use the "Add Element by Expression" option in the data model itself if I wanted to manage it from there instead of OBIEE.
    I still say it would be easier if they would just give us a filter "OR" ability in the "Manage Filters" dialog in the layout editor. :)
    Thanks again BIPuser!
    Jeremy

  • HT4623 I do not like the new iOS 7 operating system on my iPad.  I do not like the Safari works, I do not see a way to enter or search for a new web site.  Is there a way that I can go back to the older operating system?

    I do not like the new iOS 7 system on both my iPad 2 and iPhone 4S.   I can not like the way Safari works, I can not see a way to enter name to search for new web sites.  Is there a way I can go back to the old iOS 6.1.5 operating system on my devices?  Thank you.

    I can not see a way to enter name to search for new web sites
    Put your search terms in the combined URL and search bar at the top of the browser (exactly the same as you do in most modern desktop browsers such as Chrome, Safari, Explorer). There is no separate search box, just use the box where you enter web addresses.
    And no, you cannot downgrade.

  • Not like operator not working while matching text from two tables

    Hello  Everyone,
    I want to find the Id from table child where the column name  is not matching with at least first term of column name from parent table.
    I am not getting proper output. can anyone help me.
    Output should be :-->ID 6 & 7
    with child as
    (select 1 id, 'Genentech'  as name from dual union all
    select 2 id, 'Altana Pharma AG'  as name from dual union all
    select 3 id, 'Yamanouchi'  as name from dual union all
    select 4 id, 'Sigma-Tau'  as name from dual union all
    select 5 id, 'Schering-Plough'  as name  from dual union all
    select 6 id, 'Pharma AG'  as name from dual union all
    select 7 id, 'Pfizer'  as name  from dual
    ), parent as
    (select 1 id, 'Genentech number'  as names from dual union all
    select 2 id, 'Altana Pharma AG'  as names from dual union all
    select 3 id, 'AG site/Yamanouchi'  as names from dual union all
    select 4 id, 'sigMa Tau'  as names from dual union all
    select 5 id, 'Schering-Plough'  as names  from dual union all
    select 6 id, 'AG'  as names from dual union all
    select 7 id, 'Inc'  as names  from dual
    select *
    from child a, parent bc
    where a.id=bc.id
    and upper(a.name) not like (bc.names)

    One way:
    WITH child AS
            (SELECT 1 id, 'Genentech' AS name FROM DUAL
             UNION ALL
             SELECT 2 id, 'Altana Pharma AG' AS name FROM DUAL
             UNION ALL
             SELECT 3 id, 'Yamanouchi' AS name FROM DUAL
             UNION ALL
             SELECT 4 id, 'Sigma-Tau' AS name FROM DUAL
             UNION ALL
             SELECT 5 id, 'Schering-Plough' AS name FROM DUAL
             UNION ALL
             SELECT 6 id, 'Pharma AG' AS name FROM DUAL
             UNION ALL
             SELECT 7 id, 'Pfizer' AS name FROM DUAL),
         parent AS
            (SELECT 1 id, 'Genentech number' AS names FROM DUAL
             UNION ALL
             SELECT 2 id, 'Altana Pharma AG' AS names FROM DUAL
             UNION ALL
             SELECT 3 id, 'AG site/Yamanouchi' AS names FROM DUAL
             UNION ALL
             SELECT 4 id, 'sigMa Tau' AS names FROM DUAL
             UNION ALL
             SELECT 5 id, 'Schering-Plough' AS names FROM DUAL
             UNION ALL
             SELECT 6 id, 'AG' AS names FROM DUAL
             UNION ALL
             SELECT 7 id, 'Inc' AS names FROM DUAL)
    SELECT *
      FROM child a, parent bc
    WHERE a.id = bc.id
           AND UPPER (REGEXP_REPLACE (a.name, '[^[:alnum:]]')) NOT LIKE
                  '%' || UPPER (REGEXP_REPLACE (bc.names, '[^[:alnum:]]')) || '%';
    Regexp_replace can be avoided and replaced by translate there if you know for sure what characters you are expecting.
    ID NAME ID_1 NAMES
    1 Genentech 1 Genentech number
    3 Yamanouchi 3 AG site/Yamanouchi
    7 Pfizer 7 Inc
    Cheers,
    Manik.

  • Question about not like operator

    HI,
    This where clause omitting ABC% , but I wanted to exclude some conditions I want my sql to return COLUMNA = 'ABCD' but exclude everything else 'ABC%'
    how do I fix this?
    WHERE COLUMNA NOT LIKE '%ABC'
    AND COLUMNA NOT LIKE 'ABC%'
    AND COLUMNA NOT LIKE '%XYZ'
    AND COLUMNA NOT LIKE 'XYZ%'
    Expected result:
    ABCD
    AAAA
    BBBB
    etc

    Hi,
    Here's one way:
    WHERE   COLUMNA NOT LIKE '%ABC'
    AND      (   COLUMNA NOT LIKE 'ABC%'
         OR  COLUMNA  =          'ABCD'
    AND      COLUMNA NOT LIKE '%XYZ'
    AND      COLUMNA NOT LIKE 'XYZ%'

  • What is the differene between filter operation and NL semi join?

    Hi, all.
    The oracle is 10gR2 and 11gR2.
    There are differences between filter operation and HASH/MERGE semi join in processing subqueries.
    But I could not see the difference between filter operation and NL semi join?
    (the only thing I know is that filter operation has caching mechanism, but I am not sure in case of NL semi)
    What are the pros and cons of each of them?
    Thanks in advance.
    Best Regards.

    >
    The oracle is 10gR2 and 11gR2.
    >
    Those aren't 'version's. What are the 4 digit versions?
    >
    There are differences between filter operation and HASH/MERGE semi join in processing subqueries.
    >
    What are they? When you make a statement like that post the information (and links to it) that backs up your statement.
    >
    But I could not see the difference between filter operation and NL semi join?
    (the only thing I know is that filter operation has caching mechanism, but I am not sure in case of NL semi)
    >
    We can't 'see the difference' either; you didn't post anything for us to look at.
    >
    What are the pros and cons of each of them?
    >
    Each of what? Again - you need to be as specific as possible if you want specific feedback.
    Also, since you generally should not use hints in production code anyway what difference does it make what the differences are? Oracle will make the choice.
    Without anything specific to comment on about all we can do is provide several links that talk about joins and how to produce and examine them. These are all from Jonathan Lewis's Scratchpad:
    http://jonathanlewis.wordpress.com/?s=semi-join
    http://jonathanlewis.wordpress.com/2010/12/20/index-join-4/
    http://jonathanlewis.wordpress.com/2010/08/15/joins-mj/ -- merge joins
    http://jonathanlewis.wordpress.com/2010/08/10/joins-hj/ -- hash joins
    http://jonathanlewis.wordpress.com/2010/08/09/joins-nlj/ -- nested loop joings
    http://jonathanlewis.wordpress.com/2011/06/08/how-to-hint-1/ -- how to hint for joins
    Check out those articles. Pay attention to how, in each one, he doesn't just provide a text description but also provides code and explains the code.
    In other words he provides all of the specific information needed to illustrate what he is talking about. That is what you need to do if you need help with a specific topic: provide the query, plans and output that you yourself are using as the basis of your question. That lets us see EXACTLY what you are talking about.

  • Monitoring progress when performing filter operations on images

    Hi,
    I am working on Java2D and making some image filters using classes like ImageFilter etc. Now For simple filters I want to get the progress status while the filteting is in progress, so that I can show a progress bar in the GUI.
    For this I do not have much idea. I think we can use the ImageConsumer interface, so that if the class implementing that interface list itself as an image consumer with the filter operation. Here is two way I have tried implanting this:
    1st way:
    Class MyConsumer implements ImageConsumer
    int width,height;
    int percentProgress;
    Public image processImage(Image srcImage, ImageFilter filter){
    FilteredImageSource fis: new FilteredImageSource(srcImage.getSource(),filter());
    //should we do this?
    fis.addConsumer(this);
    //or this?
    srcimage.addConsumer(this)
    Image destImage = this.createImage(fis);
    return destImage;
    //implementing methods of imageConsumer
    //we get the width and height of the new destImage (or do we get the dimension of the srcImage here??)
    public void setDimensions(int width, int height){
    this.width=width;
    this.height=height;
    public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize){
    // Is this the correct way of obtaining the progress????
    progressPercent=(y*100)/height;
    //We also have empty implementation of other ImageConsumer methods after this
    --------------------------------------------------------------2nd way, let?s say we use a smooth filter and replace the processImage(..) method above with the one below (the other methods being same):
    Public image processImage(Image srcImage){
    float[] SHARPEN3x3 = {      0.f, -1.f, 0.f,
                                -1.f, 5.0f, -1.f,
                                0.f, -1.f, 0.f};
    BufferedImage dstbimg = new
                  BufferedImage(iw,ih,BufferedImage.TYPE_INT_RGB);
    Kernel kernel = new Kernel(3,3,SHARPEN3x3);
    ConvolveOp cop = new ConvolveOp(kernel,
                                    ConvolveOp.EDGE_NO_OP,
                                    null);
    //should we do this?
    dst.addConsumer(this);
    //or this?
    srcImage.addConsumer(this);
    cop.filter(srcImage,destImage);
    return destImage;
    }Now I do get a progressPercent. But when the percent is 100%, the destimage does not return, that means the operation is not yet complete.
    So is this the correctw ay, or is there any other way to know the progress of the flter operation.
    Also I extended the ImageFilter class and overrode its setPixel method as:
    public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize){
    int progressPercent=(y*100)/height;
    System.out.println("progress in image filter:"+progressPercent);
    //I simply print out the progress and let the super perform the filter operation
    super.setPixels(x, y,w, h, model, pixels, off, scansize);
    //should I do this below? This calls the imageconsumer's setpixels
    //that I implement in the MyConsumer class
    consumer. setPixels(x, y,w, h, model, pixels, off, scansize);
    }I observe that the setPixel method of MyImageFilter is called several times even for the same scan lines, and even after percentProgress is 100%, the process runs again for 2-4 times. So the filtering operation scans the lines several times to finally perform the filtering, and as such the percentProgress is incorrect.
    Can anybody guide me. Is this approach okay and needs to be modified a bit, or there is a different approach to obtain the progress from a filter operation?
    I would finally want the same progress from other operations like LookupOp, ConvolveOp, AffineTransformOp, ColorConvertOp, RescaleOp.
    Thanks in advance
    Tanveer
    DrLaszloJamf, are you there? I am sure you are one of them who can help me in this.
    anyone can send me a private message too at [email protected]

    Please somebody let me know how to get the progress of imagefilter operation using convolveOp.filter(...) or Filteredimagesource. I waant to display the progress i a JProgressbar.

  • How to use filter operator with ROWNUM

    I would like to add filter operator in my mapping with ROWNUM to reduce the ETL loading time during testing to ensure mapping is working, but I don't know how, please help provide me some guideline. Thank you.

    what is your owb version?
    Starting with Oracle Warehouse Builder 10.2.0.3, you can use the pseudocolumns ROWID and ROWNUM in mappings. The ROWNUM pseudocolumn returns a number indicating the order in which a row was selected from a table. The ROWID pseudocolumn returns the rowid (binary address) of a row in a database table.
    You can use the ROWID and ROWNUM pseudocolumns in Table, View, and Materialized View operators in a mapping. These operators contain an additional column called COLUMN USAGE that is used to identify attributes used as ROWID or ROWNUM. For normal attributes, this column defaults to TABLE USAGE. To use an attribute for ROWID or ROWNUM values, set the COLUMN USAGE to ROWID or ROWNUM respectively.
    You can map a ROWID column to any attribute of data type ROWID, UROWID, or VARCHAR2. You can map ROWNUM column to an attribute of data type NUMBER or to any other data type that allows implicit conversion from NUMBER.
    Note that ROWID and ROWNUM pseudocolumns are not displayed in the Data Object Editor since they are not real columns.
    Edited by: Darthvader-647181 on Oct 29, 2008 9:18 AM

  • How to use aggregator with filter  operator

    Hi,
    how can i use aggregation with filter operator. i have a table, form this table i have to calculate this valurs
    1. no of notes
    2. no of open notes where attribute =y (logic for one notes is count(notes) where attribute =y)
    2. no of closed notes where attribute =n
    for this i used like this
    table --> two filter operators 1 is for attribute =y and one is for attribute=n ----> to aggregaror operator. --- i am getting error.
    Regards,
    Jyothy

    Jyothy,
    Try this..
    U can use the below code in the aggregator without filters
    sum(decode(notes,'y',1,0) adn sum(decode(notes,'n',1,0)
    Regards,
    Sivarama

  • Office 2013 ODT The operating system is not presently configured to run this application

    hi!
    We have RDS 2012 R2 setup up and running with session host, connection broker, rd gateway and rd web. AS office 2013 can be deployed using APP-V 5 SP2, we have created .appv pkg using ODT as mentioned in this
    guide . It was working fine for 2 days and then suddenly we started to get error popup window saying
    "The operating system is not presently configured to run this application" . We are receiving this error on Session host server(win 2k12 r2) which is App-V 5 sp2 client, when we try to open any office 2013 app.
    And If check on App-v server which is also a publishing server. In event viewer i see this log entry.
    Log Name:      Microsoft-AppV-Server-Publishing/Admin
    Source:        Microsoft-AppV-Server-Publishing
    Event ID:      215
    Level:         Error
    Description:
    The request URL doesn't contain the query string for the client OS.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-AppV-Server-Publishing" Guid="{825C7963-9E32-4E3B-B74A-DF2CC3B6822B}" />
        <Execution ProcessID="3092" ThreadID="5176" />
        <Channel>Microsoft-AppV-Server-Publishing/Admin</Channel>
     </Event>
    SaM

    We have the same issue. All other applications seem to work fine.
    App-V 5.0 SP1 with hotfix package 2 installed on the App-V Management/Publishing server. We only use Windows Server 2012 RDS instead of R2. On the RDS servers, App-V 5.0 SP2 is installed. We use User Profile Disks and also used the ODT for Office
    2013.
    I our case it worked for a few hours. We didn't change anything (no updates of other things) other than having a few users try to login with different accounts to test the application. Reinstalling the client doesn't work and we also tried to removed
    all AppVClientPackages and then clear the cache from locations like:
    %LOCALAPPDATA%\Microsoft\AppV\Client\VFS
    %APPDATA%\Microsoft\AppV\Client\VFS
    C:\ProgramData\App-V
    I'll post a solution if I find one.

  • Installati​on CD says my operating system does not support

    I just got a used HP pavillion entertainment PC. I put my installation CD for my F4180 printer in and it tells me my operating system is not compatible or something like that. Bottom line I can't use my printer.  Are there new drivers ? I really hope there is a solution. I had it installed on my other laptop, which was caught up in the middle of an altercation. It was replaced with this one. I never thought I'd be saying I miss Vista.

    Would that be the same link I posted above?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Not Like in SQL not working

    Trying to use not like in the following sql:
    select *
    from respondents
    where sample_id = 00000001
    and email not like '%cccp.org%';
    Right now, I'm getting back 51 rows, but 1/2 of the rows have the wrong domain in the email fields, and I need to filter all of the wrong ones, except cccp.org.
    There was a thread,
    NOT LIKE
    And I tried that, but not getting the correct results.
    thanks

    Given a simple table like:
    SQL> SELECT * FROM t;
    EMAIL
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected] WHERE email NOT LIKE '%cccp.org%' will return:
    SQL> SELECT email FROM t
      2  WHERE email NOT LIKE '%cccp.org%';
    EMAIL
    [email protected]
    [email protected]
    [email protected] is exactly what you asked for. However, this statement "1/2 of them have the wrong email domain, like .edu and .com email domains" seems to contradict the predicate. Do you really want something more like:
    SQL> SELECT email FROM t
      2  WHERE email LIKE '%cccp.org%';
    EMAIL
    [email protected]
    [email protected]
    [email protected]
    John

  • ORA-13516:AWR Operation failed:Catproc not valid

    HI
    I got the below error while installing Oracle 11.2.0.2.0 in linux server (2.6.18-262.el5)
    ORA-13516:AWR Operation failed:Catproc not valid
    ORA-06512: at 'SYS.DBMS_SWRF_INTERNAL",line 206
    ORA-06512: at 'SYS.DBMS_SWRF_INTERNAL",line 239
    ORA-06512: at line 1
    can u please help me to fix this issue.
    Thanking you

    skhastagir wrote:
    I did what you said and get the following. Seems like nothing happened?:
    C:\Users\Administrator>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 9 14:17:23 2013
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\catproc.sql
    SP2-0024: Nothing to change.
    SQL> C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\utlrp.sql
    SP2-0024: Nothing to change.
    [oracle@localhost ~]$ oerr sp2 24
    00024,0, "Nothing to change.\n"
    // *Cause:  There was nothing in the SQL buffer when using the CHANGE
    //          command.
    // *Action: Make sure the SQL buffer is not empty before using the
    //          CHANGE command.
    it should be done as below
    SQL> @C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\catproc.sql
    you neglected to actually include the "AT SIGN" @ preceding the script name

  • Java SOAPClient RenderFormException error is: operation style: "rpc" not supported

    Hello,<br /><br />I am trying to get a simple command line test program to invoke the Adobe Form Server 7.0's AdobeFSService and generate a PDF. <br /><br />The following is the method code<br /><br />private static byte[] getPDF(byte[] inXML)throws RenderFormException, IOException {<br />          byte[] cContent =null;<br />          <br />//          Create a SOAPClient object<br />          SOAPClient formServer = new SOAPClient();<br />          String sEndPointURL="http://adobeformserver:8080/jboss-net/services/AdobeFSService";<br />//          Set the soap end point<br />          formServer.setSoapEndPoint(sEndPointURL);<br />//          Declare and populate local variables to pass to renderForm<br />          String sFormQuery = "test.xdp"; //Defines the form design to render<br />          String sFormPreference = "PDF"; //Defines the preference option<br />          String sContentRootURI = "http://adobeformserver:8080/myapp/Forms/xdp";<br />          String sTargetURL = "http://<AppServer>:<AppPort/LoanApp>/HandleData";<br />          String sApplicationWebRoot = "http://<AppServer:<AppPort>/LoanApp";<br />          <br />                    <br />          try{<br />//               Call renderForm<br />               IOutputContext myOutputContext = formServer.renderForm(<br />                         sFormQuery, //sFormQuery<br />                         sFormPreference, //sFormPreference<br />                         inXML, //cData,<br />                         "CacheEnabled=False",//sOptions<br />                         null,//sUserAgent,<br />                         null, //sApplicationWebRoot<br />                         null, //sTargetURL<br />                         sContentRootURI, //sContentRootURI<br />                         null //sBaseURL<br />               );<br /><br />               <br /><br />//               Create a byte array. Call the IOutputContext interface's<br />//               getOutputContext method<br />               cContent = myOutputContext.getOutputContent();<br /><br />               <br />          }<br />          catch(RenderFormException rf){<br />               System.out.println("RenderFormException error is: " + rf.getMessage());<br />          }<br />//          Catch a thrown exception<br />          catch (Exception ioEx)<br />          {<br />               System.out.println("Exception error is: " +ioEx.getMessage());<br />          }<br /><br />          return cContent;<br />     }<br /><br />I can generate the WSDL correctly when i hit the AdobeFSService,<br />but when I run this program, I get an error <br /><br />RenderFormException error is: operation style: "rpc" not supported<br /><br />Can somebody please give me some insight or suggestions<br /><br />Thanks,<br />Kevin

    Got it to work, There was a problem with the libs I used in the CLASSPATH.
    I then changed it to use libraries from JBoss 3.2.5's jaxrpc,saaj,..., the jars in the client dir, and Axis 1.4's libs
    Works like a charm.

  • [PWS0007] Operation result set not found.

    Hi,
    I am working with java,db2 on AS/400.
    When I am using my application with multiple users hitting the submit at the same time,I am getting
    the following error:
    Exception: [PWS0007] Operation result set not found. Cause . . . . . : The handle specified for the operation result set to be filled, returned, or used as the based on result set is not found for the server.
    Recovery . . . : Correct the operation result set handle and do the function again.
    Can anybody please tell me what could be the problem?
    Thanks in advance.

    problem could be
    1)Resulsets objects are not closing after getting data (like end of rRrsultSet while loop)
    2)it is better close statements and connection objects also.

Maybe you are looking for