Lookup field in self registration form

I have added a user defined lookup field using Design View.
I added the following attribute to FormMetaData.xml:
<Attribute name="USR_UDF_LOCATION" label="global.udf.USR_UDF_LOCATION" displayComponentType="LookupField" map="USR_UDF_LOCATION" >
<ValidValues lookupCode="Lookup.Custom.Users.Location"/>
</Attribute>
The new lookup field is showing in 'Create User' and User modification forms but does not show in the Self registration form.
I added the following to FormMetaData.xml under the SelfRegistrationUserForm section:
<AttributeReference optional="false">USR_UDF_LOCATION</AttributeReference>
But, the Fiield is getting displayed as a text field and not a lookup field.
I

I read that Lookup/ Combo box field cannot be added in a self registration form. Is it true?
(Source:
Link: Adding combobox in self registration from
Link: OIM: problem with combobox in self registration form

Similar Messages

  • Error in Self Registration form

    Hi,
    Language field in the initial supplier self registration form is mandatory in ROS. Even after selecting english, it gives me error, select yr language. Pl let me know how to correct it. Is it related to config in web survey or is it html form error?
    Regards,

    Hi Pooja,
    This error usually occurs when you have wrongly populated some other field. For ex : In email id you mention 'abc ' instead of 'abc at xyz.com'.
    Pl ensure that all other fields are populated in the correct format.
    It's a strange behaviour of the ROS_SELF_REG BSP page.
    Regards,
    Nikhil

  • Need to put out of Box password policy in self registration form.

    Hi All,
    I create a self registration workflow in i put a self gistration form. In the validation section of password field i apply check method of com.waveset.policy.stringQualityPolicy to apply out of box Password policy. But i got an error while running the workflow from configurator interface. i put the trace below. please help.
    <defvar name='policy'>
    </defvar> --> null
    <defvar name='policyChecker'>
    </defvar> --> null
    <invoke name='check'>
    <ref>policyChecker</ref>
    [<defvar name='policyChecker'>]
    <new class='com.waveset.policy.StringQualityPolicy'>
    </new> --> com.waveset.policy.StringQualityPolicy@af914c
    [</defvar>] --> com.waveset.policy.StringQualityPolicy@af914c --> com.wavese
    t.policy.StringQualityPolicy@af914c
    <ref>policy</ref>
    [<defvar name='policy'>]
    <invoke name='getObject'>
    <rule name='getCallerSession'>
    <Rule name='getCallerSession'>
    <block trace='true'>
    <select>
    <ref>context</ref> --> com.waveset.session.LocalSession@6c2a78
    </select> --> com.waveset.session.LocalSession@6c2a78
    </block> --> com.waveset.session.LocalSession@6c2a78
    </Rule> --> com.waveset.session.LocalSession@6c2a78
    </rule> --> com.waveset.session.LocalSession@6c2a78
    <invoke name='findType' class='com.waveset.object.Type'>
    <s>Policy</s> --> Policy
    </invoke> --> Policy
    <ref>policyName</ref> --> Password Policy
    </invoke> --> Policy:Password Policy
    [</defvar>] --> Policy:Password Policy --> Policy:Password Policy
    <ref>userPassword</ref>Resolved variables.user.userPassword to aaa
    --> aaa
    <null/> --> null
    <null/> --> null
    <ref>accountId</ref>Resolved variables.user.accountId to aaaaaaa
    --> aaaaaaaXPRESS <invoke> exception:
    com.waveset.util.WavesetException: Can't call method check on class com.waveset.
    policy.StringQualityPolicy
    ==> java.lang.NullPointerException:
    </invoke> --> null
    Thanks in advance.
    Any pointer will really be helpful.
    Edited by: Amit_Bansal on Feb 27, 2008 3:05 PM

    Hello,
    Has anyone been successful at displaying the "View PAssword Policy" on the self registration form? Or is this not possible to get done?
    Thanks
    Khanh

  • Add UDF to Self Registration form in OIM 11.1.X

    Hi All,
    I want to add few additional fields to the self registration form for eg. Phone no. etc..
    For this I am updating SelfCreateUserDataset.xml and than am restarting the server. But still default (OOTB) fields are only visible, Can any body please guide me the right steps?
    Thanks & Regards,
    Newbie

    The only problem with that could be the path of the import-export location. Following should be your variables in weblogic.properties:
    metadata_to_loc=/location/export
    This would export the entire stuff along with the folder structure to the above directory. Now modify it accordingly and copy it to the below directory location (whole directory structure inside */location/export*)
    metadata_from_loc=/location/import
    metadata_files=/metadata/iam-features-requestactions/model-data/SelfCreateUserDataset.xml
    This should be good enough.
    Thanks
    SRS

  • Self Registration form

    HI,
    I have created a self registration form based on stored procedure that executes packages owned by Portal30_sso.
    When I ran the form, logged as another user, the procedure does not terminates correctley.
    This user, owner of the form, has execute priviliges on all packages that are used in the procedure.
    Has anyone made a self registration form?
    Thanks
    Carlos Acle

    p_usuario varchar2)
    IS
    v_id number := null;
    v_usuario varchar2(50);
    v_password varchar2(50);
    v_user PORTAL30_SSO.sso_user_type;
    v_err number;
    BEGIN
    v_usuario := upper(p_usuario);
    v_password := upper(p_usuario);
    -- usuario login server
    PORTAL30_SSO.wwsso_ls_private.get_default_user_config(v_user);
    v_user.ssousername := v_usuario;
    v_user.hashed_password := v_password;
    v_user.ssorole := 'USER';
    PORTAL30_SSO.wwsso_ls_private.ls_create_user
    (p_newuser=>v_user,
    p_err=>v_err);
    -- dbms_output.put_line('error ' &#0124; &#0124; v_err);
    -- usuario portal
    PORTAL30.wwctx_api_private.set_context('PORTAL30_SSO','');
    v_id := PORTAL30.wwsec_api.add_portal_user(v_usuario);
    portal30.wwsec_api.activate_portal_user(v_usuario);
    v_id := portal30.wwsec_api.id_sso(v_usuario);
    PORTAL30.wwctx_api_private.clear_context;
    -- usario de la base
    dbms_utility.exec_ddl_statement('CREATE USER ' &#0124; &#0124; p_usuario &#0124; &#0124;
    ' IDENTIFIED BY ' &#0124; &#0124; p_usuario &#0124; &#0124;
    ' DEFAULT TABLESPACE USERS ' &#0124; &#0124;
    ' TEMPORARY TABLESPACE TEMP');
    dbms_utility.exec_ddl_statement('GRANT CONNECT TO ' &#0124; &#0124; p_usuario);
    exception
    when others then v_err := sqlcode &#0124; &#0124; ' ' &#0124; &#0124; sqlerrm;
    -- when others then dbms_output.put_line('encontre error ' &#0124; &#0124; v_err &#0124; &#0124; sqlerrm &#0124; &#0124; ' ' &#0124; &#0124; sqlcode);
    END;
    null

  • Interface between self registration form and prospects

    Hi all,
    I am defining the interfaces between the Self registration form and the prospect in the supplier registration. Does anybody know how the data are tranfered into the prospects? How can the purchaser acceed to these informations to give his approval?
    Once this step is over the supplier will answer to a survey (questionnaire). Where are stored the answers? Are these data visible?
    Thanks in advance

    Hi,
    Per my knowledge, the code should be pasted in CustomLogin.aspx.cs page.
    Chun Liu has also written an blog about the custom login page for FBA, you can have a look at it.
    http://blogs.msdn.com/b/chunliu/archive/2010/08/21/creating-a-custom-login-page-for-fba-in-sharepoint-2010.aspx
    More reference:
    http://blogs.msdn.com/b/kaevans/archive/2010/07/09/creating-a-custom-login-page-for-sharepoint-2010.aspx
    http://sivarajan.me/post/SharePoint-2013-Enabling-Custom-Login-Page-and-Mixed-Contents-Part-2
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Suppliers self registration form

    Dear all,
    We are using the suppliers self registration form. When we are logging
    in to the form it displays a message at the bottom of the message
    regarding the option to change/add text to the form. There is a
    reference to transaction SE61 but it does not say which class and ID.
    Can anyone tell me wha is the class and ID for the text maintenance?
    Thanks,
    Yaron

    Hi Yaron,
    please go to following SPRO path:
    Supplier Relationship Management->Supplier Self Services->   
    Settings for user inerface-> Specify Data Privacy Settings for Suppliers
    There you will find the text ID's to edit, or you create a new text in SE61 and speficy its ID in the customizing.
    regards
    Zoltan

  • Customizing Self Registration Form

    Hi,
    We have a scenario where when a user comes to perform self registration on OIM, we have to take different fields as input based on the user type. For example if the user is an external contractor we want to take input fields 1 and 2, and if the user is an internal employee the user would be required to input information in fields 3 and 4. Is there any way we can control it through the Self Request Dataset XML. I have already added all the required fields in the XML, however right now it asks for all the information irrespective of the user type.
    Can anyone guide how to tackle this?
    Thanks.
    UZ

    Well obviously modifying the existing JSP will be a better solution because in that case you will just need to merge the existing logic with your new one. The best thing I get to think for it is the following only:
    1) Create a class which holds your logic for UserID validation.
    2) Create a new button in JSP as required. For the onclick action give a call to above class and then based on the results, display another jsp as a popup. This new jsp will be either of the following:
    - SUCCESS. The userID you selected is a vlaid one. Click Proceed.
    - ERROR. This UserID has already been used. Select a new one or slect from tne following options. Now show all the possibilities as radio button. Click Proceed.
    Well that is the solution I would have done.
    Thanks
    Sunny

  • How to handle Lookup Field in Add / Edit Forms

    I have a list of properties and a photo library where each image has a 'property' column that defines which property it pertains to.
    I've customized the DefaultDisplayForm and added a web part to show the images from Photo library related to the selected property.  This works because I've "connections" so that filtering takes place (the property list "Provides
    Row" to the Photos Web part which obtains 'Filtered Value from' the selected property
    While this works fine, I am not sure how to extend this so that
    1) Modify the DefaultEditForm so that user can drag / drop additional photos to the Photos List View web part, and have the lookup field be populated automatically.
     2) Modify the DefaultAddForm to allow user to drag / drop photos for a new property (using drag drop) and have the lookup field be populated automatically.
     3) Modify the DefaultDisplayForm to disallow the user from adding photos using drag / drop (i.e.l to force them to use the Default Edit Form to do this).
    I would imagine I need to add some JavaScript snipped that sets the value of the lookup field in each photo being uploaded to the Property selected in the other webpart but I am not sure where I should do that ? 
    Any guidance appreciated.,

    Hi,
    As there is no such OOTB feature can meet your requirement, it will need some customization with the REST API and JavaScript to implement the effect of drag and drop and the
    auto-populated functionality.
    Here is a demo about how to use the HTML file upload control to perform the picture uploading with “drag and drop”:
    http://www.html5rocks.com/en/tutorials/file/dndfiles/
    Another demo about how to upload file using REST API:
    http://anthony-verschraegen.blogspot.com/2013/12/sharepoint-2013-js-upload-file-to.html
    SharePoint 2013 REST API:
    http://msdn.microsoft.com/en-us/library/office/fp142380(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/jj164022.aspx
    Best regards
    Patrick Liang
    TechNet Community Support

  • Validating Date fields in Self Registration page in OIM 11g

    Hi
    I have 2 custom date fields(Start Date, End Date) in Self Registration page in OIM 11g.
    I need to do validation on these fields, like difference between start date and end date should not be more than 3 months.
    I should show a popup message to user whenever start date and end date is more than 3 months.
    How to achieve this?
    Thanks in Advance

    Hello!
    Sorry bring up this topic again, but I have faced a "curious" situation. My validator code is:
        public void validate(RequestData reqData) throws InvalidRequestDataException {
            List<RequestEntity> requestEntities = reqData.getTargetEntities();
            if (requestEntities != null && !requestEntities.isEmpty()) {
                for (RequestEntity requestEntity : requestEntities) {
                    List<RequestEntityAttribute> attributes = requestEntity.getEntityData();
                    for (RequestEntityAttribute attribute : attributes) {
                        if (attribute.getName().equals("CPF")) {
                            if (attribute.getValue().equals("12345678900")) {
                                throw new InvalidRequestDataException("Invalid CPF");
            (new oracle.iam.requestactions.plugins.datavalidator.CreateUserDataValidator()).validate(reqData);
        }This is still in testing, but have you guys noticed the last line?
    It works nicely, is it normal? If it is, is there any reason for my exception just been raised when I submit the request? (for example, if the user provides a duplicated e-mail it rises before mine.

  • How to create customer self registration form iReceivables in 11.5.10.2

    Hi,
    I am new to iReceivables and in need to know how to create customer self registration in iReceivable 11.5.10.2.
    Please give the steps. I the guide its mentioned as need to create the static HTML page. If so please let me know how to do it. Please give me if you are having any sample code.
    Regards
    Suresh P

    Please see these docs.
    SelfService Registration Link Not Working For iReceivables [ID 603353.1]
    iReceivables user tries to register for iStore and message 'Email Address Is Already In Use' [ID 1114661.1]
    Questions: Auto Login After Self-Registration [ID 403097.1]
    How to Find iReceviables Patchset Level on 11i Instance [ID 263942.1]
    How To Create Custom Self Registration Challenge Questions In 11i [ID 759998.1]
    iReceivables Self Registration Challenge Question not Working [ID 961586.1]
    The Ireceivables Self Registration Page Errors Out. What Are the Setups to Review? [ID 414161.1]
    How To Control The Invoice Picked Up In iReceivable Self Registartion Challenge Question? [ID 1310902.1]
    Thanks,
    Hussein

  • '$P_CRM' is undefined Error while opening Lookup field in Bulk edit form in CRM 2013

    Hi All,
    I am getting this strange error in MS CRM 2013
    When I do bulk edit for any entity , I select 2-3 records and click on Edit , the Bulk edit form opens
    then whenever I clicks on any field which is lookup type It does not open , after debugging with F12 developer tool
    I am getting this error.    "'$P_CRM' is undefined"
    I have MS CRM 2013 on premise , Service Pack 1 Update Rollup 1 installed and using IE 11.
    Any Idea
    Regards,
    Vilas
    Vilas Magar http://microsoftcrmworld.blogspot.com/

    Few questions that might help us to identify issue:
    1. Have you enabled Social Insight  ? If yes can you try bulk edit on entity which don't have social insight enabled and confirm if it repro there?
    For more information on how to enable Social Insight :
    http://technet.microsoft.com/en-us/library/dn659847.aspx
    2. When you close bulk edit form are you getting script error dialog? If yes can you share that error log reports?

  • Read-only/hidden fields in self request form

    I have a prepop plugin for one of the field which generates a number from an oracle sequence, i don't want requesters to modify it, so I would like to either hide it or make it read only.
    Also, can i put some label/help text to put in some instructions?

    Have a look at the following link for section- *19.1 Step 1: Creating a Request Dataset for the Resources* -> *19.1.1.3 The AttributeReference Element* ->Optional Properties -> approver-only
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14309/request.htm#CIHGBGBC

  • Self-registration auto populate/save approver values

    Hi,
    From OOTB scenario for Self Registration in OIM 9.1.x, after submitting the user registration request, approver needs to provide ‘Organization Name’ (i.e., Xellerate Users) before approving.
    We created an ‘Organizations.Organization Name’ field in Self registration form itself (i.e., in Form name="SelfRegistrationUserForm"> tag in FormMetaData.XML). Now in self-registration, this value is getting auto-populated into approver user profile page (<Form name="SelfRegistrationApprovalForm"> in FormMetaData.xml). But still approver needs to submit the values (i.e.,click on ‘update’ button) before approving. I think we need to set some task to complete, we checked in all provisioning/approval process tasks for self-registration, but not working.
    Can anyone help us in suppressing the submit process (i.e.,click on ‘update’ button). Our requirement is the approver should only ‘approve/deny’, no other step is required?
    - Kalyan Mutya.

    did you try updating the request with the organization name and the role after the request is submitted.
    updateRegistrationUserDetails(long pnRequestKey, java.util.Map poAttributes)
    Updates the request's data with the values passed.
    you mentioned that you had added the org name and role name to the self reg form, and it didnt work with that. Was the org name and role getting displayed in the table when you went to the requestDetails Screen for that request? If yes, then all you need to do is, attach to the "Approve" task the adapter tcCompleteTask and you should no longer be prompted for any approval for self reg requests.

  • How to populate a field on the Self Registration Approval Form?

    Hello,
    I have a field named SSN (last 4 digits of the SSN) that a self registered user must fill in during self registration. After the user submits the request, the request is submitted to a reviewer.
    This reviewer logs in and accesses the Self Registration Approval Form for that particular request. I would like to display the possible returned values of SSN that I query from HR based on the requester's firstname, middlename, and lastname. This will allow the reviewer to verify the requester's identity. If the entered SSN does not match the displayed SSN, the reviewer can take the proper action.
    How can this be accomplished?
    I looked into the prepopulate rule generator adaptor. But I don't have a form to attach the adaptor to it since the approval form is an ootb form.
    Thanks

    Yes, I did.
    In the adapter I mapped the adapter return value to the output of the java code (Get SSN).
    In the User Registration Process Definition, I have a non conditional task named Get SSN. I mapped the requestID to the request Key and the adapter return value to the field on the self registration form (using User Definition field).
    But the value did not show up in that field...

Maybe you are looking for

  • Purchase Order text field update in Material Mater

    Hi experts, Is't possible that we can give authorization to update ONLY Purchase Order text field under the Purchase Order text view in MM? But while giving authorization, I could only see "Maintenance statuses of Material" I could only see status co

  • Text fields special characters problem in forms created with ID

    Hi there, I'm creating form document with ID. The problem with special characters appears after exporting file to interactive pdf. When filling up text field, special characters (polish language specials in my case) are replaced by squares. I do not

  • Vista SP2 will not install

    Good day, this is my first post. We have a 3000 N100 that will not allow Vista SP2 to install. At least that is what Microsoft support says, after spending all Sunday morning chatting with them. But SP1 installed just fine a while ago. I uninstalled

  • Oracle Cloud connections by other databases via ODBC/JDBC/XML

    If we move to the Oracle Cloud, will these tables be available from other SQL clients via ODBC/JDBC/XML? It obviously works fine with an internally hosted Oracle solution, but I didn't know if moving the Oracle Cloud would remove these features. Than

  • Blocking of Confirmed quantity while doing ATP

    Hi, While carrying out availability check in sales order( VA01) the quantifies are confirmed if availability check is set at schedule line and rest of the relevant setting of requirement planning. The blocked quantities after carrying our availabilit