Customize Self Registration Portlet/Form?

I have succesfully added the Self Registration portlet to our site, but would like to customize the fields that the portlet uses, make some required, etc....
I find VERY little info regarding Self Registration, any suggestions???

You have not mentioned the Portal version!!
Refer following for respective Portal version. For customizing the fileds, you may have to create your own custom self registration form for this. You have to use the DBMS_LDAP APIs to get the information updated in OID.
a) 3.0.9:
Oracle9iAS Portal Configuration Guide Release 3.0.9 -> Post-installation and Configuration Tasks -> Configuring Self-registration
link : http://portalstudio.oracle.com/pls/ops/docs/FOLDER/ONLINE_HELP/ONLINEMANUALS/DOC_CONFIG/cgpost.htm#1012715
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=183413.1
b) 902
I couldnot find relevant document link. Please follow the below procedure for same:
1.Run the following command
selfreg.cmd -s <portal_schema> -p <portal_password> -c <portal_connect_string>
This script is present at HOME/portal/admin/plsql directory
2.In Global Settings ,Under Self-Registration Options section, select Enable Users To Log On Immediately if you want users to be able to log on to Oracle9iAS Portal immediately after they create their own user account using the self-registration feature.
3.customize the Login portlet to include a self-registration link.
Hope it solves the problem...!!

Similar Messages

  • 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...

  • How to Customize Self Registration Page in OAM

    HI ALL,
    I need to customize Self registration page in OAM
    In tht page i need to change the Save button to New User
    and i need to have only the Username, Password, Mobile no. as their fields
    Can u plz tel in which file we need to make the changes
    thanks,
    Edited by: user10648177 on Dec 2, 2008 9:05 PM
    Edited by: user10648177 on Dec 2, 2008 10:17 PM
    Edited by: user10648177 on Dec 3, 2008 1:32 AM

    Hi,
    You need to configure an appropriate self-registration workflow. Seeing that you are asking how to change the behaviour, you probably already have such a workflow and need to modify it in case you want the change to be applicable to all users wanting to register themselves. As for changing the Save button to New user, you'll need to customize the appropriate stylesheet. Details for this should be in the customization guide.
    -Vinod

  • Customize Self Registration (Register Now...)

    I would like to change the Self Register process, i.e. when you click on "Register Now... " in the Logon Page.
    The reason is to allow this self registration only users beeing in a backend system. I will check the existence of the user in the SAP backend via JCo.
    But to do this i have to change the logic of the selfreg.
    I know that in "com.sap.portal.usermanagement.admin.par" is a JSP "selfreg_applyuser.jsp" providing the form.
    And that the class "com.sapportals.portal.prt.component.usermanagement.admin.SelfRegComponent" is referenced
    But i don´t know where to find the corresponding java-class/source.
    Can somebody help me?

    hi Holger,
       I have a similar kind of requirment , please let  me know how u haev solved the requirement.
    Regards,
    ravi.

  • Registration portlet customization.

    Hello there,
    I want to ask if we can customize the look and feel for the registration portlet, or is there any JAVA API can we call to make a user in OID and Portal???
    Kindly advise.

    For customization of Self-registration portlet follow following thread on thi forum:
    Subject Customize Self Registration Portlet/Form? dtd Nov 10, 2003 9:03
    And refer the following to create user programatically thru Java APIs in portal 9.0.2:
    Oracle Internet Directory Application Developer's Guide
    Release 2 (9.0.2) ->Java API for Oracle Internet Directory -> oracle.ldap.util.User
    hope this soves your problem....!!!

  • 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

  • Self-Registration in OIM 10g: how to install, customize and use of  SPML

    Hello. Can someone point me to any documentation (Oracle or other) on self-registration in OIM 10g. Like doc on how to install it and customize it. Also a doc on how to set up self-registration on a separate server and talk to OIM server using SPML.

    Refer doc below:
    http://download.oracle.com/docs/cd/E14049_01/doc.9101/e14044.pdf
    regards,
    GP

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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

  • Self registration customize pages

    Hi
    I am working on 9.1 version. I am able to show all the custom fields in single page if updated the FormMetaData.xml file. But, I want to navigate to different pages, depending upon the field value selected in current page.
    For example, if User Type is selected as End-User, then it should navigate to new page to fill the end-user details. Similarly, if User Type is End-User Administrator then it should navigate to another page to fill end-user administration details.
    Please anyone help me in solving this requirement.
    - Kalyan Mutya.

    You can write your own Self Registration Module for it and use OIM APIs to fufil your requirements.

Maybe you are looking for

  • Cisco CSC Web Filtering and Citrix\Ts users

    Hello we need to buy a cisco CSC module for cisco ASA, and we're using Citrix Presentation server and Terminal Server Users, is CSC capable of ahtentitcate transparent the users in citrix (x users are using same IP)?, the CSC uses ntlm for this?, tha

  • Major dreamweaver mx problems

    I don't even know how to describe this problem. I'm in the middle of creating a site. I had everything set up and and working just fine and then today my template decided to bomb out on me. I have 3 php include statements that all of a sudden are not

  • Sirius/XM Application---Error Message

    I am trying to download the Sirius/XM Radio application on my Blackberry Curve 8520 They recently updated this application (I had the old one) and the new application will not work. Here is the error message:  907 Invalid COD I have called Sirius XM

  • How old is my Skype profile?

    I know this has been asked before and I'm sorry for that. I found the discussion as to wear people found this information out about how old their account is. But when I tried to click on the solution it says "This topic has been archived" and I can't

  • Anyone else getting sporatic double headed pointer in CS4

    Sometimes my mouse pointer will turn into a double arrow "<-->" for no reason when using the program. Is it just me?? I do understand it is suppose to when dragging frames, etc.., but this is not the case when I see it. I'm still able to make selecti