Profile Search API

Is there anyway I can search by profile using wild char, just like com.bea.p13n.security.management.authentication.AtnManagerProxy.getUserNames(String searchExpression, int limit)
Basically my requirement is to show all users and their profile. I know I can use the above API then iterate through each user to get their profile infor, but I think it would very efficient if I can search by profile which gives me the entire result(User and User Profile Info), Going to the db directly would help but then going through the API is better.
Thanks
LB

Unfortunately, WLP does not provide the ability to search underlying Profile providers. This is due to many of the possible profile providers (LDAP, database, CRM, etc.) and no common search capabilities. Your only solution would be doing custom searches against your particular profile stores.

Similar Messages

  • How to get anonymous guest link "View Only" and "Edit" URL using JSOM or Search API ?

    Hi,
    I need to get list item anonymous guest link View Only and
    Edit URLs (as shown in image below) using JSOM or SharePoint 2013
    Search API.
    the URL will be like this - https://<site URL>/_layouts/15/guestaccess.aspx?guestaccesstoken=yRaYGmE9n
    Any one has any idea how to do achieve this?
    Thanks
    Shakir

    Hi Shakir,
    To get the anonymous guest link “View Only”, we can use SP.ObjectSharingInformation.anonymousViewLink property in sp.js.
    https://msdn.microsoft.com/en-us/library/office/jj246826.aspx
    To get the anonymous guest link “Edit”, we can use SP.ObjectSharingInformation.anonymousEditLink property in sp.js.
    https://msdn.microsoft.com/en-us/library/office/jj246468.aspx
    We can also use REST API to get the guests links:
    _api/web/Lists/getbytitle('library name')/items(item id)/GetObjectSharingInformation?$expand=SharedWithUsersCollection&retrieveAnonymousLinks=true
    Thanks,
    Victoria
    TechNet Community Support
    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]

  • Search API for searching Business Objects in SAP R/3

    Hi All,
    As per my requirement i need to search Business Objects from a third party application by writing some java code.
    I know only JCO which is useful for to establish a connection from Java to SAP Server and execute the RFC's or BAPI's which are reside in SAP Server.
    Can any one help me, it is possible or not to search Business Objects in SAP for example Master Data( Like Employee, Vendor, Customer-) or Transactional Data ( like Sales Order, Purchase Order--), in case if it is possible any Search API is there to use on SAP System and what are the Prerequisites and the Feasibilty.
    Its urgent---PLZ help me how to resolve this issue
    Thanks in ADV
    Regds
    Rajesh

    Hi,
    Good evening and greetings,
    Please go through the following link
    http://help.sap.com/saphelp_erp2004/helpdata/en/0d/afb8f627878b4fa71ac79508f2358a/frameset.htm
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • How to make a form-based search API using HTTPClient

    Hi,
    I am getting trouble to make an API that is related to making a site search by using a form-based search API by help of HTTPClient

    Hi,
    Something seems to get added to the form action because of "http". Hence I am removing it.
    You need to write a procedure with the values in the as parameters. Say for example you want to insert a record into dept
    table then
    Dynamic page code
    <html>
    <body>
    <form action="portalschema.insert_dept">
    <input type="text" name="p_deptno">
    <input type="text" name="p_dname">
    <input type="submit" name="p_action" value="save">
    </form>
    </body>
    </html>
    Procedure code.
    create or replace procedure insert_dept
    (p_deptno in number,
    p_dname in varchar2,
    p_action in varchar2)
    is begin
    if p_action = 'save' then
    insert into scott.dept(deptno,dname) values(p_deptno,p_dname);
    commit;
    end if;
    end;
    grant execute on insert_dept to public;
    Hope this helps.
    Thanks,
    Sharmila

  • How to use SEARCH-API provided by portal30 default schema

    I want information about the search api provided by the
    default portal30 schema.
    How can i use that for my specific requirement.
    i want to manipulate it's search limits
    is it possible ???
    Can i customize the specification provided in this api

    Hi,
    about the addDataSource using the Java API, for now you have to disable the security
    in order to add the data source using the MapViewer client API.
    You can do that editing the MapViewer config file:
    <mv_security enforce_sec_role="false" />
    Assuming that you have added your data source, and you have rendered some map,
    you can get the attribute information using the "identify" methods of the
    MapViewer client API.
    1) To identify one individual geometry:
    String [][] result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, x, y);
    where: "columns" contains the table attribute names that
    you want to retrieve
         x,y represents the device coordinate.
    2) To identify geometries inside a rectangle:
    String [][]result = mapviewer.identify(dataSource,table_name,columns,
    geometry_column,srid, xlowleft,ylowleft,
    xupright,yupright,false);
    where the rectangle coordinates are defined by xlowleft,ylowleft,
    xuprigth, and yuprigth values in device unit.
    3) The resulted String array contains on the first row the attribute
    names, and on the remaining rows the attribute values for each geometry.
    int nlin = result.length; // return the number of lines
    int col = result[0].length; // number of columns
    To get the attribute names:
    // attribute names
    Object []tableattrs = new Object[ncol];
    for(int j=0;j<ncol;j++)
    tableattrs[j] = result[0][j];
    To get the attribute values:
    Object [][]tablevalues = new Object[nlin-1][];
    for(int lin=1;lin<nlin;lin++)
    tablevalues[lin-1] = new Object[ncol];
    for(int col=0;col<ncol;col++)
    tablevalues[lin-1][col] = result[lin][col];
    Regards.

  • Any Search API  to search Business Objects in SAPR/3 Server

    Hi All,
    As per my requirement i need to search Business Objects from a third party application by writing some java code.
    I know only JCO which is useful for to establish a connection from Java to SAP Server and execute the RFC's or BAPI's which are reside in SAP Server.
    Can any one help me, it is possible or not to search Business Objects in SAP for example Master Data( Like Employee, Vendor, Customer-) or Transactional Data ( like Sales Order, Purchase Order--), in case if it is possible any Search API is there to use on SAP System and what are the Prerequisites and the Feasibilty.
    Its urgent---PLZ provide ur suggestions
    Thanks in ADV
    Regds
    Phanikumar

    Phanikumar,
    Perhaps you can check
    http://help.sap.com/saphelp_nw2004s/helpdata/en/95/92bd4244e6b611e10000000a155106/frameset.htm
    James

  • Problem with search API -- TextSearchConstraint.SOUNDS_LIKE

    Hi All,
    Im trying to use TextSearchConstraint.SOUNDS_LIKE to find similiar data records in MDM repository.
    There are 3 records in table "MDM_BUSINESS_PARTNERS", the value of it' "name" field are: "akedemic",  "akedemci",  and "akedemic Inc." respectively.
    below is the code of setting conditions:
    TextSearchConstraint constraint = new TextSearchConstraint("akedemic", TextSearchConstraint.SOUNDS_LIKE);
    search.addSearchItem(name_dim, constraint);
    I expect to use TextSearchConstraint.SOUNDS_LIKE t get all these 3 records, but the search only returns one record "akedemic",  anyone can explain me the reason?
    Thanks & Best regards,
    Bin
    Message was edited by:
            Bin Dong

    I tried in the Data Manager Free Form Search with the values you provided.
    It returs only 2 records with Sounds like constraint.
    Note: The first value and third value you provided are the same.
    If your data is just like the example you provided, you should get 2 records back.
    For testing the Search API, you can use the Data Manager to see if the API returned results are the same as in Data Manager.
    Example:
    You can try the Sounds like constraint with the values for 2 records
    quiet
    quite
    Have the constraint as sounds like quiet
    You will get the two records back.

  • Missing large number of results through Bing Search API (web results only)

    When making multiple calls to the Bing Web Search API (with a different $skip parameter), many queries I try seem to be missing many of the result I'd expect.
    For example, searching for the string 'obama' on bing.com shows 107,000,000 results available.
    When I search using the web search API using:
    https://api.datamarket.azure.com/Bing/SearchWeb/v1/Web?Query=%27obama%27&%24format=json
    I get 50 results, and the '__next' parameter is given as 'https://api.datamarket.azure.com/Data.ashx/Bing/SearchWeb/v1/Web?Query='obama'&$skip=50'
    If I repeat this several times, eventually I get a response with less than 50 results, and no '__next' parameter, indicating there are no more results.
    However, I always get far fewer than 1000 results (I'd expect there to be at least 1000). Trying to get 1000 results (by making a request and querying against the '__next' URL), I get different numbers of results each time:
    attempt 1: 355 results
    attempt 2: 441 results
    attempt 3: 358 results
    attempt 4: 692 results
    attempt 5: 692 results
    attempt 6: 694 results
    attempt 7: 659 results
    Querying for this should always return at least 1000 results, since 'obama' has 107,000,000 results listed when searching from bing.com
    Any idea what's going on here?

    Sorry to respond to this old thread, but the problem persists. It exists in both the web UI and the API. The initial result page (on the web) or result object (in the API) report millions of search results, however after clicking through a number of result
    pages (on the web) the total number is reduced to a few hundred. Similarly, in the API, setting the '$skip' parameter above this number does not return results. In the Obama case the first page shows 18.2 million results (http://www.bing.com/search?q=obama&go=Submit+Query&qs=bs&form=QBRE)
    but from page 35 and over only 529 results are reported (e.g., http://www.bing.com/search?q=obama&qs=n&pq=obama&sc=8-3&sp=-1&sk=&ghc=1&cvid=92729d6076e24a37a9e6ee099da99a4a&first=527&FORM=PERE7). Therefore the above problem
    does not seem to be related to the difference between the API and the web UI, but rather that Bing does not provide any results from a certain point (presumably because nobody is interested in them anyway). However, for data mining/web content analysis it
    is desired to get all results, even uninteresting ones. Is this behaviour documented somewhere, or can it be influenced?

  • LDAP search API doesn't always return NamingException when timeout

    I am from My Oracle Support (MOS) (http://support.oracle.com) team. 
    In MOS we connect to corporation OID (external) to search for user by email, and search for user's groups.
    But sometimes, the OID search API simply return without any results, and doesn't throw any exception, but we know the user exist,  or user has group memberships.
    Here is the code snippet:
    1. Create connection
        env.put("com.sun.jndi.ldap.read.timeout", "3000");
        env.put("com.sun.jndi.ldap.connect.timeout", "3000");
        Context ctx = NamingManager.getInitialContext(env);
    2. search for user by email address
    try {
        idCtx.search(OidServiceConstants.SEARCH_BASE, searchFilter,  searchControls);
    catch (Exception e) {
    // handle exception and retry, etc.
    3.   get user's group membership
    PropertySetCollection propSetColl =
    Util.getGroupMembership(idCtx, userDn, new String[0],
    false, "uniquemember");
    In step #1, the timeout is set to 3s for both connection and read operations. but the problem is that in step #2 and #3,
    the API sometimes throw NamingException to indicate there is timeout, such as
    javax.naming.NamingException: LDAP response read timed out, timeout used:3000ms.; remaining name 'dc=oracle,dc=com'
    Sometimes it doesn't, but we have confirmed the times with backend OID team and know that it took 8s.
    So how to make the API throw exception reliably ?

    Hi, Navneet Nair
    did you set up an OSS Message for the Portal-User Problem, if so, can u tell me the result and/or how you fixed your logon trouble...
    in fact i found out, when i change the user as you describe above, i have the same problem. when then i log off again, and come back withe the just before logged in user, i get the correct result on the webdynpros. <b>So I have to log off twice to actually change</b> the corresponding result on the webdynpro - strange thing is, taht in fact on the Portal screen in the upper left corner each time, i swap users the correct username is displayed...
    we are running ep 6 patch level 10...
    thanks for a hint,
    mattthias
    Message was edited by: matthias kasig
    Message was edited by: matthias kasig

  • Search API in Flex

    i`m doing a real estate project using flex.
    I need to have a search feature for my site..
    so i want a search API for it...
    i  checked , but it was not successful....
    can any one give me the link for it.?

    This is a very generic question.  If you want to do searches of data in Flex, it's possible to search a datagrid for certain text or to search a TextArea.  If you have thousands of records stored in a database server-side, they you'd need a server side solution or just a SQL query.  Most likely, if you're trying to find a certain text match with items displayed in Flex, the search or match method of the String class will give you what you want.
    -Marty [ http://www.theflexguy.com ]

  • Search API payment update!

    I can't figure out how to change a credit card for the payment for Bing Search API, please help!

    Hi,
    This billing issue is out of my scope, I would suggest you contact with azure support, it is a good choice for you, here is the support channel:
    http://www.windowsazure.com/en-us/support/contact/
    Best Regards,
    Jambor 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Search API Documentation Insufficient

    I'm trying to retrieve information about Movies & TV Shows using the search api.  I can get basic information using:
    https://itunes.apple.com/search?media=tvShow&entity=tvEpisode&term=breaking+bad& country
    But I can't get additional information like the cast, producer, ...  I've tried using the attribute by appending
    &attribute=actorTerm (plus many of the others that say that they are supported for all media types)
    but I get an error.  Is there any better documentation of examples that might help?

    That and this: http://www.apple.com/itunesaffiliates/API/AffiliatesSearch2.1.pdf
    ...are it.
    More than that, Apple intends to keep out of public view, apparently.

  • Search api and captioning

    I have just begun accessing the apple search API here: http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web- service-search-api.html.  When searching for a specific movie, I want to know if the movie is captioned. Does this API support this?  I have been unable to find any information regarding subtitles/captioning for a movie.

    I have 306 (iAS 1.0.2.0.0) I don't have this api, Where Can I found it. I can't install portal 308 becouse I have Linux Redhat 6.2 Kernel 2.2.14 (iAS 1.0.2.0.0 is not certified to this kernel)
    Thanks in advance
    Hengel

  • "Search API" (affiliate resources) provides previewURL, but not 90 seconds?

    The "Search API" (affiliate resources; http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web- service-search-api.html) provides previewURL to access a song preview, but this preview is 30 seconds, even though Apple has moved to 90 second previews for most songs (if they are longer than 2:30).  How can we get access to the 90 second previews so we can effectively sell the song (30 seconds not being long enough, as indicated by Apple's change to 90...)

    FYI, this question was answered by Apple's iTunes Global Affiliate Program Manager, Ted Hosmann, in another forum.  He wrote:
    “30 sec song previews are all that is available outside the store - the iTunes store reserves the 90 sec preview for users in the store.”
    You can guess my reaction...  Ok, I'll tell you anyway .  As affiliates, we're trying to promote Apple products, in this case songs, so that we can send a customer to the iTunes store and earn a nickel (and so Apple can earn five nickels).  Apple has determined that 90-second previews are the best way to promote and sell a song, but won't give us access to that tool?

  • FAST ESP 5.3 - is the FAST Search API of ESP 5.3 compatable with OS: Red Hat 5.1 & JDK: 1.6 Update 81 ?

    FAST ESP 5.3 - is the FAST Search API of ESP 5.3 compatable with OS: Red Hat 5.1 & JDK: 1.6 Update 81 ?

    Per ESP SP 5 release , below OS are supported which should be compatible with API:
     Red Hat Enterprise Linux Release 5.8, 32-bit (and all 5.x minor versions below)
     Red Hat Enterprise Linux Release 5.8, 64-bit (and all 5.x minor versions below)
     Red Hat Enterprise Linux Release 6.3, 32-bit (and all 6.x minor versions below)
     Red Hat Enterprise Linux Release 6.3, 64-bit (and all 6.x minor versions below)
     SuSE Linux Enterprise Server 11, 64-bit
    The latest JDK i have seen working on a customer install is  jdk1.6.0_45.
    Probably you can try update 81 and see if you run into any issues.

Maybe you are looking for

  • Pages gives an error, 'Cannot read file' , when trying to open pages document

    I recently deleted a pages file. I recovered it using disk drill and now Pages refuses to open it. It gives me an error that it cant read the file. The file size is exactly the same as i had created earlier. Please help me out on this. This is a very

  • Tables for Marketing Campaign

    Hi experts! I'm using CRM 7.0. I'm looking for the table for Marketing Campaign where I can find the assignment of Survey (name or GUID) to the Campaign (name or GUID). It would be great to find the common table of Marketing Campaign values. <<Text r

  • Open in Powerpoint?

    Hi Apple users I am wondering if i buy iWork 09, and i create a document in Keynote/Pages/Numbers with a lot of effects there not are in Office. Can my friend (Who has a PC with Office) open my iWork docoment?

  • Windows Server 2012 R2 File Server

    I updated my file server to Server 2012 R2 and everything went ok except now my windows 8 clients cannot connect to the file server.  I get a generic error An extended error has occurred when I try to unc to it and none of my drives will map.  Did an

  • Problem sending IM with physical keyboard

    Motorola Droid 4 XT894 w/ CyanogenMod 10.1.3-maserati (Although it was same issue when I was on stock Android), Verizon and WiFi, Skype v4.4.0.31835 This has been a huge issue for me for a while, and I thought all the updates to Skype would eventuall