Attribute searching via WinUI

OK, after much struggle the content search feature is finally working via both WebUI and WinUI interfaces and I am no longer getting the message:
Cannot connect to any WCP Server. Please make sure a WCP server instance is started for the iFS server mapped on drive ...
However via windows when I try to do a search via document name for a document that I know is there (it is coming up via the web) I am getting 0 files found. Please let me know if you have any ideas on this.
Thanx
N
null

I did as you suggested and went directly to the folder that I knew the document was in and performed the search using the exact document title. Again I got 0 files found when I know this not the case.
Thanx for trying to help
N
<BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Alan (Oracle):
The Win UI searches somewhat differently than the WebUI.
It has a "Look In" field. This is a mandatory "Folder-Restricted Query", meaning that only documents in the "Look In" folder and (optionally) its subfolders, will be found. It has this restriction because in order to view the document, it must be accessible by SMB, and the only way to ensure that it will be is to have the path be a subfolder of your mountpoint.
The WebUI by default does not have this restriction, but using Advanced Search, you can do the same thing.
To test whether this is the problem you're having, go to the folder which you know contains the document, and issue a WinUI IFS Find on the Folder. (Or fill in the "Look In" field with the full path, e.g. "e:\public"). <HR></BLOCKQUOTE>
null

Similar Messages

  • How to use an iPad 2 for web search (via 3G only) while using AirPrint via Airoprt express wifi (NOT connected to the internet)

    Heres the setup: I have an IOS 7 iPad 2 that I want to use 3G only for web searches/ emails while using an Airport Express generated wifi bubble (without any connected internett) to print web seraches via airprint to a wifi printer.
    The problem: the ipad deafults to searching via the AE's wifi and vainly waits for the non existent interent to connect. It ignores the available 3G internet.
    The workaround: a) turn off the AE's wifi, search the web via 3G b) once I have something to print, turn the wifi back on and print via airprint and the AE's wifi to the printer.
    The question: Is there a way to turn off the AE's internet access. Using Airport utility, I have tried setting Bridge mode and static IPs to no avail. There is no turn-the-internet-off tick box.
    In the ideal setup I would like the ipad 2 to search the web via 3G only (straight away versus waiting vainly for the AE to find it!!) and then print the results via the AE's wifi and airprint without having to toggle wifi on and off all the time.....
    Thanks in advance,
    Bill...

    Hi,
    You can consider to configure the Forefront TMG Arrays or NLB.
    Planning for Forefront TMG server high availability and scalability
    http://technet.microsoft.com/en-us/library/dd897010.aspx
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • IFS Custom Attribute Search .. can't get to work

    Here is a code snipet off a simple attribute search against the VCARDSTREETADDRESS content class.. I can't for the life of me get it to return any results. Looking in the VCARDSTREETADDRESS table I am sure there is a City = Charlotte.. What am I doing wrong?
    // Join the ContentObject and Document Tables
    JoinQualification joinQualification = new JoinQualification();
    joinQualification.setLeftAttribute("DOCUMENT", "CONTENTOBJECT");
    joinQualification.setRightAttribute("CONTENTOBJECT", null);
    // Search the root folder and descendants.
    oracle.ifs.beans.Folder searchFolderObject = null;
    searchFolderObject = libSession.getRootFolder();
    FolderRestrictQualification folderRestrictQualification = new FolderRestrictQualification();
    folderRestrictQualification.setStartFolder(searchFolderObject);
    // Here is my attribute search
    SearchClause searchClause = new SearchClause(joinQualification, folderRestrictQualification, SearchClause.AND);
    AttributeQualification attributeQualification = new AttributeQualification();
    attributeQualification.setAttribute("VCARDSTREETADDRESS","CITY");
    attributeQualification.setOperatorType("LIKE");
    attributeQualification.setValue("C%");
    searchClause = new SearchClause(searchClause,attributeQualification, searchClause.AND);
    // Set the attribute search class
    AttributeSearchSpecification attribSearchSpecification = new AttributeSearchSpecification();
    String[] searchClasses = {"DOCUMENT","CONTENTOBJECT", "VCARDSTREETADDRESS"};
    SearchClassSpecification searchClassSpecification = new SearchClassSpecification(searchClasses);
    searchClassSpecification.addResultClass("VCARDSTREETADDRESS");
    attribSearchSpecification.setSearchClassSpecification(searchClassSpecification);
    attribSearchSpecification.setSearchQualification(searchClause);
    Search attributeSearch = new Search(libSession, attribSearchSpecification);
    attributeSearch.open();
    SearchResultObject[] sro = attributeSearch.getItems();
    // Returns null ... have many documents in the VCARDSTREETADDRESS class
    // with a city of 'Charlotte'.

    Thanks for your help. I tried going back and simplifying the query so that it was just and attribute qualification and now my query returns every object in the system. The API docs obviously need some help since they even reference deprecated methods :
    // Set the WHERE clause of the Search
    asp.setSearchQualifier(someSearchQual);
    Anyways here my latest code:
    public class QueryTester {
    protected AttributeQualification getAttributeSearchClause() throws IfsException{
    try {
    AttributeQualification attributeQualification = new AttributeQualification();
    attributeQualification.setAttribute("VCARDSTREETADDRESS","CITY");
    attributeQualification.setOperatorType(AttributeQualification.LIKE);
    attributeQualification.setValue("C%");
    return attributeQualification;
    catch (RuntimeException ex) {
    String exceptionText = "RuntimeException in getAttributeSearchClause(). Nested Exception:" + ex;
    System.out.println (exceptionText);
    throw ex;
    catch (IfsException ex) {
    String exceptionText = "IfsException in getAttributeSearchClause(). Nested Exception:" + ex;
    System.out.println (exceptionText);
    throw ex;
    protected SearchClassSpecification getSearchClassSpecification() throws IfsException {
    try {
    String[] searchClasses = {"VCARDSTREETADDRESS","DOCUMENT"};
    SearchClassSpecification searchClassSpecification = new SearchClassSpecification(searchClasses);
    searchClassSpecification.addResultClass("DOCUMENT");
    //searchClassSpecification.addResultClass("VCARDSTREETADDRESS");
    return searchClassSpecification;
    catch (IfsException ex) {
    String exceptionText = "Error in getSearchClassSpecification : " + ex;
    System.out.println (exceptionText);
    throw ex;
    public static void main (String[] args) {
    try {
    QueryTester qt = new QueryTester();
    System.out.println ("Logging in.");
    IfsFileSystem IfsAPI = new IfsFileSystem("cvars", "cvars", "docrunner", "ifssys");
    System.out.println ("Logged on successfully.");
    LibrarySession libSession = IfsAPI.getLibrarySession();
    AttributeQualification aq = qt.getAttributeSearchClause();
    AttributeSearchSpecification attribSearchSpecification = new AttributeSearchSpecification();
    attribSearchSpecification.setSearchClassSpecification(qt.getSearchClassSpecification());
    attribSearchSpecification.setSearchQualification(aq);
    System.out.println ("Perfoming Search...");
    Search attributeSearch = new Search(libSession, attribSearchSpecification);
    attributeSearch.open();
    SearchResultObject[] sro = attributeSearch.getItems();
    if (sro!=null)
    System.out.println ("Results : " + sro.length);
    libSession.disconnect();
    catch (IfsException ifsex) { System.out.println ("IfsException : " + ifsex); }
    catch (RuntimeException rux) { System.out.println ("RuntimeExcpetion : " + rux); }
    BTW. VCARDSTREETADDRESS comes from the IFS example (Developers Guide) and its XML. <Superclass Reftype ="name">Document</Superclass>
    So it is inherited from Document. But if you don't put Document you get an IFSException that says you must include Document in the searchClass. I guess I could use the 'Selector' model but this doen't seem particularlly elegant or as flexible.
    String search = PublicObject.NAME_ATTRIBUTE
    + "= '" + name +"'";
    Selector mySelector = new Selector (ifsSession, Document.CLASS_NAME, search);
    null

  • How to combine a content search with an attribute search with the API

    Hi
    I have been working with searches in Content Services using the API and I have successfully set up the search over the contents of a document and inside of the Category attributes of the document.
    My problem comes when I try to combine this 2 kinds of search, that is when I want to find all the documents that cointain the text "test" and at the same time contain other text into their category attributes.
    What I do is to build 2 SearchExpression's one for the content search and the other for the attributes search and then joining them in a third SearchExpression object using the FdkConstants.OPERATOR_AND. When I search using only the first or the second SearchExpression everything works fine. But when I do the search using the third SearchExpression an ORACLE.FDK.ParameterError:ORACLE.FDK.InvalidSearchExpression
    exception id raised.
    The code I'm using is like this:
    private SearchExpression getMainSE(String contentQuery, CategoryInfo catInfo)
         SearchExpression contentSE = null;
         SearchExpression catSE = null;
         SearchExpression mainSE = null;
         if(contentQuery != null)
              contentSE = this.setupSE4Contents(contentQuery);
         if(catInfo != null)
              catSE = this.setupSE4Category(catInfo);
         if(contentSE != null && catSE != null)
              mainSE = new SearchExpression();
              mainSE.setLeftOperand(FdkConstants.OPERATOR_AND);
              mainSE.setLeftOperand(catSE);
              mainSE.setRightOperand(contentSE);
         else
              mainSE = contentSE != null ? contentSE : catSE;
         return mainSE;
    CategoryInfo is one class made by my own that contains the categoryId of the document and a List of the attributes where I want to search. mainSE is the SearchExpression that is returned.The portion of code that appears to be having problems is this:
    if(contentSE != null && catSE != null)
         mainSE = new SearchExpression();
         mainSE.setLeftOperand(FdkConstants.OPERATOR_AND);
         mainSE.setLeftOperand(catSE);
         mainSE.setRightOperand(contentSE);
    And finally I only execute the search using the mainSE returned by the function:
    // Define search options
    NamedValue[] nv = WsUtility.newNamedValueArray(new Object[][] {
         { Options.FOLDER_RESTRICTION,
              folder != null ? new Long(folder.getId()) : null },
         { Options.SEARCH_VERSION_HISTORY, Boolean.TRUE } });
         SearchExpression mainSE = this.getMainSE(contentQuery, catInfo);
         try
              // Search documents
              NamedValue[] result = sem.search(mainSE, nv, null);
              // etc....
    Is this the correct way to combine a content search with an attribute search???
    I know that this is possible since I have seen that it can be done in the Collaboration Suite UI.
    I hope yoy can help me...
    Thanks in advance

    Not sure if this is a typo (while pasting code on the forum) or is the cause of the problem you describe.
    Shouldn't mainSE.setLeftOperand(FdkConstants.AND) be replaced by mainSE.setOperator(FdkConstants.AND) ?
    Ravikiran

  • Why I can't see some songs in my 30G video Ipod if I search via artist?

    Hi. This is an Ipod question. I load my iTunes library in 2 Ipods,the new 30G video and in the old 20G photo. Why is it that in the 20G Ipod when I search for the songs via artist, all of them appear, but when I search via artist in the 30G Ipod in some cases it only appears one song, and all the others dont, although they are there, cause when I search via song I find them. This is very annoying, cause I hate to search via song. The songs are perfectly edited, the probe is that with the 20G photo Ipod I dont have this problem. I think is a problem with the Ipod cause I been having this problem with 3 different 30 G Ipod video (Mine & my friends). Does anyone has had the same problem?
    Getway   Windows XP  

    Hi Chris.
    Ok every son gneeds artist and album, but why in my 20 G photo Ipod I can see the songs searching via artist without any problem. And why in the new 30G video Ipod it only happens with some artists, cause for example I have 40 u2 songs, some with album name and some not, and all of them appear searching via artist. But with another artist, for example def leppard, I have 15 songs (some with album name, and some not) and searching via artist I can see only the ones in some particular album, and others that also have album name dont appear unless I look for them via song

  • When i search via mozilla i now have to go via mystart incredimail, which i thought i had uninstalled long ago, do you have any association with incredimail and is is now part of mozilla firefox 4 ?

    Question
    when i search via mozilla i now have to go via mystart incredimail, which i thought i had uninstalled long ago, do you have any association with incredimail and is is now part of mozilla firefox 4 ?

    Hmmm, Norton extensions are broken again in Firefox 4.0.1. It seems that Norton didn't allow for Firefox 4.0 security updates when they updated their Firefox extension for Firefox 4.0. Norton says they'll have a fix in two weeks. A Norton user posted a fix in this forum thread.
    http://community.norton.com/t5/Norton-Internet-Security-Norton/Norton-Toolbar-not-compatible-with-FF-4-0-1/td-p/442788

  • Create Attribute Dimension via the JAVA api

    <p>Does anyone know how to create an attribute dimenions via theJava API ?</p><p> </p><p>I can set the dimension type to attribute via<b>setAttributeDimensionDataType</b> but I don't know how toassociate the attr. dimension with a sparse, normal dimension(which is mandatory).</p><p> </p><p> </p>

    Hi Marco,<BR><BR>It is in the IEssCubeOutline interface. Here is sample code from the CreateOutline.java sample code that ships with EDS:<BR><BR>   IEssCubeOutline otl = ... <BR><BR>   IEssDimension product = otl.findDimension("Product");<BR>   otl.associateAttributeDimension(product, caffeinated);<BR><BR>Tim<BR>

  • F4-Help (drop down) in customer search via Tel. No.

    HI,
    F4-Help (drop down) in customer search used to have a search functionality which allowed 'Customer' search via 'Telephone Number'. For example, in tcodes: xd03, vd03 or where ever there is a customer input field is.
    Now in 4.7 this does not exists. Does anyone knows how to restore it?
    Thanks

    Hi Nablan,
    I found a note 195508 which states that modify two views in SE11 (V_CONTACT and VKNK_CONTACT). The second one does not exists in 4.7. The instructions for first one is incomplete.
    I am still searching for answers.
    Thanks for your suggestions to look at DEBI. I am curious as how you found DEBI as the relevent 'search help'.
    Thanks
    Nave

  • Access Enterprise Search via ABAP Web Service

    Hello ES experts,
    I am looking for more information on how to access Enterprise Search via ABAP web service QSDispatcher, using processQuery operation. I created a client proxy and need information on structure of input and output parameters (query and query result)
    Thanks, Srdjan

    Hi Srdjan
    You can access the SAP ABAP system by configuring it in the NW ES admin console, any system with version > 4.6C can be integrated in the search engine.
    The UI for NW ES is a WebDynpro via Web Browser (In the future will be integrated in Widgets and Portal, etc) but i'm not sure if you want to use the WS to access the results of the ES searching or if you want to integrate a WS from ABAP as part of the searching area...
    Please clarify.
    Thanks,
    Best Regards,
    Luis

  • TS3376 Can i search via icloud my lost iphone if it is offline

    Hi,
    i cant find my iphone and the questions i have for you is :
    Can i search via icloud my lost iphone if it is offline ?

    No. It needs to be online, otherwise it has no connection to the internet and nothing can contact it.

  • ITunes 8.1 "searching via arrows" issue

    Anyone else having problems searching via the arrows within your music library. Searching manually by typing in your info is fine, but whenever you click an arrow next to a song/artist you currently have, the iTunes Store times out.

    Similar problem here, but only for podcasts.
    If I click the search arrow from within the podcast section of my itunes library, I get a blank window. However, the search arrow seems to work fine from the music library.
    I can do a manual search, but it's really annoying. Fix please!

  • Set type attribute search help in Web UI

    Hello,
    I've created a set type attribute in the SAP GUI in CRM 2007 which links to value table BUT000. On the product in the SAP GUI, the F4 search help brings up the standard BP search help (COM_PARTNER).
    I've assigned the attribute to the web UI, and the field displays correctly, however when I click on the F4 help, the system only shows me a list of BP numbers without even a description description, and not the standard search help. The response to my OSS message is that this is "standard".
    Any suggestions as to how to enable the correct search help for this?
    Thanks,
    Alison

    Hello,
    This is an example :
      READ TABLE lt_multivalues WITH KEY fieldname = 'ZOPERATION_ID'
      INTO ls_multivalues.
      IF sy-subrc NE 0.
        READ TABLE lt_multivalues WITH KEY fieldname = 'ZKIT_ID'
        INTO ls_multivalues.
      ENDIF.
      IF sy-subrc EQ 0.
    Z search
        CALL METHOD me->search_by_kit
          EXPORTING
            it_search_tab          = it_search_tab
            it_multivalues         = lt_multivalues
            iv_number              = iv_number
            iv_item                = iv_item
            iv_archive             = iv_archive
            iv_call_authority_badi = iv_call_authority_badi
          IMPORTING
            et_guidlist            = et_guidlist
            et_return              = et_return.
      ELSE.
    Standard search
        CALL METHOD me->search_standard
          EXPORTING
            it_search_tab          = it_search_tab
            it_multivalues         = lt_multivalues
            iv_number              = iv_number
            iv_item                = iv_item
            iv_archive             = iv_archive
            iv_call_authority_badi = iv_call_authority_badi
          IMPORTING
            et_guidlist            = et_guidlist
            et_return              = et_return.
      ENDIF.
    You have to fill et_guidlist with the results.
    Benoî

  • How to add Navigation attributes values via ABAP while creation of CVC

    Hi,
    I have a requirement like, I have to add navigational attributes to the cvc record while CVC creation ( /sapapo/mc62 transaction).
    There were two scenarios: 1. Usually when they load master data from BW side those navigation attributes available and when we do CVC creation it's automatically picks those values. If NOT then i have to bring Market segment and Business unit navigational attributes values from ECC via RFC function module by passing MPN and End customer division as a input.
    I am facing problem when BW side if business unit and Market segment were blank.
    Do we have any Function modules available to add navigational attributes data and should update corresponding master data tables.
    Please help me step by step process on this.
    Thanks
    Ravi
    Edited by: REDDY KALLURI on Jan 22, 2011 10:30 PM

    Michael,
    Are you intending this as a commercial solution or a work around?
    To take an existing equivalent, one would build a view in the database tailored for each grid in an Oracle Forms application. Or a separate query layered over tables for each form/grid in a Delphi or Access application? Even if it is ninety nine percent the same over half a dozen forms/grids?
    And now you've added a whole slew of "slightly different" rowSetInfos to maintain.
    So if you wanted to add a column that needs to appear everywhere... you've just increased the workload multi-fold?
    That would be a management nightmare, wouldn't it? Not to mention yet more performance cost and a slower system?
    Hmmmm..... I'm not sure I like where this is headed... someone needs to do some convincing...
    null

  • 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

  • Access to Attribute Type via Java API

    Hi,
    I'm writing an aplication in Java to access out OLAP schema and display certain DIMENSION/LEVEL and ATTRIBUTE values. This is working out really well but I'm hitting one issue at the moment which has me stumped.
    When I display a Dimension value in a table I want to default the attribute we display to a sensible display value. In AWM there is a field "Attribute Type" which offers drop down selections for "User", .... "Member Short Description", "Member Long Description"...
    See the General Tab under Attributes for a particular Attribute. Looking at the Help text for the "Member Long Description" I see the following.
    "Long descriptive names typically used by Oracle Business Intelligence tools for displaying dimension members in selection lists, crosstabs, and graphs." Looks perfect for what I want. My Dataware house architect already has an Attribute for each hirearchy
    marked with this property so in theory I should be able to look for the Attribute in the Dimension with this property and bingo I have my default display Atttribute!
    The problem is I seem to be able to find api's to access every aspect of the MdmAttribute object except this particular property.
    Here is a snippet from the OLAP api sample code augmented with some println's of my own:
    if (mdmAttr.getName().equals(name)) {
         System.out.println("Attribute : " + mdmAttr.getID());
         System.out.println(" name : " + mdmAttr.getName());
         System.out.println(" desc : " + mdmAttr.getDescription());
         System.out.println(" s desc: " + mdmAttr.getShortDescription());
         System.out.println(" type : " + mdmAttr.getType());      
         System.out.println(" type id: " + mdmAttr.getType().getID());
    return mdmAttr;
    None of the avaiable APIs of MdmAttribute seem to fit the bill.
    The question is ... is there an API somewhere I can call on the MdmAttribute object or an associated object that will give me back the "Attribute Type" as listed in this dropdown. Note that getType returns DataType!String which denotes the fundemental type of the Attribute (int, String etc) rather than this abstract Attribute Type property we need. Not listed here is the getDataType() api which also returns DataType!String and seems to be equivalent to the getType api.
    Regards
    Fergal

    One small clarification if its not already obvious. We are using the OLAP Java api's directly ... not via BI Beans.
    Regards
    Fergal

Maybe you are looking for

  • How to update the default date format in OBIEE 11G.

    Hi All, How to change the default date format in OBIEE 11g from the MM/DD to DD/MM. Could anyone please help me out ASAP? Thanks, Arpan

  • URL not active in UWL

    I'm trying to pass a URL from a workflow container to a task in the UWL. I can display the URL when I open the task, but the URL is not active. I cannot click on the link. Any suggestions? This is the code that I'm using in my XML file: <DisplayAttri

  • Problems with App Store since installing Mountain Lion

    I have recently installed Mountain Lion and since then have been unable to use the App Store. When I launch it comes up with an error message stating 'App Store cannot verify a secure connection with the App Store.Would you like to connect anyway?' 

  • DVD Drive is not recognised in My Computer on Satellite 300 - 11V

    When I open My Computer all that appears is the Hard Drive Devices and Other Devices. I have looked in Device manager and in the option for the DVD drives there is a ! in a yellow triangle next to my DVD drive. I have clicked on properties on the DVD

  • Simulation of high Portal application load

    Hi all, does anybody has tested Portal environment using some external application simulating high usage of the server. I need to test my production environment before I will expose it for normal usage in my company. I will appreciate for anybody exp