Search for own settypes / attributes of iObject

Hello,
i created some Z-Settypes with own Z-Attributes for individual objects in CRM.
I also created the assignmentblocks for this Z-Settypes. Now i´m able to maintain the Z-Attributes in Webclient UI.
My next step would be to search for individual objects (view PRDIOQR/SEARCH) using my Z-Attributes.
Does anybody know what i need to do?
The view is already enhanced.
I found in GENIL_BOL_BROWSER own notes with my settypes.
No i need to know how to bring this on the search view to search with my Z-Attributes for i objects?
Thank you
Best regards
Manfred

Hi Anne,
Have a look of the <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647973&_SCENARIO">CIC cookbook</a>. This might help.
<b>Reward points if it helps!!</b>
Best regards,
Vikash.

Similar Messages

  • How to search for a "singleselect" attribute

    Hi experts,
    currently I have got some problem with the "advanced search" function in SAP IdM 7.1 SP3 UI. I would like to build a dropdown-menu for searching a certain attribute A in the advanced search modus in the IdM UI. Therefore, i have define the attribute A as a "single select" attribute, and also defined some valid values for this attribute. In the modify-modus, it work pretty well. I can choose the value from the dropdown menu. But in the advanced search modus, I can see the dropdown-button, but the dropdown menu is empty. I cannot see the value I have defined there.
    Is this a bug of the UI??
    Can anyone help me to solve the prolbem? Or does anyone have other idea to build a dropdown menu in the advanced search modus?
    Thanks a million in advance!
    BR
    Xuan

    You can't search through email content using buil-in search
    If you're using Gmail, you can use their native Google Mail app which will allow you to search through body content and server-stored emails.

  • Xml search for specific node/attribute

    Hi,
    I load an xml in as3 and need to find and output (as an
    XMLList) a specific node with a specific attribute (example:
    <xs:element name="abcd"> ), or at least find out its path
    (after, I would know what to do to get the XMLList). I looked at
    the XPath classes for Actionscript but the documentation is very
    poor and I did not see any method doing this. Could someone help me
    please? If no method exists, how can I loop through all the xml and
    test each node to see if it is the proper node I am looking for?
    thanks so much in advance for your help
    Pierrot

    You could do it this way, using the descendant accessor:
    var xml:XML =
    <data xmlns:xs="
    http://www.w3.org/2001/XMLSchema">
    <xs:element name="abcd">
    <tagA>hjfhsldf</tagA>
    <tagB>dummy stuff</tagB>
    </xs:element>
    <xs:sequence>
    <xs:element name="dd">
    <tagA>words</tagA>
    <tagB>dummy stuff too</tagB>
    </xs:element>
    </xs:sequence>
    </data>;
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList = xml..xs::element.(@name=="dd");
    trace(nodelist)
    If you need generic code that accounts for no namespaces, you
    can use
    something like this:
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList =
    (xs == null || xs == undefined)
    ? xml..element.(@name=="dd");
    : xml..xs::element.(@name=="dd");
    trace(nodelist)

  • Search for attributes

    How do you turn on searching for master data attributes in Bex?  I believe this can only be done for display attributes correct?
    Thanks,
    TMS

    Hello Tracy,
      U.P chamarthy is correct.
    This is mentioned in help page:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/dd/f470375fbf307ee10000009b38f8cf/content.htm
    Sequence of Attributes in Input Help
    You can determine the sequence in which the attributes for a characteristic are displayed in the input help. There are the following values for this setting:
    · 00: The attribute is not displayed in the input help
    ·        01: The attribute appears in the first position (far left) in the input help
    ·        02: The attribute appears in the second position in the input help.
    ·        03: ......
    Altogether, only 40 fields are permitted in the input help. In addition to the attributes, the characteristic itself, its texts, and the compounded characteristics are generated in the input help. The total number of fields cannot be greater than 40.
    Thanks,
    Sheik Bilal

  • Search for closed messages

    Hello Experts,
    does anybody know, how to search for own OSS messages, that are already closed? Searched in a lot of places, but could not find any information on that.
    Many thanks for some hints!

    Hi,
    Yes, you can search for closed OSS messages by following below steps.
    - Go to your OSS message Inbox
    - In the In box, you get a search field named "Search for....". Select "Custom Messages" for that drop down. and then press "Go" button next to it. (What default appear there is also "Custom Messages"
    - Now you'll directed to a "Basic Search"
    - In here, if you know the message number you can directly search the message, regardless of the status.
    - If you want only to list "Closed" messages, then select "Confirmed" under status drop down and press "Search" button
    It'll give you all closed messages.
    Hope this helps you!
    Thanks and best regards,
    Anupa

  • Powershell search for a word and use the next word

    Here is the skinny.  I am trying to easily part through a event log of print jobs.  I export it to a CSV, grab only the events that pertain to what I need but I am stuck there.  Here is a sample of what I need help with.
    Microsoft Word - Test Print owned by user1 on computer1 was printed on printer1 through port
    Obviously document name, user1, computer1 and printer1 will be different in almost every case.  How do I parse through this and grab the username, computer and printer.  I was thinking search for "owned by", but how do I grab the name?
    Thanks for the help.

    ok now I am running into another issue.  Apparently the nuances of splitting by word seems to be los on me.
    when I do
    foreach ($job in $printjob) {        $test = $job.split("owned by")        echo $test}
    It will then split the line by each and ever "o", "w", "n", "e", "d", etc.....  I even tried $test = $job.split("'owned by'").  Any ideas?
    I feel like I should explain why this is happening.
    When you call $job.Split(), you're calling the .NET Split() method of the object System.String.
    If you look at the overloads of split (i.e., all the different ways you can call String.Split) - link here https://msdn.microsoft.com/en-us/library/system.string.split%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396 -,
    you'll notice that the only way of calling String.Split() with a single parameter is if you pass a char[], an array of characters.
    Now, if you were coding in C# or VB.NET and you did... String.Split("owned by"), you'd get an error saying that it's expecting a char[] but you gave it a string.
    Powershell however is a bit 'smarter' and it tries to accommodate... It knows that the method expects a char[] and it knows you gave it a string, but it also knows how to convert it to a char[], so it does that, and that's what the method String.Split()
    receives.
    And what happens when the method String.Split() receives a char[]? It splits on every single character in that char[], as you've seen :)
    How to fix it? Well, there are two overloads that accept a string[], so you can use those. Now here's an interesting fact...
    In the same way that PowerShell converted a string to a char[] to accommodate the needs of the method you were calling, it can also convert a string into a string[], so you could do this:
    $job.Split("owned by", [System.StringSplitOptions]::None)
    You're passing it a string... and a [StringSplitOptions] object, so you expect it to call the third overload from the page I provided earlier.
    But if you run it... you still get the same stuff as before! What gives?
    Well, seeing as in this particular case there is an overload that receives char[] and another that receives string[] and you passed a string, which means PowerShell will always have to convert it into something anyway... You have no control
    over what PowerShell will decide to convert the string to. It could convert to char[] or to string[]. In this case, because the definition of the char[] method appears before the string[], that gets picked.
    So, finally... how to force PowerShell to pick the string[] overload? Well, don't give it a choice!
    $job.Split([string[]] "owned by", [System.StringSplitOptions]::None)
    So here I'm casting the string into a string[] before it gets passed to the method, so PowerShell does not need to perform any conversion itself and everything is right with the world.
    Hope this helps :)

  • Help needed in Inbox search for Custom attribute

    Hi,
    We have  a requirement where in we are having a custom attribute on Service request to store the ECC Order number.
    We have enhanced the Inbox search to retreive all the service requests havig the ECC order number. 
    Here we are encountering a problem. i just created a new crm service request and entered order number 1234. and now when i search for the same in Inbox search giving the criteria order number as 1234. I get no results found. But when i extend the max list to 2000, then i see the service request appearing in the result list. not sure about the algorithm that is designed for inbox search.
    Any pointers on how to resolve this issue would be of great help.
    Thanks,
    Udaya

    Hi,
    I do not have the time to research this completely, but I had a short look into the class you posted.
    In the GET_DYNAMIC_QUERY_RESULT there is a call to CL_CRM_QCOD_HELPER->PREPROCESS( )
    A little bit lower there are blocks marked by comments for the single searches that are handled by this class. I had a look into the campaign_serach() method. There if you scroll a little bit down (around line 123) they set all search parameters to SIGN = 'I' OPTION = 'EQ'. This is done several times below as well.
    Set a breakpoint in the proprocess() method and check which of the blocks is called and how they handle your search criteria.
    Hope it helps.
    cheers Carsten

  • Search for Property in own coding

    Hello,
    for my custom search component i would like to search for an property. I will the user give the possibility to search for the Contenttype. For example PDF, html or Text.
    I try this (but donts works)
    private IQueryEntryList createQuery() throws WcmException {
    SearchQueryListBuilder sqb2 = new SearchQueryListBuilder();
    sqb2.setSelectedCustomProps("sapportals.com/xmlns/cm:contenttype(value"+ContentType.TEXT_PLAIN+")");
    return sqb2.buildSearchQueryList();
    The other question regarding this problem i have is: How can i connect the property query as AND with the searchwords.
    Any help is welcome,
    best regards,
    Patrick
    Message was edited by: Patrick Höfer

    Hi Patrick,
    the namespace in question is "http://sapportals.com/xmlns/cm" (including "http://"), the alias is "default". The namespace you gave here cannot work in any case.
    Behind "value", a "=" is missing.
    If your "ContentType.TEXT_PLAIN" matches the real values of this property, one cannot see from the code.
    To compose different queries through "AND", add an AND IQueryEntry to the IQueryEntryList and then your own IQueryEntry(List). See https://media.sdn.sap.com/javadocs/NW04/SPS15/km/com/sapportals/wcm/service/indexmanagement/retrieval/search/IQueryEntry.html for further details.
    Hope it helps
    Detlev

  • The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

  • Search for display attributes in Web reporting

    Hello,
    When I execute a query in Excel, in the variable entry screen, I can search values for material, for example, using some display attributes as Colour or Size. I mean, I want to execute the report for materials whose colour is white. I can open the matchcode for Material, I select the value "white" for the Colour display attribute, and I get a list of all the materials with that colour. The report is executed for those materials.
    However, when I execute the same report using Web reporting, I don't have the display attributes in the selection screen, to restrict the material. Once the report is executed, in the Navigational block, if I filter the material, there is an option called "Search for display attributes activated", where I can restrict per Colour, but only for one value.
    I have two questions related to this topic:
    1) Is it possible to have the functionality "Search for display attributes activated" in the variable entry screen, for Web reports, in the same way it is available in the reporting via Excel?
    2) Is it possible to configure that functionality, in order to restrict several values for the display attribute at the same time (in my example, for Colours "white", "black" and "red" at the same time)?
    Thanks very much for your help
    Patricia

    Hi Patricia,
    Looks like you have some new navigational attribute requirements, don't you think? I'm sure that would solve your issue, though maybe you're trying to avoid using navigational attributes (it is usually said that using navigational attributes is slower).
    Maybe you can do a test on BEx to check if your query is considerably slower when filtering directly by material code (by filtering on the selection screen using display attributes) or using a navigational attribute.
    Match codes on web reporting have lost some functionalities compared to BEx (such as importing a list of values from a file, for instance).
    Regards,
    David.

  • Search function for own Shapes

    Hallo,
    i want to search for my selfmade Visio Shapes.
    The Visio search function can´t find my Shapes. I copied my Shapes in C:\Users\Username\Documents\My Shapes but is doesent work.
    What´s my mistake?
    Thanks in Advance

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Which Visio's version do you use? Visio 2013 or other.
    Did you get some error messages? Like: Could not find a match.  Please search again.
    Did you search the build-in shapes?
    If you can't search all of the local shapes, this issue may be caused by the "windows search" option disabled. Please see this
    thread, I copied the suggestion here:
    ======
    I have new information on the issue with 64-bit systems and Visio 2007/2003 versions.  I was incorrect when I stated this was not able to work properly on 64-bit systems.
    The missing link in our testing has been the enabling of the Indexing Service after the installation of the 64-bit IFilter Pack from the download centerhttp://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=60c92a37-719c-4077-b5c6-cac34f4227cc 
    (Note that there are two downloads - choose the 64-bit one for your 64-bit OS)
    1) Ensure your OS has Indexing enabled:
       Windows 7 and Windows Vista: Control Panel / Programs / Turn WIndows features on or off / Enable "Indexing Service" / OK  [ restart if required ]
       Windows XP: Control Panel / Add or Remove Programs / Add/Remove Windows Components / Enable "Indexing Service" / Next / Finish
    2) Download and install the IFilter pack above. 
    3) Enable Visio shapes indexing.
        a) When Visio is first launched, it may prompt users to enable the Indexing Service.
        b) Manually - Open the Tools / Options dialog, select the Shape Search tab, click on Visio Local Shapes and then click the "Properties" button, ensure the option "Yes, enable Indexing Service" is selected.
        NOTE ... If Visio cannot find its Index catalog, you may see an error "1.  Visio Local Shapes - The Visio Indexing Service Catalog does not exist.  Please repair the Visio installation."  To recover from this,
    close Visio and all other Office applications, and use the Control Panel to repair the Visio installation, then restart your computer.
    Also -make sure that the Indexing Service is actually started, as it may be set to Manual startup versus Automatic.  Check in the Administrative Tools / Services app.
    After these components are installed / configured, restart the computer.  You may need to allow some time for indexing of your local files to be completed.  Once the indexing is complete, you should start to see improved results.  Let me know
    if this helps with searching for Visio shapes on 64-bit operating systems.
    =====
    If you have any update, please feel free let me know.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].

  • How to enhance PRDIOQR/Search with a new attribute

    Hello,
    wie use the view PRDIOQR/Search to search for IObjects - which are downloaded ERP equipments.
    I have the requirement to add a new search criteria to this searchobject.
    All IObjects have partners maintained. The requirement is to select IObjects by to postalcode of the partner in partnerfunction "Ship-To-party".
    Could you please give me some tipps how to acchieve this?
    Thanks a lot.
    Best regards
    Manfred

    Hello,
    i debugged a little bit in EH_ONSEARCH.
    The issue i face is that if i filter there the result than i have not all IObjects filtered with my own search criteria.
    The result has an entity list which is in standard 100 entities (max_hits).
    If somebody uses my own search criteria i have to check all the 50.000 Iobjects in the system not only 100.
    From a performant point of view this is maybe critical. I will check this.
    If somebody have some tip for me please add them to this threat.
    Thank you
    Best regards
    Manfred

  • Federated Search for Documentum

    Hi. Has anybody implemented a federated search for Documentum? I think Documentum uses Verity internally for full text indexing, but Verity is tightly integrated with Documentum's own metadata search - does Documentum expose the search functionality as a web service - is there any customization required on this web service (meaning, is it already a SOAP web service that Plumtree understands readily or do we have to write any custom code). Any inputs on implementing federated search for remote search repositories such as Verity, FAST, Autonomy would be helpful?

    Hi Bbelko, as Raji mentioned,
    Lync Desktop Client cannot search any external source outside your organization.
    Nevertheless, Lync Full Client can search against your local Outlook contact lists (only your personal contact and linked contact lists like LinkedIn or Facebook). Additionally, Lync is generating its own Address Book (ABS) which it can search against. You
    can modify in Lync how the service should generate the address book, based on the GAL. GAL here does NOT mean the Exchange GAL, instead it is the Active Directory. It only queries information based on Exchange attributes.
    http://technet.microsoft.com/en-us/library/gg429711.aspx
    How this helps understanding how the service is working via the User Replicator.
    Federated contacts can be therefor also only maintained in AD.
    Thomas
    Whenever you see a helpful reply, click on Vote As Helpful & click on Mark As Answer if a post answers your question.

  • I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac.  Any suggestions?

    I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac. The drive is not listed in Disk Utility.  Any suggestions?

    Is the computer in you equipment line:
    Dual Core Intel Xenon
    (which is not a PowerMac but a Mac Pro) the one you are asking about, or do you have an older PowerMac?
    If a Mac Pro, their forums are here:
    Mac Pro
    and, as Mac Pros have a totally different architecture from the pre-2005 Macs this forum covers, you may not have the same issues that can affect the older models. If someone didn't notice your equipment line, you could get advice that doesn't apply.
    If you really have a pre-2005 PowerMac, read on.
    If the stubborn external is USB and does not have its own power brick (i.e., it gets power only from the computer's UBS ports--"bus powered"), it may not be getting enough power. As electric motors age, they can demand more power than when new, and the power available on any USB port is limited.
    The typical workabouts to making a computer recognize an aging, bus-powered USB drive are:
    Get a powered USB hub (has its own power brick
    Get a "Y" USB cable: 1 Meter USB 2.0 A to 5 Pin Mini B Cable - Auxiliary USB "Y" Power Design for external hard drives.
    The second gets power from two USB ports on the computer and often that's enough.
    Remember that the USB ports on your keyboard seldom provide enough power even for a thumb drive, so be sure to use the USB ports on the back of the computer.

  • How to use a standard library binary search if I'm not searching for a key?

    Hi all,
    I'm looking for the tidiest way to code something with maximum use of the standard libraries. I have a sorted set of ints that represent quality levels (let's call the set qualSet ). I want to find the maximum quality level (choosing only from those within qualSet ) for a limited budget. I have a method isAffordable(int) that returns boolean. So one way to find the highest affordable quality is to start at the lowest quality level, iterate through qualSet (it is sorted), and wait until the first time that isAffordable returns false. eg.
    int i=-1;
    for (int qual : qualSet) {
         if !(isAffordable(qual))
              return i;
         i++;
    }However isAffordable is a slightly complicated fn, so I'd like to use a binary search to make the process more efficient. I don't want to write the code for a binary search as that is something that should be reused, ideally from the standard libraries. So my question is what's the best way of reusing standard library code in this situation so as to not write my own binary search?
    I have a solution, but I don't find it very elegant. Here are the important classes and objects.
    //simple wrapper for an int representing quality level
    class QualityElement implements Comparable<QualityElement>
    //element to use to search for highest quality
    class HiQualFinderEl extends QualityElement {
         HiQualFinderEl(ComponentList cl) {...}
    //class that contains fair amount of data and isAffordable method
    class ComponentList {
         boolean isAffordable(int qual) {...}
    //sorted set of QualityElements
    TreeSet<QualityElement> qualSet When you create an instance of HiQualFinderEl, you pass it a reference to a ComponentList (because it has the isAffordable() method). The HiQualFinderEl.compareTo() function returns 1 or -1 depending on whether the QualityElement being compared to is affordable or not. This approach means that the binary search returns an appropriate insertion point within the list (it will never act as if it found the key).
    I don't like this because semantically the HiQualFinderEl is not really an element of the list, it's certainly not a QualityElement (but it inherits from it), and it just feels ugly! Any clever suggestions? Btw, I'm new to Java, old to C++.
    If this is unclear pls ask,
    Andy

    Thanks Peter for the reply
    Peter__Lawrey wrote:
    you are not looking for a standard binary searchI'm not using a binary search in the very common I'm searching for a particular key sense, which is the Collections.binarySearch sense. But binary searches are used in other situations as well. In this case I'm finding a local maximum of a function, I could also be solving f(x)=0... is there a nice generic way to handle other uses of binary search that anyone knows of?
    I would just copy the code from Collections.binarySearch and modify itI have this thing about reusing; just can't bring myself to do that :)
    It would be quicker and more efficient than trying to shoe horn a solution which expects a trinary result.Not sure I understand the last bit. Are you referring to my bastardised compareTo method with only two results? If so, I know, it is ugly! I don't see how it could be less efficient though???
    Thanks,
    Andy

Maybe you are looking for