Make search criteriaItems as requird/selectivlyReq conditionaly in af:query

Hi,
Consider the DepartmentVO. It has DeptName, ManagerName, TotalSalary of Employees in the department. I created a view criteria which includes these 3 fields as the view criteria items. I dropped the view criteria as a query panel in the Ui.
I don't want mark any of these attributes (view criteria items) as required or selectively required.
In the search page, I don't want to allow the user to search only with TotalSalary. If your wants to search on TotalSalary, I want to make the DeptName as required/selectively required. At the same time, if user wants to search with ManagerName I DONT want the DeptName as required/selectively required.
In my actual use case, I have 2 transient attributes (TotalAmt, TransactionDate) for which am getting the values from the ViewAccessors. When I search with TotalAmt, it is taking too much time to return the results. To avoid this, I want to make some other field like MerchantName , as required criteria item when user search only with the field TotalAmt.
Please share your thoughts.
Thanks.

Hi,
you can override the query listener on the af:query component and if your complex condition is not met, show an error message (either you show an FacesMessage message or open a popup dialog) and don't execute the query
See:
http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf
and
"http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf" (page 15) http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf
The latter document is needed as af:query supports switching view criterias (and thus searches) in which case your field dependencies may change
Frank

Similar Messages

  • How do I add Smart Contacts to my iPhone? Using these makes searching for a Contact so much easier, but this feature seems only to be available on my Mac

    How do I add my Smart Contacts (on  my Mac), to my iPhone? The Smart Contacts facility makes searching for a Contact so much easier, but this facility does not seem to be available on my iPhone.
    Any suggestions?

    How do I add my Smart Contacts (on  my Mac), to my iPhone? The Smart Contacts facility makes searching for a Contact so much easier, but this facility does not seem to be available on my iPhone.
    Any suggestions?

  • I can't find folder when I make Search with new OS X Mavericks update?

    1- I can't find folder when I make Search with new OS X Mavericks update? I have 4 Tr HD when am looking for my file I have to make search but now search can't find files?????
    2- alt is not working?

    Hello,
    I use to do search like this before I update my Mac, how I can do it now?

  • How to make search between two dates accept null not obligatory search proplem

    Hi guys when i search record between two dates it works ok success but you must enter date from and dateto first to  to make search
    i will show what i need from this example
    I need to search dynamic by 4 textbox
    1-datefrom
    2-dateto
    3-EmployeeNo
    4-EmployeeName
    but search i need must be dynamic meaning
    if i enter employee no only give me employee no found in database
    if i enter employee name give me employees found with this name using like
    if i enter all 4 text box null and enter button search get all data
    but i have proplem in this query when i need to search by click search button
    i must write date from and date to firstly then write employee no or employee name if i need to search
    so that i need to search by employee no alone or employee name alone without using date from and date to
    And if i search without using datefrom and dateto it give me message error 'string wasnot recognized as valid datetime"
    my stored procedure and code as following :
    ALTER proc [dbo].[CollectsearchData]
    @StartDate datetime,
    @EndDate datetime,
    @EmployeeID  NVARCHAR(50),
    @EmployeeName  nvarchar(50)
    as
    Begin
    Declare @SQLQuery as nvarchar(2000)
    SET @SQLQuery ='SELECT * from ViewEmployeeTest Where (1=1)'
    If (@StartDate is not NULL)
    Set @SQLQuery = @SQLQuery + ' And (joindate >= '''+ Cast(@StartDate as varchar(100))+''')'
    If (@EndDate is not NULL)
    Set @SQLQuery = @SQLQuery + ' And (joindate <= '''+ Cast(@EndDate as varchar(100))+''')' 
    If @EmployeeID <>''
    Set @SQLQuery = @SQLQuery + 'And (EmployeeID = '+ @EmployeeID+') '
    If @EmployeeName Is Not Null
    Set @SQLQuery = @SQLQuery + ' AND (DriverName LIKE
    ''%'+@EmployeeName+'%'') '
    Print @sqlQuery
    Exec (@SQLQuery) 
    End
    Function using
    public DataTable SearchDataA(string ConnectionString,string EmployeeNo,string EmployeeName, DateTime StartDate, DateTime EndDate)
    SqlConnection con = new SqlConnection(ConnectionString);
    SqlCommand cmd = new SqlCommand();
    cmd.Connection = con;
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.CommandText = "CollectsearchData";//work
    cmd.Parameters.Add("@StartDate", SqlDbType.DateTime);
    cmd.Parameters.Add("@EndDate", SqlDbType.DateTime);
    cmd.Parameters.Add("@EmployeeID", SqlDbType.NVarChar, 50);
    cmd.Parameters.Add("@EmployeeName", SqlDbType.NVarChar, 50);
    cmd.Parameters["@StartDate"].Value = StartDate;
    cmd.Parameters["@EndDate"].Value = EndDate;
    cmd.Parameters["@EmployeeID"].Value = EmployeeNo;
    cmd.Parameters["@EmployeeName"].Value = EmployeeName;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataSet ds = new DataSet();
    da.Fill(ds);
    DataTable dt = ds.Tables[0];
    return dt;
    interface button search
     try
    CultureInfo ukCulture = new CultureInfo("en-GB");             
    FleetManagment.Fleet fleet = new FleetManagment.Fleet();
    DataTable Table = fleet.SearchDataA("Data Source=" + value1 + ";Initial Catalog=" + value2 + ";User ID=" + value3 + ";Password=" + value4 + "",textBox3.Text,textBox4.Text, DateTime.Parse(textBox1.Text,
    ukCulture.DateTimeFormat), Convert.ToDateTime(textBox2.Text, ukCulture.DateTimeFormat));
    dataGridView1.DataSource = Table;
    dataGridView1.Refresh();
    catch (Exception ex)
    MessageBox.Show(ex + "error");

    Yes, the below code should not be passed any value: (I am not sure of the syntax in .NET,Sorry) 
    --If startdate len is 0 - do not assign this value
    cmd.Parameters["@StartDate"].Value = StartDate;
    --If endate len is 0 - do not assign this value
    cmd.Parameters["@EndDate"].Value = EndDate;

  • Hibernate doubt when make search

    Hello,
    yesterday I have got this problem:
    I have my java app that use Hibernate (3.0) for make search on DB (MySQl 5.0).
    If I sent a search method (with hibernate method "session.createCriteria"), sometimes it worked good, and sometime it gives me this error:
    org.hibernate.MappingException: Could not read mappings from resource: basket.hbm.xml
    at org.hibernate.cfg.Configuration.addResource(Configuration.java:485)
    at org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1465)
    at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1433)
    at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1414)
    at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1390)
    at org.hibernate.cfg.Configuration.configure(Configuration.java:1310)
    at org.hibernate.cfg.Configuration.configure(Configuration.java:1296)
    at it.eminds.data.Basket.searchBasketInfo(Basket.java:406)
    at it.eminds.ws.basket.Basket.BasketWs.OTA_SearchBasketRQ(BasketWs.java:8926)
    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 org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:388)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:283)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:453)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:834)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
    Caused by: org.hibernate.MappingException: Could not parse mapping document in input stream
    at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:431)
    at org.hibernate.cfg.Configuration.addResource(Configuration.java:482)
    ... 36 more
    Caused by: org.dom4j.DocumentException: Connection timed out: connect Nested exception: Connection timed out: connect
    at org.dom4j.io.SAXReader.read(SAXReader.java:484)
    at org.hibernate.cfg.Configuration.addInputStream(Configuration.java:422)
    I don't understand why I have this error "Could not read mappings from resource: basket.hbm.xml" if sometimes it works!.
    Can you please helpme to understand the problem (or cause)?? It's very URGENT!!
    Thanks,
    Francesco
    These are my hibernate xml file:
    hibernate.cfg.xml
    <?xml version='1.0' encoding='utf-8'?>
    <!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
    <session-factory>
    <property name="hibernate.connection.driver_class">com.sybase.jdbc3.jdbc.SybDriver</property>
    <property name="hibernate.connection.datasource">java:comp/env/jdbc/lmt</property>
    <property name="show_sql">true</property>
    <property name="dialect">org.hibernate.dialect.SybaseDialect</property>
    <property name="hibernate.hbm2ddl.auto">update</property>
    <!-- Mapping files -->
    <mapping resource="basket.hbm.xml"/>
    </session-factory>
    </hibernate-configuration>
    basket.hbm.xml :
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
         "-//Hibernate/Hibernate Mapping DTD 2.0//EN"
         "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
    <hibernate-mapping>
         <!-- it.eminds.data.Basket root -->
         <class name="it.eminds.data.Basket" table="Basket">
              <composite-id>
                   <key-property name="id" column="id" />
                   <key-property name="bookID" column="bookID"/>
              </composite-id>     
              <property name="utente" type="string" >
                   <column name="utente" not-null="false" sql-type="text"/>
              </property>
              <property name="carteDiCredito" type="string" >
                   <column name="carteDiCredito" not-null="false" sql-type="text"/>
              </property>
              <property name="cliente" type="string" >
                   <column name="cliente" not-null="false" sql-type="text"/>
              </property>
              <property name="spedizione" type="string" >
                   <column name="spedizione" not-null="false" sql-type="text"/>
              </property>
              <!--<property name="bookID" column="bookID" type="string" length="16"/>-->
              <property name="dataBooking" column="dataBooking" type="timestamp"/>
              <property name="bookId_Gest" column="bookId_Gest" type="string" length="16"/>
              <property name="pos" type="string" >
                   <column name="pos" not-null="false" sql-type="text"/>
              </property>
              <!-- tabella Array servizi type="boolean" -->
              <bag name="servizi" cascade="all">
    <key>
         <column name="uid" />
         <column name="ubookID" />
    </key>
    <one-to-many class="it.eminds.data.ServiceBasket"/>
    </bag>
         </class>
    <class name="it.eminds.data.ServiceBasket" table="serviceBasket">
              <id name="id" unsaved-value="0">
    <generator class="increment"/>
    </id>
         <property name="pax" type="string" >
         <column name="pax" not-null="false" sql-type="text"/>
         </property>
         <property name="RQBook" type="string" >
              <column name="RQBook" not-null="false" sql-type="text"/>
         </property>      
         <property name="RSBook" type="string">
              <column name="RSBook" not-null="false" sql-type="text"/>
         </property>
         <property name="RSPrev" type="string">
              <column name="RSPrev" not-null="false" sql-type="text"/>
         </property>
         <property name="Type" column="Type" type="integer"/>
                   <property name="idServizio" column="idServizio" type="integer"/>
                   <property name="failed" column="failed" type="string" length="12" />
                   <property name="invoiceNumber" column="invoiceNumber" type="string" length="12" />
                   <property name="notaNumber" column="notaNumber" type="string" length="12" />
                   <property name="startDate" column="startDate" type="timestamp"/>
                   <property name="correlation" column="correlation" type="string" length="10" />
    </class>
    </hibernate-mapping>

    Hi,
    you can override the query listener on the af:query component and if your complex condition is not met, show an error message (either you show an FacesMessage message or open a popup dialog) and don't execute the query
    See:
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf
    and
    "http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf" (page 15) http://www.oracle.com/technetwork/developer-tools/adf/learnmore/85-querycomponent-fieldvalidation-427197.pdf
    The latter document is needed as af:query supports switching view criterias (and thus searches) in which case your field dependencies may change
    Frank

  • How to make search string for the searched text containing single quote?

    Hi all,
    When trying to search some Contacts from Eloqua, I have to make a search string which would list out some specified EmailAddress.
    Unfortunately, I meet several emails who have single quote in their spelling.
    I got 'invalid format' error when both using them directly and making single quote twice.
    Any suggestions?
    Thanks,
    Biao

    When testing, the following examples:
    GET /Api/rest/1.0/data/contacts?search=emailAddress=bm'[email protected]
    GET /Api/rest/1.0/data/contacts?search='emailAddress=bm'[email protected]'
    GET /Api/rest/1.0/data/contacts?search=emailAddress="bm'[email protected]"
    GET /Api/rest/1.0/data/contacts?search="emailAddress=bm'[email protected]"
    All return:
      "elements":
        "type":"Contact",
        "id":"1421620",
        "createdAt":"1419611518",
        "depth":"minimal",
        "name":"bm'[email protected]",
        "updatedAt":"1419611519",
        "emailAddress":"bm'[email protected]"
      "page":1,
      "pageSize":1000,
      "total":1
    Likewise, the following returns nothing:
    GET /Api/rest/1.0/data/contacts?search=emailAddress='bm'[email protected]'
    Hopefully this helps,
    Bojan

  • How do I make search case sensitive

    I created a search region of type "query" using a simpleSearchPanel. The instructions say the search is case-sensitive when running the page but it appears it is not. Can anyone tell me how to make the search case sensitive?

    Please check if you have followed these guidelines
    Rule 2 : If your view attribute is of type String(VARCHAR2), and if the item has the Selective Search Criteria property set to false, then OA Framework generates a case-insensitive simple WHERE clause based on the CRITERIA_CONDITION and the CRITERIA_VALUE.
    Rule 3: If your view attribute is of type String(VARCHAR2), and the item has the Selective Search Criteria property set to true, then OA Framework generates a case-insensitive WHERE clause using a four-way join to ensure that the index is used.

  • How to make search engine results lead to a specific slide

    Through Google Analytics I found that a search in Bing for a particular item took the user to my page. The third slideshow, one of three tabbed slideshows on that page, is the default and shows first. The user promptly left my site because this wasn't what they were looking for. Instead, if possible for that search should land on the slide contained within the second slideshow. The search results in Bing showed the caption for the correct slide. Is there any way to make sure they then go directly to the correct slide?  I tried to add anchors to the individual slides or captions but couldn't make it work. Would that even help?

    Thats easy. How many links from each engine do you want, do you want to allow duplicate results (i.e. google and yahoo both reporting the same URL in a listing)?
    Do your own search on Google, Yahoo, etc. Look at the HTML code (typically a table) and look for unique tags or IDs that surround the URL. Google and Yahoo incorporate Click-Streaming into their search result URLs. That is, they don't provide the direct URL, but rather reference it within their own redirector which is simply a CGI program designed to count page hits and by what keyword and then simply redirect your browser to the actual page.
    If you can find out what that redirecting URL is, just filter the HTML that you get from these search engines for that URL and then you know where the URL starts and stops.
    Doing some further research will show you how to extract the actual URL from the redirecting URL. Just look at the URL and remove the www.google.com or yahoo.com from the begining and strip out all of the CGI that comes after it until you get to another URL.
    Example: http://search.google.com/redirector?this-is-google=true&url=www.some-server-that-you-want.com
    First off, we now know where within the HTML a link starts, and doing a little more filtering, we can throw out the "search.google.com" and the first CGI of "this-is-google&url=" and then simply read and file the "www.some-server-you-want.com"
    Simple.

  • How To Make Search Query Showing the Result As List of Buttons.

    Can some one give me an idea how to start to make a Search Query showing the results as list of buttons.. i have already have my buttons with names. i just dont know how to make a search query.
    this is my on screen keyboard i made..
    im making a system that the result were a list of buttons.. showing like this
    This was supposed to be the output of the query that i need to do..
    Please help me.. i just need a idea or tips how to make this one.

    Here is code I posted recently for another question
    Public Class Form1
    Const BUTTON_SIZE As Integer = 20
    Const SPACE As Integer = 5
    Sub New()
    ' This call is required by the Windows Form Designer.
    InitializeComponent()
    ' Add any initialization after the InitializeComponent() call.
    Dim buttons As New List(Of List(Of MyRadioButton))
    For row = 1 To 6
    Dim newRow As New List(Of MyRadioButton)
    buttons.Add(newRow)
    For col = 1 To 6
    Dim button As New MyRadioButton()
    button.row = row
    button.col = col
    button.Height = BUTTON_SIZE
    button.Width = BUTTON_SIZE
    button.Left = col * (BUTTON_SIZE + SPACE)
    button.Top = row * (BUTTON_SIZE + SPACE)
    button.Name = String.Format("radGr1{0}_{1}", row.ToString(), col.ToString())
    Me.Controls.Add(button)
    newRow.Add(button)
    AddHandler button.CheckedChanged, AddressOf Radio_Change
    Next col
    Next row
    End Sub
    Private Sub Radio_Change(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim button As MyRadioButton = CType(sender, MyRadioButton)
    Dim row As Integer = button.row
    Dim col As Integer = button.col
    End Sub
    End Class
    Public Class MyRadioButton
    Inherits RadioButton
    Public row As Integer
    Public col As Integer
    End Class
    jdweng

  • Script that make search and replace based on external configuration file

    Hello!
    As I have to make a lot of string replacements on text file, I need to write the script that takes values from separate file. It can be on this or other format:
    old;new
    Search_string;Replace_string
    I have searched the web and only found this
    thread  but the script download link on this
    thread does not function (I have played with import-csv and loops, but I think that I have a lack of the Powershell knowledge to realize this).
    Any help would be appreciated.

    One possibility:
    'old;new',
    'Search_string;Replace_string'
    ) | set-content replacements.txt
    $replace = (Get-Content replacements.txt |
    foreach {"replace('{0}','{1}')" -f $_.split(';')}) -join '.'
    $string = 'old stuff Search_string'
    $newstring = Invoke-Expression ('$string.' + $replace)
    $newstring
    new stuff Replace_string
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Please: Make search feature to pinpoint songs in multiple playlists

    There is no way to locate certain songs in multiple playlists, only searching songs in individual playlists or searching in the whole "Music" list.
    Is there any update that iTunes can create so I when I search for a song it can also *highlight whether that song is located in certain playlists (not just a huge music folder)*
    I have thousands and thousands of songs and I need to be able to locate them within different compartmentalized playlists (not just widely on the Music broadlist)
    Please take this suggest when making the newest update for iTunes 10+
    Any people who feel the same, please reply

    H d (and others looking to figure out which playlists a song may be part of),
    I hope tt2 won't mind me clarifying his/her advice:
    The following does not work:
    Option-click on any song and look at Show in playlist to reveal which playlists that song is in.
    It should read Control-click.
    I was just doing a search to find out how to do what you're asking about. As you've probably discovered, option-click doesn't do anything. Hold down the control key and click on a song, then in the window that opens, go down to Show in Playlist and it will show you which playlists that song is in. If you then click on the song, it will bring you to the playlist that song is in.
    I agree with you that it would be nice to have this feature clearly labeled, and make it easier to use. Like you, I have thousands of songs, dozens of playlists for different purposes. I just wanted to make sure a number of songs were distributed across a number of different playlists, and couldn't believe I'd have to manually search through all my folders and playlists. Glad I found this to at least get me on the right track so I could figure out how to do it. Still wish it was easier (even a keyboard command), but it's certainly better than nothing.
    Message was edited by: tjk

  • Wake sleep button makes search screen appear. Pls help!

    pressing the sleep wake button makes my search screen appear. tried to press home/sleep wake but no luck. reconfigured as new ipad: no luck.
    Any suggestions?
    new ipad, 3rd gen.
    thanks,
    Fred

    solved. do not touch screen when pressing button. say it: noob

  • With Firefox 5.0.1, I can no longer have search terms highlighted when I search via cache. This makes searching for key concepts impossible now. Is there a plan to fix this issue?

    In the past, before Firefox 5.0.1, I would search for key terms via the cache mode; thus, the terms would be highlighted in various colors so that I could scroll down the page and find the exact terms.
    This is no longer functioning since I downloaded 5.0.1
    I use an iMac 3.06 Ghz Intel Core 2 Duo, 1o.6.8.

    The new tab page (about:newtab) wasn't introduced until a later version of Firefox (iirc, ''Firefox 10'') , which is why that pref can't be found.
    Sounds like your father picked up some Malware.
    Maybe this is what you're dealing with.
    http://www.shouldiremoveit.com/IMVU-Inc-Toolbar-34367-program.aspx
    Also, I see a number of Plugins listed to bee concerned about.
    Toolbar Plugin
    MindSpark Toolbar Platform Plugin Stub for 32-bit Windows
    WildTangent Games App V2 Presence Detector

  • Make Search bar in "Save/Open" dialog box search in filename only

    By default it searches inside files, is there a way to restrict it to filenames?

    Not to start it going, no. But you can change it to name only. Type something, anything, in the Search box. When the search gets started you'll notice you have a new line under the toolbar that has
    Computer Home "SomeFolder" Save +
    With "SomeFolder" probably being either the last folder used in the application, or else the one you have navigated to. Then there is the Save button (although I can't imagine what it would actually be useful for) and the "plus" inside a little circle. Click the + and another line appears, with "Kind: Any"--change to Name in the drop down menu and select which of the usual options you want (Contains, Begins with, etc). BTW, I was just fooling around with it, and discovered that while the Name option works perfectly well, the options for Date Created and Date Modified don't work at all, although Last Opened seems to be OK. Ah well.
    Francine
    Francine
    Schwieder

  • Make Searching in CS3 Bridge more like searching within Photoshop Album

    For example, in Photoshop album if I wish to see photos that contain BOTH "Tag1" and "Tag2", I click on these two tags and only those photos that contain BOTH of these tags appear.
    In Bridge CS3 if I click "Keyword1" and "Keyword2", I see every photo that contains all of these individual keywords. What if I only want to see those photos that contain BOTH "Keyword1" and "Keyword2"?
    Please make seraching within CS3 Bridge more like Photoshop Album.

    If you click on the match box "all criteria met" seems like that should work as you want.

Maybe you are looking for

  • Search help how to restrict number of hits.

    Hi, I have created a search help in SE11, the search help reads a table view and the search help is connected to exit HRMC_PREM_EXIT_A in HR. Everything works fine except for that I want to restrict the number of hits to 500, I don't want to get a re

  • Ipod mini software update issues

    I am trying to restore the factory settings on my ipod mini but am running into issues when I go to do the installation and am getting a prompt that says that the volume must run on Mac OS 10.2.8 (or Mac OS 10.3.8) or higher. Do I have to do the rest

  • Multiple PR line to Single PO line - Possible?

    Hi, We have scenario where we get generate multiple PR lines for a material (from MRP) for same Vendor. Now Need to convert these similar line in a Single PO line. Is there any way to Group by Material to Single PO line? Actully in our system we do n

  • Dns error opening SR/ID/IR

    XI 7.1 Hello people, when i try to open the enterpise service Directory, integration repository ou the service registry it give's me an error. the directory and the repository give me a "can't connect" error the service registry simply http 404 the p

  • Adding another Cluster into existing CSS LB

    Hi, Im in the process of adding a new cluster into the existing LB. I understand the concept of configuring a new LB but adding a new network to it is a question. I have preconfigured the LB with a new service called SPWeb 1-4 and an assign this to t