Add user search functionality in a custom form

Hi,
I am new to IDM . I have two doubts regarding search functionality. Please help me out.
1.     I want to add a user search option for a field and populate the value(user name ) from the searched result to that filed. The search option should have some search criteria like firstname ,lastname ,userid etc; depending on which we can search a particular user and after selecting one record that data should populate to that filed. Please let me know how can I archive that functionally? Is it possible to use the existing (out of box) search operation for it.
2.     When we use selector, is it possible to change the default search option. I want to search depending on some criteria like firstname,lastname ,userid etc.
Thank in advance.
Regards,
Nirupam

I know this is old post - but I dealed with this requirement one and I knew it's pain. So, I just want to share my little expereinced here if someone else needed it.
For this requirement - I have to customed the jsp pages. The file is tjspSearchUserTiles.jsp in the xlWebApp war file under tiles folder. What I did is check the current loging user's group. If he/she belong to Manager group, I set the search value Users.Manager Login equal to the username (this user name attribute alway available in the selvet section throught the USR BEAN.
If you could make this cutomization work from your OIM env you then could customize alot more.
Let me know if you need help - [email protected]

Similar Messages

  • Add a search function to my online PDF Portfolio?

    Hi there,
    I'm wondering if it's possible to add a search function that searches for keywords within all the documents in my online PDF Portfolio, like there is in the standalone desktop version.
    I want to make the PDF's available online but a key function is for users to be able to search for various topics within the documents without reading each and every one of them.
    Best wishes,
    Thorsteinn

    Has nobody every wanted this function? It seems to me the key function of PDF portfolio's and it is blatantly missing in the online version. Whats up?!

  • When will Apple add a search function to the iCloud calendar?

    I'd like to know if anyone in this community knows when Apple will add a search function to the iCloud calendar?

    Everyone here is a user just like yourself.
    No one here can say what Apple plans to do.
    You can leave Apple your feedback here.

  • How to add user defined functions in Menu bar of a Selection Screen?

    Hi,
    Can anybody please suggest me that how can I add user defined functions in the menu bar of a Selection Screen?
    Regards
    s@k

    Dear Amit,
    I am referring to the standard SAP program: RIEQUI20.
    On the initial screen, there are 3 tabs.
    Code:
    SELECTION-SCREEN BEGIN OF TABBED BLOCK tab FOR 25 LINES.
    SELECTION-SCREEN TAB (20) tab1 USER-COMMAND ucomm1
                         DEFAULT SCREEN 001.
    SELECTION-SCREEN TAB (20) tab2 USER-COMMAND ucomm2
                         DEFAULT SCREEN 002.
    SELECTION-SCREEN TAB (20) tab3 USER-COMMAND ucomm2
                         DEFAULT SCREEN 003.
    SELECTION-SCREEN END OF BLOCK tab.
    AT SELECTION-SCREEN.
      CLEAR gv_okcode.
      gv_okcode = sy-ucomm.
      CLEAR sy-ucomm.
      CASE gv_okcode.
        WHEN 'IH08'.
          CALL TRANSACTION 'IH08'. "Equipment Selection
        WHEN 'IW29'.
          CALL TRANSACTION 'IW29'. "Notification Selection
        WHEN 'IW39'.
          CALL TRANSACTION 'IW39'. "Order List Selection
        WHEN OTHERS.
      ENDCASE.
    *   Check date:                                         
      IF NOT datuv IS INITIAL                            
      AND NOT datub IS INITIAL.                         
        IF datub >= datuv.                              
        ELSE.                                           
          MESSAGE e884(ih) WITH datuv datub.            
        ENDIF.                                           
      ENDIF.                                             
      IF variant IS INITIAL AND
         dy_vari IS INITIAL.
        PERFORM get_default_variant_f14 USING variant.
      ENDIF.
      PERFORM variant_existence_f14 USING variant.
      IF datuv IS INITIAL.
        datuv = sy-datum.
      ENDIF.
      IF datub IS INITIAL.
        datub = sy-datum.
      ENDIF.
      IF sy-ucomm = 'ADDR'.
        PERFORM adress_sel_f01 USING 'EQUIR'.
      ENDIF.
      PERFORM check_parnr_f76.
    *  AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      STATICS: l_slset TYPE sy-slset.
    *--- Set initial variant
      PERFORM variant_init_f14 USING 'INST' 'INST' 'INST' 'RIEQUI20'.
      IF variant IS INITIAL AND
         dy_vari IS INITIAL AND
        gv_variant_flag IS INITIAL.
        PERFORM get_default_variant_f14 USING variant.
        gv_variant_flag = 'X'.
      ENDIF.
    *--- Set Icon for adress-button
      PERFORM set_icon_f01 USING dy_adrfl ad_icon text-ad0 text-ad1.
    *--- get classification data from select option
    *--- (if new variant or if called via submit or F3)
      IF ( l_slset NE sy-slset ) OR
         ( s_comw[] IS NOT INITIAL AND gt_clsd_comw[] IS INITIAL ).
        l_slset = sy-slset.
        gv_class_old = dy_class.
        gv_klart_old = dy_klart.
        PERFORM copy_selopt_comw_f79 TABLES gt_clsd_comw s_comw.
        PERFORM class_search_init_f77 USING 'EQUI'.
      ENDIF.
    *--- set Icon for classification
      LOOP AT gt_clsd_comw TRANSPORTING NO FIELDS          
                          WHERE atcod > '0'.               
        EXIT.                                              
      ENDLOOP.                                             
      IF sy-subrc IS INITIAL.
        gv_comw_flag = 'X'.
      ELSE.
        CLEAR gv_comw_flag.
      ENDIF.
      PERFORM set_icon_f01 USING gv_comw_flag cl_icon text-cl0 text-cl1.
      CALL METHOD cl_uid_cust=>selection_screen_output.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR variant.
      PERFORM variant_inputhelp_f14 USING variant 'RIEQUI20'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR dy_parnr.
      PERFORM f4_for_parnr_f76.
    AT SELECTION-SCREEN ON BLOCK clse.
      IF dy_class NE gv_class_old
        OR dy_klart NE gv_klart_old.
        gv_class_old = dy_class.
        gv_klart_old = dy_klart.
        CLEAR gv_comw_flag.
        REFRESH gt_clsd_comw.
        REFRESH s_comw.
      ENDIF.
      PERFORM class_exist_f77 USING dy_klart dy_class 'DY_CLASS'.
      IF sy-ucomm = 'COMW'.
        CALL FUNCTION 'IHCLSD_VALUATION_POPUP'
          EXPORTING
            i_klart               = dy_klart
            i_class               = dy_class
            i_language            = sy-langu
            i_key_date            = sy-datum
            i_also_subclasses     = dy_subcl
          TABLES
            ct_comw               = gt_clsd_comw
          EXCEPTIONS
            exc_no_class          = 1
            exc_klart_not_allowed = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    *--- fill classification data in select option
        PERFORM copy_comw_selopt_f79 TABLES gt_clsd_comw s_comw.
      ENDIF.
      IF sy-ucomm = 'ONLI'.
        sscrfields-ucomm = sy-ucomm.
      ENDIF.
    Regards
    s@k
    Edited by: siemens.a.k on Jan 15, 2010 10:10 AM

  • Add search (torch) functionality with in custom form

    Hi
    I wanted to add search functionality (torch) in my custom form. How to do that? Any guideline or ez steps to follow to give serach on certain field of my custom form?
    regards

    Chapter 8 of developer guide helps a lot. Just wanna share if someone curious.
    regards

  • Add web search function to website

    I need to add a web search funtion to my company website. The website was build with some cold fusion codes. I have also added some hardcoded pages to the website. I need to add a web search function that can search both the datebase pages and the hardcoded pages. I have tried using google custom search engine, but it works really good with the hardcoded pages but not with the database pages. I wonder if there is something in Dreamweaver that I can use to create the web search??? Help!

    Thank you very much for the comments. To answer your question, yes, the dynamic content do have links from other pages on the site. I have a few questions:
    1. How do I build a database search page using the built in server behaviors? I am not familiar with server and the website is host through Host My Site. Do I need to work with Host My Site or it is something I can do on my end?
    2. You mention that any search engine (including google) should be able to index pages. I have tried Google Custom Search Engine. It doesn't work very good with the dynamic pages. Should I try other serach engine as well? Any recommendation of search engine?

  • How to add user e-mail to a custom report?

    Hello,
    I am not a sql DBA, but trying to find out exact line that I should add to the query for any custom report, to show user e-mail address field as well.
    For example, I use this query for all machines running unwanted software (found this query on google) :
    Select 
    SD.Name0, 
    sys1.User_Name0,
    SF.FileName 
    From v_r_system sys1
    join v_gs_softwarefile sf on sf.resourceid=sys1.resourceid
    left join v_R_User usr on usr.User_Name0=sys1.User_Name0
    left Join v_R_System SD on SD.ResourceId = SF.ResourceId
    Where SF.FileName Like '%Azureus%'
    Or SF.FileName Like '%ABC%'
    Or SF.FileName Like '%BitComet%'
    Order By SD.Name0, SF.FileName, sys1.User_Name0
    I do have user discovery enabled with mail attribute, and can see e-mail address getting collected for all the users.
    Thanks in Advance

    In case it's SQL/SSRS, which I assumed based on the initial query, then your query should look like this:
    Select
    SD.Name0,
    sys1.User_Name0,
    usr.Mail0,
    SF.FileName
    From v_r_system sys1
    join v_gs_softwarefile sf on sf.resourceid=sys1.resourceid
    left join v_R_User usr on usr.User_Name0=sys1.User_Name0
    left Join v_R_System SD on SD.ResourceId = SF.ResourceId
    Where SF.FileName Like '%Azureus%'
    Or SF.FileName Like '%ABC%'
    Or SF.FileName Like '%BitComet%'
    Order By SD.Name0, SF.FileName, sys1.User_Name0
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Enable Attachment function on my Custom form

    Dear All,
    I am unable to enable attachment function on my Custom Sales Order form. Our form is just like standard form with some minor changes.
    Please, help me in this regards.
    Regards,
    Arsalan

    See if this helps
    Enabling the attachment icon for custom form created on custom view
    External site too
    http://oracleappstechnicalworld.blogspot.in/2008/04/attachment-functionality-in-oracle.html
    Mahendra

  • How to add user search  in adf application?

    hi,iam using jdeveloper 11.1.2.3.0 my requirement as follows ....i have a form ex:company_master in this form i need to search relavent data to master / user need to search the data in internet how to achieve this requirement in adf

    The question is about adding "user search  in adf application?"
    "You can create search forms that allow users to enter search criteria into input fields for known attributes of an object. "
    Creating ADF Databound Search Forms - 11g Release 1 (11.1.1.5.0)

  • Integration of calender functionality in the Custome form in Oracle apps.

    Hi,
    Thanks for all the support.
    I required one more help about integrating the calender functionality in the costume form of r12 Oracle Apps.
    Can Any body just give me the steps for the integrating the calender functionality. in R12 Oracle apps form.
    I have done the steps as like the 11i but its not working. Its urgent and I hv very less time to buid this form.
    Thanks
    Nihar

    Please see "Oracle Applications Developer's Guide", Page 9-18
    Oracle Applications Developer's Guide
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121devg.pdf
    Thanks,
    Hussein

  • How to add a value set in a custom form in query_find screen in R12 please

    Hello,I need to add a value set fileld found in the fnd_flex_value_set table in a query find screen . How do I proceed please ?
    Do I create a record group followed by a 'LOV' ?
    Thanks.

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Application Development in PL/SQL » Forms which you can get more quick response
    Regard
    Helios

  • Can you add decent "Search" functionality to the Mozilla Support website?!

    One of my biggest frustrations with Firefox is trying to make use of the Mozilla Support website. Almost every search I enter in the Search box yields 1000+ results. String delimiters (") to define phrases and operators like AND and OR appear not to work at all, and results seem to include ANY article that contains ANY of the words in the search box. This is next-to-useless, and I usually exhaust my patience sifting through unrelated articles, exiting the support site again with just a little less respect for Firefox/Mozilla.

    This is a well known issue.
    The search is even hardcoded into crash stats pages where it results in meaningless or misleading results.
    Regulars know to use an external search engine because of this shortcoming. There are numerous instances where a string is useful the name of software or a feature for instance, but if one of the words is commonly used results max out and bury the real hits.
    Compare for instance
    *'''''Ask Toolbar''''' (Problematic software)
    ** [https://www.google.co.uk/search?q=%22ask+toolbar%22site%3Asupport.mozilla.org&hl=en&btnG=Google+Search&sourceid=Mozilla-search&start=0#hl=en&q=%22ask+toolbar%22site:support.mozilla.org&start=290 Google] I only scrolled the first 30 pages, all would appear good hits.
    ** [https://support.mozilla.org/en-US/search?q=ask+toolbar&esab=a&page=3 sumo] maxed out 1000 results maybe two proper hits per page in the first few pages
    I know I have often mentioned this. Including in the contributors forums <sup>[/forums/contributors/709812?last=55863#post-55708 (most recent)]</sup>. There are old & current bugs
    * ''[https://bugzilla.mozilla.org/show_bug.cgi?id=791200 Bug 791200] - Switch to AND search in advanced search ''
    * ''[https://bugzilla.mozilla.org/show_bug.cgi?id=791250 Bug 791250] - [tracker] Add way to be specific with the advanced search ''
    * ''[https://bugzilla.mozilla.org/show_bug.cgi?id=794083 Bug 794083] - add query_string support to advanced search ''
    * https://bugzilla.mozilla.org/page.cgi?id=voting.html
    * https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
    Bugs are a workplace for developers rather then a discussion forum, and so it is usual practice to discuss matters elsewhere, but anyone may register and then express an interest by voting, or add themselves to the cc list (by default just click [Save Changes] ). <br />N.B. email addresses used are displayed in public.

  • OWC PS5 - Content Presenter - Search functionality in custom list template

    We have created a custom list template for displaying the contents and use this custom list template in the content presenter task flow.
    We would need to implement Search functionality in the custom template.
    Any pointers on how to achieve this?
    Thanks,
    Navaneeth

    Sorry to see that this post hasn't had a response from the search team for so long.
    1 Search will not find content in portlets (for instance page portlets).
    That is correct. The content of portlets may be different for each user so indexing this content can provide misleading results. However, if you only need to index public content, Oracle Ultrasearch can be used to index all portal content, including that displayed through portlets.
    2 If Search Results Type in a custom search portlet is set to Pages, the search will be made in page display name, page keywords and page description. It will not search for item content.
    Searching for pages checks the following pieces of metadata:
    page name & display name
    keywords
    description
    all custom text attributes associated with the page type
    all custom url attributes associated with the page type
    all custom file attributes associated with the page type
    Items will not be searched but again, its possible to index the entire page using Ultrasearch.
    3 It is not possible to search for items but get found item's page links as results.
    This is incorrect. The custom search portlet allows the administrator to select the attributes that should be displayed from the search portlet's "edit-defaults" screens. From here, its possible to select the "page" attribute to be displayed with the search results. This means that you can search for items and then click on a link to go to the page on which the item resides.
    Various improvements have been made for 9.0.4, including better control over the display of page results.

  • Urgent: Enabling Folder functionality in Custom Form

    Hi!
    I want to enable the folder functionality in my custom form. I'm copying STANDARD_FOLDER object group from standard oracle form and attaching APPFLDR library.
    But when I try to open any folder in my form all the fields get disabled.
    Any help on this will be appreciated.
    Thanks

    Post your question in OA forum:
    http://forums.oracle.com/forums/forum.jspa?forumID=40, this is the forms forum, you'll get more help there.
    Message was edited by:
    Rosario Vigilante

  • Adding Global Search function in Webhelp

    I have been asked to add global search functionality to my
    website. As far as i understand, the only way of doing this using
    Webhelp is to use merged projects?
    As i have 40 separate XPJ files (some very large), this
    merged projects method didn't work very well. For a start you got
    lost in the vast number of projects and bookmarks displayed in the
    merged TOC. Instead, from a main menu, each guide opens up in the
    same fixed window and just displays its owns TOC. Curently you can
    only search in the selected guide.
    Having looked at Peter Graingers site, ZoomSearch would seem
    to work OK. Does anyone know of any other method i could use or
    free alternatives to ZooomSearch?
    Thanks

    First, if you Google "refresh page" you'll have several
    JavaScript options available to choose from.
    Second, I can't show you my merged WebHelp, because it's
    proprietary online Help provided with our product, but I used
    Peter's method for a merged project of 42 projects, ~2.5K topics,
    and mucho graphics. Unfortunately, in a WebHelp merged project, RH
    provides an anemic, basic search only.
    We had elected to place our projects within 14 major
    categories in the TOC, so as to reduce the size of the TOC when the
    help was opened. Each category links to a "navigation" page in the
    parent project that provides a description of the category and all
    first-level topics within each project in the category. This
    category structure helps the user identify the major functional
    areas, and helps the seven writers keep track of where their
    particular projects appear.
    GETTING STARTED
    + Release Notes
    + Installation
    + etc.
    TRADING
    + Program Trading
    + Fixed Income Trading
    + etc.
    This proved serendipitous when we decided to use Zoom, since
    we were able to classify the same RH project folders under
    identical Zoom categories, allowing users to select a single
    category from a dropdown menu if they want more tightly focused
    results.
    Because our help is provided on a CD and is distributed on a
    customer's server, we've had to implement Zoom search in Javascript
    mode. Admittedly, the JavaScript mode in Zoom doesn't provide full
    functionality either, but it's still better than RH (you can use
    wild cards, special characters (underscore, colon, slash, etc.) to
    "join" words, etc.).
    Some Zoom issues:
    Since RH ignores special Zoom tags in source files, such as
    ZOOMSTOP/ZOOMRESTART, ZOOMKEYWORDS, etc., and over-writes them in
    the output when generating/publishing topic modifications, we are
    running the Zoom indexer against the source files and placing the
    five Zoom files (search.html, zoom_pageinfo.js, etc.) in the output
    folder. The Zoom 5.0.1005 build will automatically rename the path
    from the source "/projects" to the output "/mergedProjects" if you
    select that option.
    Currently, a bug in Zoom replaces any closing HTML tag (HREF,
    SPAN, etc.) that appears before a period, comma, semicolon, or
    colon with a space. So, you need to run a Find/Replace to eliminate
    those extra leading spaces (in the zoom_pageinfo.js file). I use
    FAR for this; you can create a .FarRun file with entries like this
    to do them in batch. Note that the 90_zoompageinfo_docsql01.FAR
    FarList was created to contain only the zoom_pageinfo.js file, and
    the "OpenFarList" line only needs to appear once in the .FarRun
    file. After I run the Zoom indexer against the project, I only have
    to double click the .FarRun file to run the batch replace.
    Good luck,
    Leon

Maybe you are looking for