Fullname on selection forms

Anyone know any way I can get the fullname to display on the user selection forms for manager, delegation, etc...? Currently, accountID is all that is shown. This is very un-user-friendly when the customer uses cryptic accountIds.
Thanks!
Message was edited by:
TD_ROC

Can you be more clear on what is required?IDM has Account Id which is the userid, First Name which is the Christan name, and Last Name which is the surname. Most of the organisations that I have worked at use a cryptic naming convention for the account id which has no resemblance to a persons name. So on the user creation and modification pages where you enter the manager details in you are expected to put in the Account Id of the Manager.
You can see another example of this in action in the Find Users tab under Accounts (IDM 7.0) where the search criteria can be Name (which is the Account Id), Email Address, Last Name or First Name.

Similar Messages

  • For "select-form" in the same page, add a cancel button in editing status

    Dear JHeadstart team
    For "select-form" in the same page, I still have a trouble.
    How can I customize the Tempalte File to make the editing page have cancel button to abandon the edit.
    If I want to learn the the JHS's Template costomizing (.vm file) and where can I find more reference documents about JHS's Template costomizing (excepting "Oracle JHeadstart 10g for ADF Developer's Guide").
    thanks!

    Can you be more precise on what you want:
    - should the cancel button be displayed when creating new row AND editing existing row?
    - when pressing the Cancel button, where do you want to go, to the select page?
    Steven Davelaar,
    JHeadstart Team.

  • How to maintain state in multi select form. ( ASP classic )

    I have a mutli select form fields e.g.:
    <select name="Location" multiple="multiple" >
    <option value="8">Anglesey</option>
    <option value="11">Cheshire</option>
    <option value="5">Conwy</option>
    </select>
    say i select the first 2 of the 3 options and submit my page
    e.g. :
    mypage.asp?Location=8&Location=11
    how would i then set the state of the options to selected
    e.g. :
    <option value="8"
    selected="selected">Anglesey</option>
    <option value="11"
    selected="selected">Cheshire</option>
    <option value="5">Conwy</option>
    help and suggestions appreciated

    Hi Arvind, your best bet might be to pass the filter value via a QueryString and then apply a QueryString filter to those other pages. Overview of QueryString Filters:
    http://office.microsoft.com/en-us/sharepoint-server-help/connect-a-query-string-url-filter-web-part-to-another-web-part-HA010250999.aspx (I know it's for 2007, but the same applies to 2013).
    Dimitri Ayrapetov (MCSE: SharePoint)

  • How to open  business partner Properties selection form(OCQG table)

    Dear all ,
    Is there any object for business partner Properties which are stored in OCQG table
    Can anybody tell me
    how to open the properties selection form as incase of
    Financials->Financial Reports->Accounting->G/l Accounts and Business Partners-> Click on Properties Button
    I want to open this form  is there any way to do it
    Thank you
    Atul

    Hello Atul,
    With the sbo sapbouicom object you can for example simulate a buttonclick.
    I suggest that you use in your code:
    ActivateMenuItem("13057") //(G/l Accounts and Business Partners)
    and then you simulate a click on the property-item/button.
    Hope this helps.
    Best regards Teun

  • JSP Select Form loses value

    When I do a database query for values for the select they display properly but when it is submitted the next page only has the variable not the value. Any ideas?
    <form action=getprinter.jsp>
    <select name="printers">
    <%
    while(rs.next())
    prnt=rs.getString("printer_id"); %>
    <option value=prnt><% out.println(prnt.toUpperCase());%>
    </select>
    <input type=text name="ponum" value=00000 maxlength=5 size=10>
    <input class="submitbutton" type="submit" value="Select">
    </form>

    <select name="printers">
    <%
    while(rs.next())
    prnt=rs.getString("printer_id"); %>
    <option value=prnt><%
    out.println(prnt.toUpperCase());%>
    <%
    some mo code....
    %>
    On the select tags, the value parameter is what is passed to the getprinter.jsp page. What you have is a drop down list with multiple options on it, different display names but all with the same value. You need to dynamically put the prnt value in the value attribute and in the option body.
    <%
      while( rs.next() )
         prnt = rs.getString("printer_id");
    %>
      <option value="<%=prnt.toUpperCase()%>"><%=prnt.toUpperCase()%></option>
    <%
    %>

  • Override Batch Numbers Selection Form

    Hi everyone,
    i need to implement a slightly different batch number selection form to handle two different units of measure (Kg & Number of Items). Is there any way to override the SAP form and then feed our own values to the document form?
    I couldn't understand how/where SAP stores this information once the user selected the batch numbers and returned to the document.
    Can anyone help me with this?
    Thank you very much
    David

    Hello David,
    You cannot override this form, but you can override batch selection method.
    On Bacth selection form you have 3 matrixes. in these 3 controls you can find all the relevant informations what you need.
    I used them to change the selection method to FeFo (First Expires First Out) or FiFo (First In First Out) in the developments.
    Regards
    J

  • Performance problems selecting form vbak and vbap

    Hello,
    I am try to select data from the vbak and vbap databasetables. The tables have more than a million of entries. I tried my best with two related selectstatements and the 'FOR All ENTRIES' syntax. The query takes more than 30 minutes. Is there a more efficient way than the following query, for example an inner join?. Tanks.
    Regards, Lars.
    FORM firstselect.
       SELECT  kvkorg kvtweg kspart kauart k~kunnr
              kvsbed kaugru kvbeln kmandt
      FROM VBAK AS k
      INTO CORRESPONDING FIELDS OF TABLE t_outtab1
      WHERE  k~vkorg IN s_vkorg AND
             k~vtweg IN s_vtweg AND
             k~spart IN s_spart AND
             k~auart IN s_auart AND
             k~kunnr IN s_kunnr AND
             k~vsbed IN s_vsbed AND
             k~augru IN s_augru AND
             k~vbeln IN s_vbeln.
    ENDFORM.
    FORM secondselect.
         SELECT  pposnr pvstel p~werks
                  pabgru pmatnr p~kwmeng
                  pzzurmeng pvrkme pmandt pvbeln
          FROM VBAP AS p
          INTO CORRESPONDING FIELDS OF TABLE t_outtab2
              FOR ALL ENTRIES IN t_outtab1
          WHERE
              p~vstel IN s_vstel AND
              p~werks IN s_werks AND
              p~matnr IN s_matnr AND
              p~abgru IN s_abgru AND
             t_outtab1-mandt = p~mandt AND
              p~vbeln = t_outtab1-vbeln.
    ENDFORM.

    FORM firstselect.
    SELECT vkorg
           vtweg
           spart
           auart
           kunnr
           vsbed
           augru
           vbeln
           mandt
           FROM VBAK 
           INTO TABLE t_outtab1
    WHERE vkorg IN s_vkorg AND
    vtweg IN s_vtweg AND
    spart IN s_spart AND
    auart IN s_auart AND
    kunnr IN s_kunnr AND
    vsbed IN s_vsbed AND
    augru IN s_augru AND
    vbeln IN s_vbeln.
    ENDFORM.
    FORM secondselect.
    SELECT posnr
           vstel
           werks
           abgru
           matnr
           kwmeng
           zzurmeng
           vrkme
           mandt
          vbeln
      FROM VBAP TABLE t_outtab2
    FOR ALL ENTRIES IN t_outtab1
    WHERE  vbeln = t_outtab1-vbeln
    AND vstel IN s_vstel AND
    werks IN s_werks AND
    matnr IN s_matnr AND
    abgru IN s_abgru .
    ENDFORM.
    Hope this helps u.
    I will get u back with more answers.
    One more important thing see that the order which u r using in the select query is the same as that in the table this will affect the performs a lot.
    <i><b>The first field should be the vbeln and then see the order and change that first and the same order should be in the internal table taht u r defining also.
    If u do these things surely u can improve performance.</b></i>
    Message was edited by: Judith Jessie Selvi

  • Create a drop down list that populates based on the selection form another drop down list.

    I need to set up a drop down list that is popualated (i.e. displays a certain list of selctions in the drop down list) based on the choise the form user selects in an adjacent List
    For example
    There are two drop down list field sitting side by side in the form
    1. Select State          2. Select Course
    What I want to do is have a list of states in the first drop down list (1.Select State) and depending on which state the form user selects , the second drop down list (2.Select Course) will populate with a selction of courses available in that selected state only (i.e. it will on;y show course available in QLD if QLD is selcted).
    Is this hard to do?

    Hi,
    I would recommend some posts from Stefan Cameron's blog:
    http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/
    http://forms.stefcameron.com/2006/09/29/selecting-specific-database-records/
    http://forms.stefcameron.com/2006/12/18/databases-inserting-updating-and-deleting-records/
    http://forms.stefcameron.com/2006/12/07/better-form-design-with-xfa-25/
    Hope that helps,
    Niall

  • Best way to create a multiple select form?

    I have been trying to create a form that will allow selection parameters to be entered to populate a list that the user can then select one or more of the values in the list for use in another form.
    The following is the code I have come up with so far:
    DECLARE
    lc_query VARCHAR2(32767);
    lc_where VARCHAR(4000);
    BEGIN
    lc_query := 'SELECT HTMLDB_ITEM.CHECKBOX(1,ROWNUM) AS prd_check, '||
    ' HTMLDB_ITEM.HIDDEN(2,a.asset_id) AS asset_id, '||
    ' sup.name||'' ''||prd.description|| '||'' Asset Tag:''||a.asset_tag '||'' Serial Number:''||a.serial_number AS asset_name '||
    'FROM supplier sup, '||
    ' product prd, '||
    ' asset a '||
    'WHERE a.prd_id = prd.prd_id '||
    'AND prd.sup_id = sup.sup_id '||
    'AND a.hardware_software = ''HDW'' '||
    'AND a.responsibility_indicator IN (''1'',''2'',''4'',''9'') ';
    IF :P4_AT_ID <> -1 THEN
    lc_where := lc_where ||' AND a.at_id = :P4_AT_ID';
    END IF;
    IF :P4_SUP_ID <> -1 THEN
    lc_where := lc_where ||' AND prd.sup_id = :P4_SUP_ID';
    END IF;
    IF :P4_PRD_ID <> -1 THEN
    lc_where := lc_where ||' AND a.prd_id = :P4_PRD_ID';
    END IF;
    IF :P4_SELECTION IS NOT NULL THEN
    lc_where := lc_where
    ||' AND ( UPPER(a.asset_tag) LIKE ''%''||UPPER(:P4_SELECTION)||''%''
    OR UPPER(a.serial_number) LIKE ''%''||UPPER(:P4_SELECTION)||''%''
    OR UPPER(a.reference_number) LIKE ''%''||UPPER(:P4_SELECTION)||''%''
    OR UPPER(prd.description) LIKE ''%''||UPPER(:P4_SELECTION)||''%'' ) ';
    END IF;
    lc_query := lc_query ||lc_where;
    RETURN lc_query;
    END;
    I then call the following process that calls a package to insert the rows into my base table of the calling form:
    DECLARE
    l_asset_id NUMBER;
    BEGIN
    IF HTMLDB_APPLICATION.G_F01.COUNT > 0 THEN
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    l_asset_id := TO_NUMBER(HTMLDB_APPLICATION.G_F02(HTMLDB_APPLICATION.G_F01(i)));
    survey_pkg.p_ins_ua ( p_prsn_id => TO_NUMBER(:P4_PRSN_ID),
    p_asset_id => l_asset_id,
    p_eftv_from => TRUNC(SYSDATE));
    END LOOP;
    END IF;
    END;
    However, if the search query does not narrow down enough rows (about 50 rows) I get an ORA-01403 error on selection of the rows.
    Question:
    Is this the correct approach?
    If YES then does anyone know where I have gone wrong?
    If NO then what is a better approach?
    Thanks in anticipation,
    Jon

    In the end I abandonded the use of using HTMLDB_ITEM and HTMLDB_APPLICATION packages and went back to more standard functionality.
    Rather than developing a report using the function above I instead created a multi-select list ITEM and created a List of Values for this based on the function above. This then changes the values in the list on change of my selection criteria. The underlying item then provides my input into my package to create values in the other form, much tidier solution!

  • Multiple selection Forms in JSP

    I have a JSP page that should insert as many as selected choices on
              the forms into a sql server database.
              This example is done in ASP:
              http://www.codeave.com/ASP/multiple_where.asp
              

    "Sam" <[email protected]> wrote in message
              news:[email protected]..
              > There is 1 JSP page which needs to process as many as selected rows on
              > the form <OPTION> MULTIPLE.
              Sam,
              Is there a question in your last two posts or are you just sharing
              statements of fact with us ;)
              

  • Form serial number selection (Form=25)

    Hi All,
    I want to transfert the content of the left matrix to the right matrix automatically when the user put something and press TAB in the field Filter.
    I try to do this with use this :
    oMatrixTo.AddRow(j, 1);
    oForm.DataSources.DBDataSources.Item("OSRN").SetValue("2", i, "AZ");
    But i cannot because the item is not an userdefined object.
    So i want to select all lines in the left matrix and simulate a click in the button "8" (Button ">") but i don't arrived to simulate a press to CTRL and click to the header rows.
    My questions are :
    It is possible to transfert automatically data from left matrix to right ? Is yes, how can i do this ?
    How to simulate CTRL + Click on the Header rows ?
    Thanks for your help.
    Best regards,
    Michael

    Hi Michael,
    Yes it is possible to automatically transfer available serial numbers to the selected list. As njmog1 suggests, to select an available serial number you have to simulate a click in the first cell on the required row (the # column), then to transfer you need to simulate a click on the transfer ">" button. The following code will select all available serial numbers and transfer them across (ofcourse SAP will only bring across the required amount):
    Dim oForm As SAPbouiCOM.Form = oApp.Forms.Item(FormID)
    Dim mtx As SAPbouiCOM.Matrix = oForm.Items.Item("5").Specific
    'Select first row.
    mtx.Columns.Item(0).Cells.Item(1).Click()
    'Shift click on last row to select all.
    mtx.Columns.Item(0).Cells.Item(mtx.RowCount).Click(SAPbouiCOM.BoCellClickType.ct_Regular, SAPbouiCOM.BoModifiersEnum.mt_SHIFT)
    'Cick on > button to transfer to selected list.
    oForm.Items.Item("8").Click()
    oForm = Nothing
    You would use Shift not Ctrl on the last row click to select all rows. Ctrl only selects individual rows. Hope that helps.
    Andrew.
    [www.beabetterbusiness.com|www.beabetterbusiness.com]

  • Document selection form

    would like to create a pdf form checklist for users to select check off certain pdf pages or documents they want built into a single pdf document.
    how do i build the checklist (with links?) so when a user makes their selections and then submits the checklist a new pdf document is automatically created with just the pages they selected?
    the users will only have acrobat reader.
    any ideas would be appreciated.

    This forum is for the Adobe FormsCentral (formscentral.adobe.com) which is a service that allows you to create, collect and analyze data using an online web form. You should ask PDF related form questions in the Acrobat forums: http://forums.adobe.com/community/acrobat/acrobat_windows
    I'll move your post to that forum so you don't need to retype it. They can help you out...
    Randy

  • Query values in Multi Select form field

    I have a table and one of the fields is a multiple select box. It is currently working fine
    What I now need to do is create a report based on the individual elements in that field: (This report will really just do a count of the events for ownership purposes)
    Example:
    Table simplified:
    Name     | Teams Involved
    One     | TeamA:TeamB:TeamC:TeamD
    Two | TeamC
    Three | TeamB:TeamD
    Four | TeamA:TeamD
    Five | TeamD
    Six | TeamA
    Seven | TeamA
    Eight | TeamB
    The Teams Involved are populated from a Multiple Select LOV so the Data will always remain constant in spelling etc...
    TeamA
    TeamB
    TeamC
    TeamD
    I am trying to create a report that will show me the number of times a team is selected in the Teams Involved column and the results would look like:
    TeamA 4
    TeamB 3
    TeamC 2
    TeamD 4
    I am not very good with PL/SQL but assuming I might need to do a foreach loop type using the values in the LOV and the LIKE %LOVVALUE% but just not really sure
    any assistance would be appreciated.
    Thanks in advance
    wfsteadman

    As Prabodh pointed out, I'm placing a colon at the beginning and end of the value list before doing the LIKE, so every value in the list is guaranteed to have a colon before and after it.
    Of course, this could be a performance issue if your dataset becomes large--you're not going to be able to use an index on this column--in which case you'll want to go to a more normalized solution (a table for your teams, a table for your projects [or whatever], and a reference table in the middle), but then you'll need to worry about parsing your multi-select values via a view with an instead of insert trigger. I do this on my blog for assigning tags to posts; it's not difficult, but APEX--for whatever reason--doesn't expose triggers on views as easily as on tables.
    -David

  • Help with creating a cursor select form

    Hey guys i need some help, I have a client who would like a menu on her website that allows users to select differnt cursors, I have never done anything like this before hand, Can anyone help out or point me in the direction of a tutorial for this sort of thing, thanks

    Hi,
    as I know, you can change your cursors by system software or/and browser. On the other hand you can use programs "outside" of your DW. I suggest to "Google" for them, as I did, and found for example this:
    http://www.google.de/#hl=de&xhr=t&q=create+cursor&cp=13&pf=p&sclient=psy&site=&source=hp&a q=0&aqi=g2&aql=&oq=create+cursor&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=e8c6fad3e718b799&biw=1280 &bih=785
    or http://www.cursors-4u.com/ and while examining this website my cursor changed immediately.
    Hans-Günter

  • Select form table /SAPAPO/ORDMAP fails

    Hi,
    I'm performing a system copy of an SCM system. The procedure includes executing the following select statement in the MaxDB database:
    "select LOGSYS… from "SAPR3"."/SAPAPO/ORDMAP…"
    The command failed due to the following error "Base table not found;-4004 POS(16) Unknown table name:/SAPAPO/ORDMAP"
    I looked at dba_tables and found that the table's owner is SAPLCA, I tried also the above statement using this owner, but it didn't work either.
    Selecting from some of the SYS tables is working, but none of the tables which belong to SAPLCA (according to dba_tables table) worked.
    Can anyone please help to find out the content of /SAPAPO/ORDMAP?
    Thanks,
    Shiri.

    Hello Shiri,
    I saw that the similar question was posted in the opened the OSS message 558872/2006 on queue BC-DB-LCA. Correct?
    As you are using liveCache & APO, you are SAP customer, and I would like to recommend you to work with SAP support in the message 558872/2006, or, if it's NOT your message, open the new one for SAP on queue BC-DB-LCA or 'BC-DB-LVC'.
    If you are performing the Homogenous liveCache copy using backup/restore procedure, please review the SAP notes 457425 & 877203.
    -> run the SQL statement as DBA user ( default :'SUPERDBA' ) & check that 'SAPLCA' user is listed:                                                       select * from domain.users   
    [ you could use the SQLSTUDIO, logon as superdba user, or dbmcli tool:
      dbmcli -d <LCSID> -u <control>,<control>
      dbmcli on <LCSID>>sql_connect superdba,admin
      dbmcli on <LCSID>>sql_execute select * from domain.users
      dbmcli on <LCSID>>exit
    -> Run the SQL statement as SAPLCA user ::                   
       select * from tables where owner='SAPLCA'      
    [ you could use the SQLSTUDIO, logon as SAPLCA user, or dbmcli tool:
      dbmcli -d <LCSID> -u <control>,<control>
      dbmcli on <LCSID>>sql_connect saplca,<pwd>
      dbmcli on <LCSID>>sql_execute select * from tables where owner='SAPLCA' 
      dbmcli on <LCSID>>exit
    -> Run the SQL statement as SAPLCA user ::                     
       select LOGSYS, count(*) from "SAPLCA"."/SAPAPO/ORDMAP" group
       by logsys
    [ you could use the SQLSTUDIO, logon as SAPLCA user, or dbmcli tool:
      dbmcli -d <LCSID> -u <control>,<control>
      dbmcli on <LCSID>>sql_connect saplca,<pwd>
      dbmcli on <LCSID>>sql_execute select LOGSYS, count(*) from "SAPLCA"."/SAPAPO/ORDMAP" group
       by logsys
      dbmcli on <LCSID>>exit
    Thank you and best regards, Natalia Khlopina

Maybe you are looking for

  • IMessage and FaceTime not working, Urgent Help please!!!

    Hi guys, Need help urgently, my iMessage and FaceTime are both not working on my Macbook Pro. The iMessage gives giving this message "Could not sign in. Please check your network connection and try again.", while FaceTime just simply cannot login. Pl

  • Accrued Cash Discount

    Hi All, My client has the following business scenario, If the amount is paid within 30 days, there is a cash discount of say 2%. When the goods are sold following is the accounting entry created, Debtors Ac ........Dr    To Sales Ac............Cr   

  • How to report in bex

    Hi all, How to prepare reports using bex. please send to: [email protected]

  • Calendar using iphoto / Address book

    I am trying to create a calendar using iphoto and for any reason is not letting me add a photo to a specific date. Also is not showing the icons on the botton of the screen, such as iweb and others icons that is supposed to show. I have watched the i

  • M-Audio FireWire 1814 Interface & a Mac Book Pro...

    How do I get my M-Audio FireWire 1814 Interface working on my Mac Book Pro?  I keep getting a message that says the "security" settings on my computer will not allow this defice to be used.