Modify User Registration page ?

Hello everyone,
I want to modify User Registration page.
I want to change the style of page ,
and add an register agreement.
Where to download the file of User Registration page
on EP7 SP6 Server?
Is there anbody had done it ?
Thanks & Regards,
Jianguo Chen

I am not sure how this is EP 7, but i am sure this should be very similar as in EP 6.
From one of SDN post:
you can try:
just find the file com.sap.selfreg.portal.par.bak ( rename it to com.sap.selfreg.portal.par) in usr directory of installed drive import the file in netweaver developer studio(add the required jar files from lib of the portal usr directory) and open its jsp/pagelet folder and add the required fields in the corresponding jsp. and again redeploy the file through the component portal browser and just restart the server.
Hope this helps.
Please make sure you take a back up of cocerned file to avoid any trouble
regards,

Similar Messages

  • Query : Addition of extra fields in the User Registration page of portal.

    Hi All,
    I have a query, about adding extra fields in the new user registration page of portal.
    If you can suggest the required source files in details,inorder to incorporate two more fields.
    Say, AGE and COMPANY,with the existing fields in the same page.
    Along with this,can you please send the details of retrieving those information from backend and the backend functionalities associated with the SUBMIT button on the registration page.
    Regards,
    Sudeep

    Hi,
    Your query is divided into two parts.
    The first part is adding new fields into existing form. This feature comes under Branding of portal. Plz use the link below understanding the same and related help :
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/affe402a5ff223e10000000a155106/frameset.htm
    The second part is retrieving the values from backend.Here it will be the UME database. You need to develop a logon.par file and replace the same in your portal.
    Happy Customizing.
    Sukanta Rudra

  • New User Registration page does not launch

    I am setting up a simple process to register a new user to my APEX application. At the login screen, the user can select "new user registration" button if they would like to register for a new id. Well, it was working for awhile and it stopped working sometime after I added the validations for the new registration fields. Now, whenever I launch the login screen and click on the "new user registration" nothing happens. If I bring up the "new user registration" page in the application builder, and click "run", it launches the login screen! I do have redirects back to the login screen in the event that the user clicks "cancel" or "register" on the "new user registration" page.
    This is very strange. Does anyone have any ideas as to the cause or how to track this down?
    Thanks,
    Reid

    I'll see if I can put the app on apex.oracle.com. I disabled the redirects and all of the not null validations I had. It's still behaving the way it did.
    In the meantime, I noticed this oddity. It seems like there is a mismatch between the URL page # and the actual page that is displayed. Here is what I mean. Here is the url:
    http://rilian:8080/apex/f?p=103:8:7659307535557230:::::
    See the page should be p=103:8. This is app 103, page 8, right?
    Well, that is the correct app and page. However, it displays app 103, page 101.
    When I click on the "new user registration" button, the url changes to this:
    http://rilian:8080/apex/f?p=103:8:7659307535557230::NO:8::
    And, I'm still on page 101, not page 8.
    Like I said before, this was working like a champ earlier this week and I went to show my wife how I had it working and boom it stopped. LOL. Murphy's law...
    Thanks again,
    Reid

  • After updating to Firefox 18.0.1, I am getting a "User Registration" page. What is this?

    When I open Mozilla, I get two windows. The one on top is identified as "User Registration"; it is blank except for the line, "%brandDTD; %browserDTD; %baseMenuDTD; %charsetDTD; %textcontextDTD; %customizeToolbarDTD; %placesDTD; %safebrowsingDTD; %aboutHomeDTD; %debuggerDTD; ]>", at the top. If I close that page, my usual home page is right behind it. It is apparently causing no actual problems, but is disconcerting. What is this page, is it asking me to do something (if so, what), and, if not, is there a way to stop it from appearing?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Modifying User Management Pages

    Hi,
    We want to create a simplified user management (removing unused buttons and fields) using the standard User Management Web Dynpros in NWP 04s. Does anyone know if they're available for download somewhere?
    Regards
    Mattias

    Hi Mattias...
    See these links... It might be helpful for u..
    /people/sap.user72/blog/2005/06/05/user-management-api-in-webdynpro
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/user+management&
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ee37934c-0601-0010-e199-ac8e503ad6a9
    http://help.sap.com/saphelp_nw04/helpdata/en/f5/4dd9d47a200d46bd1c56062f49e10b/content.htm
    URs GS

  • Modifying the redirect page of an input behavior

    I created a user input behavior for a user registration page.
    I also added a check new username behavior. It all works well. The
    problem isn't really a big problem because it all still works. But,
    it would be nice if I could modify the code that Dreamweaver
    generates and NOT get the red exclamation error next to the
    behavior in the behaviors panel. That way I could still click on
    the behavior and be able to edit it with the dialog box instead of
    hand coding it.
    Here is the deal. In the input behavior, I specified the
    redirect page. The code written by Dreamweaver is:
    MM_editRedirectUrl = "login_confirmation_send.asp"
    Problem is, I want to pass a form value in the query string
    to that redirected page. So, I modified that code to say:
    MM_editRedirectUrl = "login_confirmation_send.asp?email="
    & Request.Form("email")
    When I do that, I get a big red exclaimation next to the
    check new user behavior which says the input behavior has been
    deleted. Eventhough, it still works fine.
    Is there a way to modify the code without getting the
    error?

    MM_editRedirectUrl = "login_confirmation_send.asp?email="
    MM_editRedirectUrl = MM_editRedirectUrl &
    Request.Form("email")
    That might do it. Does ASP have another concatenator besides
    ampersand(&) like the plus sign(+) that you could use? Also,
    I've totally forgotten if you need semicolons(;) at the end of
    lines of ASP code.

  • Auto login after new user registration

    Hello,
    I would like to go directly to a restricted page (add session variables for username, level, etc) after a new user is registered, without first going to the login page. Is there a way to do this? I tried adding a login user behavior to my new user registration page, but it disabled the form validation on the page. I also tried copying some of the login page code (login transactions) into the new user registration page, but that didn't work either... any help would be greatly appreciated!
    Steve
    BTW, I am not utilizing email activation

    Well I finally figured out a work around... I am sure others will run into this problem and if someone can explain it to me I would be happy. But for now this will work.
    The above code that Steve U posted works for me exactly 50% of the time. It will work every other time, why I don't know. I even changed all of my temp and session directories in php configuration, changed from php5 to php4 and still no fix.
    Here is what I did to get it to work:
    On your registration form underneath the insert transaction you copy and paste the login transaction (that you generate on a login page).
    *Change tNG_login(this is your server connection)
    *Change the POST value to match your submit button on your registration form, mine is KT_Insert1.
    *Modify the redirect trigger to go to the page you want to redirect to after registration.
    *Change the kt_login_user and kt_login_password addColumn values to match the username and password fields in your registration form, mine are email_usr and password_usr
    *comment out the kt_login_rememberme addColumn (or if you need this, modify the code to allow for it in the registration form)
    I have now successfully registered a new account and had it auto-login to the user protected area 10 times in a row now, so this should be working.
    If you want some sample code here it is:
    // Make a login transaction instance
    $loginTransaction = new tNG_login($conn_connection);
    $tNGs->addTransaction($loginTransaction);
    // Register triggers
    $loginTransaction->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");
    //$loginTransaction->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);
    $loginTransaction->registerTrigger("END", "Trigger_Default_Redirect", 99, "user/confirmlogin.php");
    // Add columns
    $loginTransaction->addColumn("kt_login_user", "STRING_TYPE", "POST", "email_usr");
    $loginTransaction->addColumn("kt_login_password", "STRING_TYPE", "POST", "password_usr");
    //$loginTransaction->addColumn("kt_login_rememberme", "CHECKBOX_1_0_TYPE", "POST", "kt_login_rememberme", "0");
    // End of login transaction instance

  • Sample Registration Page creation in web center sites.

    Hi Experts
    I have one urgent requirement as I need to create user registration page where user will enter  detail and that detail will store in the back end table.I have some form created but I dont know how to save the form data into back end table.
    Registration Page
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %>
    <%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"
    %>
    <%@ page import="COM.FutureTense.Interfaces.*,
                       COM.FutureTense.Util.ftMessage,
                       com.fatwire.assetapi.data.*,
                       com.fatwire.assetapi.*,
                       COM.FutureTense.Util.ftErrors"
    %><cs:ftcs><%--
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the SiteEntry and the CSElement --%>
    <ics:if condition='<%=ics.GetVar("seid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("seid")%>' c="SiteEntry"/></ics:then></ics:if>
    <ics:if condition='<%=ics.GetVar("eid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("eid")%>' c="CSElement"/></ics:then></ics:if>
    <html>
    <body>
    <satellite:form>
        <input type="hidden" name="pagename" value="avisports/AVIArticle/SaveReg" />
    <table>
        <tr>
            <td colspan="2" >Registration Form</td>
        <tr>
            <td>Employee ID:</td>
            <td><input type="text" value="" name="employeeId" size="6" maxlength="6"/></td>
        </tr>
        <tr>
            <td>Employee First Name:</td>
            <td><input type="text" value="" name="firstName" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td>Employee Last Name:</td>
            <td><input type="text" value="" name="lastName" size="20" maxlength="30"/></td>
        </tr>
            <tr>
            <td>User Name:</td>
            <td><input type="text" value="" name="userName" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td>Password:</td>
            <td><input type="password" value="" name="password" size="20" maxlength="20"/></td>
        </tr>
            <tr>
            <td>Confirm Password:</td>
            <td><input type="password" value="" name="confirmPassword" size="20" maxlength="20"/></td>
        </tr>
        <tr>
            <td>E-Mail:</td>
            <td><input type="text" value="" name="email" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td colspan="2">
            <input type="submit" name="submit" value="Submit"/></td>
        </tr>
    </table>
    </satellite:form>
    </body>
    </html>
    </cs:ftcs>
    And I have one back end Table
    CREATE TABLE UserRegistration
        id               INTEGER PRIMARY KEY,
        username         VARCHAR2(20),
        password         VARCHAR2(15),
        emailId          VARCHAR2(60),
        firstname        VARCHAR2(30),
        lastname         VARCHAR2(30),
        customerName     VARCHAR2(50),
        addressId        SMALLINT,
        customerrecordId SMALLINT
    I am using Registration Template to create Registration Page and there in the field am entering the values.Now on click of submit button I need to send these details to back end.and it should save into the table.Please tell me how t do it.
    Thanks
    Sam

    Hi,
    You can use HTML form tag that will target your servlet and form that servlet you can save these details into a table.
    Thanks,
    Nelash jindal

  • User Login Page

    Hi all,
    Good day,I need your help.
    I am really new to APEX.
    I would like to have a user table name 'tbl_user' with 2 columns (user_id, password).
    Some dummy data were created, and I do some PL/SQL coding inside the default login page of a newly created application (page 101).
    ======================================================================
    DECLARE
    v_USERID tbl_USER.USER_ID%TYPE;
    v_PASSWORD tbl_USER.PASSWORD%TYPE;
    BEGIN
    select tbl_USER.PASSWORD into v_PASSWORD from tbl_USER where USER_ID_ID= :P101_USERNAME;
    if v_PASSWORD=:P101_PASSWORD then
    OWA_UTIL.redirect_url ('f?p='||:APP_ID||':2:'||:SESSION);
    end if;
    ======================================================================
    Although I key in the correct username and password, the page 101 still prompting me invalid credential.
    Please kindly advice.
    p/s: How can we create a new user registration page instead?
    Regards,
    Golden
    Edited by: golden on Nov 20, 2009 7:06 AM

    Hi Sam,
    Thanks a lot for the reply.
    Your understanding is right. When I use the those user I created using 'sys' account, the application is able to login.
    As from your explanation, how can we control the login page by referring to the "tbl_user" which is created by ourselves?
    The process is just works like a normal login page:
    1) This login page can let the end user to register themselves. The data will be stored inside the table "tbl_user"
    (user_id and password)
    OR
    For those registered user, they key in the user id and password, if the password is correct, it will direct them
    to certain page.
    Hence, the major problem is how can we ensure the typed in login details is referred to our user-defined table instead of the default application authentication?
    Thanks for advance.

  • Send Email after user registration

    Hi i hope somebody can help me
    Using Dreamweaver CS3 and the ADDT, i created a user registration page using the ADDT wizard,
    TRouble is when i click submit, it comes up with an error relating to the sending of the Email:-
    "Developer Details:
    E-mail couldn't be sent. Error returned: Failed to connect to smtp.mail.yahoo.co.uk:25 [SMTP: Failed to connect socket: A non-blocking socket operation could not be completed immediately. (code: -1, response: )]. (EMAIL_FAILED)
    tNG Execution Trace - VIEW
    tNG_insert.executeTransaction
    STARTER.Trigger_Default_Starter
    tNG_insert.doTransaction
    BEFORE.Trigger_Default_FormValidation
    BEFORE.Trigger_Registration_CheckUniqueUsername
    BEFORE.Trigger_Registration_CheckPassword
    tNG_insert.prepareSQL
    tNG_insert.executeTransaction - execute sql
    tNG_insert.postExecuteSql
    AFTER.Trigger_Registration_AddDynamicFields
    AFTER.Trigger_WelcomeEmail*
    ERROR.Trigger_Default_Insert_RollBack
    tNG_insert.getRecordset
    tNG_insert.getFakeRsArr
    tNG_insert.getLocalRecordset
    tNG_insert.getFakeRecordset
    tNG_insert.getFakeRecordset"
    If i delete the Send_email trigger, then the registration is successful, however, without the Email confirmation (obviously).
    Any help would be gratefully recieved as its been driving me nuts for days now.

    Wayne,
    Are you running this code on a Yahoo store or just bouncing the emails thru the yahoo account?
    From what I read here(dated May 2, 2008):
    http://groups.yahoo.com/group/Commodore_Amiga_Retro/message/10924
    Yahoo has recently changed server names and/or ports. You might have to try plus.smtp.mail.yahoo.co.uk:465
    I've never used Yahoo to do this, so I'm no expert. Just found this googling a bit.
    From what I've read, it seems yahoo is mixing up the port numbers due to spam issues. You will need to contact Yahoo regarding which port to use if the above does not work.
    Shane

  • 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

  • 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

  • Edit Page options in ribbon disabled after applying modified Seattle Master Page

    Hi,
    I'm working on a modified version of the Seattle.master page, and I have an odd permissions issue that is seen when my user (a farm admin) tries to edit a page on the site. On some pages, clicking Edit Page doesn't do anything at all. On others, I've been
    able to go into edit mode but not do anything with the Edit options afterward. In this scenario, most or all of the useful edit options are disabled, and I cannot use Save, Checkout, Discard the Checkout, Change the Page Layout, etc...
    Checking the JavaScript console in IE reveals this JS error that I don't see in the OOTB Seattle:
    SCRIPT5007: Unable to set value of the property 'href': object is null or undefined 
    [our.site.com], line 1128 character 590
    Here's the function being referenced:
    function _cUpdconetidProjectPropertyTitleGraphic(data, ctrl){ ctrl.href = slNavUrl; }
    Other possibly helpful information:
    Here is a snippet from the modified Seattle Master Page of where the ribbon code sits:
    <div id="s4-workspace" class="ms-core-overlay">
    <div id="s4-bodyContainer">
    <SharePoint:SPSecurityTrimmedControl runat="server" AuthenticationRestrictions="AnonymousUsersOnly">
    <wssucw:Welcome runat="server" EnableViewState="false" />
    </SharePoint:SPSecurityTrimmedControl>
    <div id="ms-designer-ribbon">
    <PublishingRibbon:PublishingRibbon runat="server"/>
    </div>
    As you can see, I have moved the Ribbon (div#ms-designer-ribbon) from its fixed position outside of the div#s4-workspace to inside of the div#s4-bodyContainer so that it scrolls with the page. Placing the ribbon inside div#s4-bodyContainer shouldn't be an issue,
    as I've made a Design Manager Master Page in the past and placed the ribbon there as well without issue.
    Does anyone know how I can get this modified Seattle master page to allow editing?

    Hi,
    Is there any custom JavaScript in it, sometimes error may occur due to some typo.
    Suppose that we can do the customization like this: With a copied master page, we can apply a part of the change first, then check it in the browser to make sure it can work without affecting the OOTB features. Then apply other parts one by one with immediate
    examinations...
    By doing this, it would be easier to find out which step in your whole customization would cause the issue.
    Best regards
    Patrick Liang
    TechNet Community Support

  • How do I compensate for only one ADDT ' tNG_config.inc.php file with many Registration pages to build?

    My dynamic site has a lot of different languages funneled into one website, using various cookies, url params, php includes, etc. all to obtain similar info in different languages. Thank you David Powers.
    It is working really well and now I’ve come to the Registration section. Okay, so registration isn’t all that hard; I could do most of it with the standard Dreamweaver set of tools. Alas, I really like much of what ADDT has to offer with welcome email messages and activation and such.
    Here’s the setup: Obviously, with many different language people, I have many different databases for them. I did that becuase we’re expecting a big audience and I really don’t want to have all those different language names in the same table. Furthermore, these tables, whereby the students will login, will also contain a lot of information about their work so again, don’t want to have one massive table. I’ve divvied them up into tables by language and I’m using those tables to keep track of them and their work.
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings.
    Here’s my situation: I notice that when I’m done with the configuring of one of the registration pages, I’m asked if I want to upload the tNG_config.inc.php page and that it has changed since the last upload. I saved a copy of the _config.inc.php and did a new registration form with the same info and when done, I compared the two _config.inc.php files. As one would guess, there is a small difference in the Connection string to the databases  $tNG_login_config["connexction"] = "connString_Ital_db".
    My problem is that I have 13 of these registration pages to do but ADDT only has the one tNG_config.inc.php. That’ll work great for the one with which it is associated, but the others will obviously break. I’ve looked through the code in the Registration pages, to find the ADDT link to the tNG_config.inc.php file hoping to rename it Italian, Spanish, etc, but the name of the file does not appear in the Registration page.  I realize that ADDT Control panel is designed for use on one site, and can then be used on others, with the changes etc. But my site seems a little unique since so many sites are actually in one.
    Has anyone whipped this problem before? I just don’t understand why there is no link in the head code of the Registration page to let me change it and to create more config files with different names. Thanks for you help!
    [Moved by moderator to appropriate forum]

    Hi Brian,
    I just tried to check all of ADDT´s "includes" files for any internal references (read: "require" or "require_once" statements) to the file "tNG_config.inc.php". So far I can only see this file referenced in the file "tNG.inc.php" (within the "$KT_tNG_uploadFileList1" array).
    So what could this mean ? Maybe you´ll have to make copies of the the original "tNG.inc.php" as well and save them as, say, "tNG.inc_ital.php" file plus make sure that these copies internally point to a different "tNG_config_ital.inc.php" file -- because it´s always the first mentioned file which gets referenced from e.g. an ADDT login page (see the "Load the tNG classes" - part)
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings
    The Control Panel will always update the main "tNG_config.inc.php" file, so any further modifications will have to become manually applied to the custom files you´re creating.
    Cheers,
    Günter

  • 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

Maybe you are looking for