OIM - Self Registration and Virtual Recognition

Does anyone know if it's possible to integrate visual recognition (type in what you see) when a user is creating a self registration request? If possible, what is the level of effort?

Thanks for the reply.
I think for now, we want to go with the out of the box page, except the link to OAM protected url.
It would really be great, if you could please suggest on where & how to provide link to OAM protected url on the OIM self registration page ?
Thanks,
PS

Similar Messages

  • Self Registration and Attestation is not working in OIM 9.1.0.4

    Hi,
    i have setup a new OIM environment using OC4J. I am able to create users and provision IT resource but self registration and attestation is not working. not sure it is OC4J issue or OIM issue. For self registration it says request is submitted but when I login as xelsysadm and dlon't see any pending request and same thing happens for attestation. It dowsn't display any error but never gets completed and don't see this also in pending request list. If anybody has idea to debug the issue then let me know and thanks for help.
    Thanks,
    HC

    As per given bug it is looking for jars which is missing
    have you install connector using deployment manager?? if yes it copy required jars at target location. verify if not there copy jars in Scheduled Task folder.
    Check the document if any external jars required and same put at ThirdParty folder

  • Self Registration and More

    Hello Everyone,
    We are trying to protect one resource. We have installed Oracle Identity and Access Management Suite and also OID, OVD.
    What we want is to create external users through self registration in OIM and then provisioned them to OID. but what after user creation, will those users just stare at the screen. I mean, is there any way to redirect them to OAM protected resource link ?
    Or another thing that I came across while I googled was that: user goes to protected resource link and he is a new user so he clicks on new registration button from there he gets redirected to OIM S Registration link, there he gets self registered and provisioned to OID, and again get redirected back to that OAM protected resource page.
    Dont know if above thing is possible or not, if it is ? Please let me know how it can be achieved.
    Really seek guidance
    Thanks,
    PS

    Thanks for the reply.
    I think for now, we want to go with the out of the box page, except the link to OAM protected url.
    It would really be great, if you could please suggest on where & how to provide link to OAM protected url on the OIM self registration page ?
    Thanks,
    PS

  • OIM Self Registration without approval

    Hi All,
    I am very new to OIM, I need to know how to do self registration without an admin approval.
    I just gave shot by adding those mandatory fields from the approval form to the self registration form by editing the
    formmetadata.xml. but i get a bunch of exceptions and the request itself is not getting registered, i couldnt see any pending approval tasks in the admin screen for that particular self registration.
    I went through this post
    OIM - auto approval of self registration
    From that i could get that i need to create a task adpater and populate the other mandatory fields
    which aren't captured in the self registration screen.
    But is it the only way of doing it??
    Please let me know how to do it (any method).
    or any pointers would be helpful.
    Thanks in advance.

    HI Nitesh,
    Thanks for the reply,
    What i did is I added the mandatory fields to the self registration page, The probllem was with the value which i had passed during the self registration.
    For user type, i gave it as "Full-Time Employee" , but the actual value is "Full-Time" when i gave the correct value
    it worked.
    To summarize, i just added the madatoy fields like org name, user type and role to the sefl registration page
    and gave the correct values while registering and it worked.
    i am sure i cant live with this for a long time, I have to start work on the adapters.
    Thanks.

  • Self registration and challenge questions

    Hi All,
    From OIM, under Self-Register a user may Create Request for self registration. The user would be presented with the "User Information" fields to fill out. The user is also asked to answer some pre-defined challenge questions.
    Please help me with the following questions:
    1. Is there a way to not ask the challenge questions on this User Self-Registration form?
    2. Would it be possible to use some of the "User Information" fields such as MMDD of DOB, last 4 SSN, etc... to automatically populate the answers and questions in the PCQ table? This is to avoid asking the user to fill in the same values twice, once in the User Information fields and another time in the Challenge questions.
    Thanks

    Thank you for all your suggestions.
    After I changed the system configuration as stated in my second post message, I could no longer login to OIM. After I input the userID (xelsysadm) and password, the same login page showed up again without any error message.
    When I tried "Forgot Password?" and input the UserID (xelsysadm), I got the message:
    Your Oracle Identity Manager challenge Questions are not defined. Contact your System Administrator.
    When I tried to login to the Design Console as xelsysadm, I get this error:
    Sep 12, 2008 12:11:23 PM oracle.j2ee.rmi.RMIMessages EXCEPTION_ORIGINATES_FROM_T
    HE_REMOTE_SERVER
    WARNING: Exception returned by remote server: {0}
    oracle.oc4j.rmi.OracleRemoteException: java.lang.NullPointerException
    at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:346)
    at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.conv
    ertAndHandleMethodException(AbstractTxInterceptor.java:69)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invo
    ke(TxRequiredInterceptor.java:52)
    What did I do wrong?
    Thanks

  • Self registration and modification of tjspSelfRegistrationTiles.jsp

    Hello,
    How can the tjspSelfRegistrationTiles.jsp be modified to add a combo box to the self registration form?
    Where can we find this file? Do we need to also modify the FormMetadata.xml file?
    Where can we find documentation on how to modify the tjspSelfRegistrationTiles.jsp file?
    Thanks
    Khanh

    Hi
    To add a combo box to OIM Self-reg page you need to modify both FormMetaData.xml and jsp.
    For example you need to add the following code in xml.
    under <FormManagementMetaData>
    <Attribute name="Users.Title" label="global.label.title" displayComponentType="ComboBox" dataLength="80" map="Users.Title" useInRule="true" />
    this is the attribute
    Add label to xlWebAdmin_en_US.properties file.
    Now add the reference inside <Form name="SelfRegistrationUserForm">
    <AttributeReference optional="false">Users.Title</AttributeReference>
    Now in jsp .
    <logic:equal name="field" property="type" value="ComboBox">
    <html:select name="selfRegistrationForm" property="<%=msName%>"styleClass="Fields">
    <html:option value=""></html:option>
    </html:select >
    <logic:notEqual name="field" property="type" value="ComboBox">
    place it at appropriate positions.
    Add

  • How to show a date field in OIM self-registration page

    Hello gurus,
    I want to add a date field in the self-reg page. I added lines in FormMetaData.xml and tjspSelfRegistrationTiles.jsp. The user creation page (delegated administration) shows the right date field, but the self-reg page is not working. I am using uix.tld dateField tag and don't know what attributes to pass to this. Is this the right tag or there is some other one in the tld, and what attributes should I pass?
    Could someone tell me how to do this?
    Thanks
    SK

    It should be much simpler than what you are doing.
    You should be able to create a User Defined Field for the value. Then update the FormMetaData.xml file. Create an entry in the section for user information that creates the attribute value. Just copy one of the existing and give it a new unique number identifier. Also change the field it references to be your user defined field. Then update the Self Registration section to include the new attribute. If you want to update what the approver sees, then also update the section for the approver.
    -Kevin

  • Self-registration and the WWSSO_API_USER_ADMIN package

    I am using the wwsso_api_user_admin package to build a self registration JPDK portlet for my client to be run on the Portal Welcome page and I have a few questions. Just so you know, I am using Oracle 8.1.7.1.1 and Oracle Portal 3.0.9.8.2 all running on Win 2000.
    1. The package spec ssoumgt.pks is not clear as to which warning codes and exceptions can be returned or raise from create_user. All the other procedures in that package have explicit comments about which warnings and/or exceptions can possibly occur, but create_user does not. It makes sense that it would return OK_SO_FAR and DUP_USERNAME, but are there any other return codes and/or exceptions?
    2. The package spec ssoumgt.pks also states that the create_user procedure "will raise an exception if a dupicate user is created." During my unit testing, I only recieve a DUP_USERNAME warning when I try to register a username twice. Is there a similar exception, and if so, what causes it to be raised? The phrase in the spec also makes it sound like the duplicate username is created anyway before the exception or warning is returned. I suspect that the package has change, but someone forgot to update the comments in the package spec. Can you clarify this?
    3. In Portal, under Login Server Administration, I have set the Login Server configuration to disallow passwords to be the same as the user name and required passwords to contain at least one numeric digit and one character. However, these restrictions are not enforced by the create_user procedure in the wwsso_api_user_admin package. I can even supply a NULL password and the account is created in the login server. Is this a bug or am I not getting something?
    Thanks,
    Dennis

    are you working with 9iAS portals?
    portal_sso (or portal30_sso) schema was used to be in the 9iAS system. in the 10g family, it was replaced by orasso which resides in the infrastructure db.
    AMN

  • Self registration and alias

    Hi community,
    as I've been told, I move my thread to this place, hoping to have much answers
    this is the situation I am facing : on a 7.01 portal SSO-connected to a R3 back end, my datasource is ABAP, and I have activated self registration onto my portal.
    Users are well created in ABAP, but my difficulty is here : we work with alias, and the created users with self registration have no alias, the alias field is not automatically populated with the provided logon id (as it is made with a java datasource...).
    A simple trick would be to populate the Alias ABAP field with the logon ID or the email address entered in the self registration screen, but I have no idea on how to do that...
    Does anyone has a hint to help me the way to find in which configuration searching this automatical alias population ?
    Thanks a lot.
    Fabien.

    Seems to be possible to create a user exit in CRM to do that, but not in the portal directly.
    Fabien.

  • OIM self registration approval

    When i am self registering in the admin and user console the approval request is not going to xelsysadm but it should.I've checked the assignement of the task in User registration process and the user there is xelsysadm.
    Do i need to suppress the standard approval or do i need to do something else?
    Please help.
    Edited by: user10724410 on 17 Dec, 2008 9:36 PM

    Hi,
    You should check the System Configuration to uncheck XL.AssignTaskToRequestersManager
    Thanks,
    Manasa

  • OIM self registration

    HI,
    When a user self register in OIM,Request is generated and admin is able to see the request ID.I dont want admin to approve it,I want the request to get approval automatically.What I need to do to get automatic approval for self register
    Thanks

    Hi,
    To add what Kevin said the name of adapter is tcComplete.You can go to Integration tab and add then system adapter.
    Regards
    Nitesh

  • OIM 11g Self-registration approval process

    Hi
    I wanted an OIM self-Registration request to be auto-approved. I am using OIM11g.
    Can anyone give me the directions.
    Regards
    user12841694

    The OIM11g approval process are three levels.
    1. template level
    2. request level
    3. operational level
    Both template level and operational level can be auto approved where as the request level cannot be.
    The reason being, the self-regisistration template ships with user's organization attribue as the Approver-Only attribute indicating it should be populated only by the apporver.
    Looking for any possible options to auto approve request level also.
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14316/unauth_selfservice.htm#OMUSG3065
    Regards
    user12841694
    Edited by: user12841694 on Nov 9, 2010 10:20 PM

  • OIM 11g R2 Self Registration

    Hi All,
    The requirement is we have two different types of users Type A and Type B
    Type A user requires different attributes from Type B User in self
    Registration page.
    So, Is there an way to have two different OIM Self Registration pages.
    or
    Is there an way to show some attributes of Self Registration page to one user
    and some attributes to another user in OIM.
    Please help me with your views.
    Thanks

    refer this.
    Configuring Auto-Approval for Self-Registration - Fails due to Organisation

  • Creating/Pushing Users in OIM through customized self registration page

    Hello there,
    I was envisioning to push users into OIM (create users in oim database) by means of self made registration pages (JSP). I know that the user profiles are created in UPA_USR table in OIM db. Can we directly create users in the same from different source other than standard OIM self registration page?
    I tried to do it by pushing the users in a different db table and then reconciling the user profiles from it. That worked!
    Does anybody have any clues about the former issue?
    Thanks in advance.

    Have you looked through the APIs?
    I have never seen anything that would let you do this but on the other hand I have never looked for it.
    You always have the option to push things straight into the back end tables but it is often hard to ensure that you didn't miss something and you don't have any guarantee that future upgrades or patches won't break things.
    Best regards
    /Martin

  • Self Registration in OIM 9.x

    Hi Guys,
    Share ur experience or else let me know the links where i can get the solution to the below mentioned scenario ---->
    1. I have to add few additional fields in the UDF form for self-registration ,without disturbing the existing availble fields.
    2. When submitting the request (after filling fields) it should have one Approval Level.
    Regards,
    Newbie
    Edited by: 837614 on May 31, 2011 2:09 AM

    So Guys here I am posting the deatils as an answer to query (1) --
    1. By default the location of FormMetaData.xml will be C:/Oracle/<ur Server folder>/xellerate/config
    2. Add all additional fields under these 2 heading <Form name="SelfRegistrationUserForm"> as well as
    <!-- User Self Registration and User Profile Modification section -->
    3. Restart the server.
    Cheers!!

Maybe you are looking for

  • Hibernate.cfg.xml configuration

    Hi   I have written hibernate.cfg.xml ,for connecting to the data base i am using data sources concept.   I have one property in hibernate.cfg.xml   <property name="connection.datasource">.......</property>   Can any tell how to give the datasource n

  • Lumia 720 Screen Freezed

    Hi, I am also facing the screen freezing issue, i have also tried the below solution for 5-6 times but still my phone screen is not working..... Press and hold the Volume down and the Power button simultaneously for 10  seconds. After doing this my p

  • Flash to DVD.... how and what format

    Im trying to get my flash file converted over to a looping video clip, on DVD that will play on a wide screen TV. Hope some experts here can help with a few pointers. 1. I made it 1020x720.... should it actually be.... 1280x720? 2. I've downloaded se

  • Iweb site name

    I have had people be able to successfully log onto my iweb site using the "announce" feature. However, I have had a couple reports of getting denied or an error message when just typing the URL in (web.mac.com/ccl211). Do I have the address wrong, or

  • . Why won't troubleshooting information load?

    I'm trying to reset factory settings because Firefox is unresponsive.