How To create custom login and create user pages

Where can I find documentation that discusses how I can create a custom login page and create new user page?
Also, I cannot find how to get away from the default login page.
I am using 9iAS/Portal R2.
Bill G...

Well - I did find some docs;
Chapter 8 of the Oracle9 iAS Single Sign-On.pdf file titled "Customizing the Single Sign-On Interface" has some good info but I'm wondering about the "create new user part".
Bill G...

Similar Messages

  • How to create User and Database in different Table spaces

    How to create User and Database in different Table spaces using oracle 10g
    Regards
    daya

    I am sorry but your question does not seem to make much sense.
    Can you please rephrase your question?

  • How to create users and groups using WLST Offline with Weblogic 8.1.4

    How to create users and groups using WLST Offline with Weblogic 8.1.4?
    Any ideas?

    Hi this is how i created a user using WLST Offline?
    cd('/Security/' + domainName)
    # Delete the default user name weblogic
    # incase you want to remove the defualt user weblogic
    delete('weblogic','User')
    # Creating a new user defined
    create(userName, 'User')
    # Setting the password of the user you created.
    cd ('/Security/' + domainName + '/User/' + userName)
    cmo.setPassword(password)
    Regards
    Makenzo

  • How to modify the OIDDAS Create User page

    I am using Portal 902 and want users to register themselves to my Portal. I've have enabled Self-Registration but the pages need much cosmetic re-work for my purposes.
    I've discovered how to replace the default db generated SSO Login page with a customized JSP * AND * I wondering if I can do the same to the OIDDAS Create User page.
    I've noticed that the URL for the create user page is http://thebofer.my.domain:7777/oiddas/ui/oracle/ldap/das/admin/AppCreateUserInfoAdmin.
    This file (AppCreateUserInfoAdmin) is a UIX file and the only place I've found it is within "oiddas.ear" located at F:\oracle\ora9ias_portwire\ldap\das\oiddas.ear directory on my Portal host.
    Can I simply unpack the EAR and get the "AppCreateUserInfoAdmin,uix" file into JDev, modify it, then re-package it into the ear and then overwrite the existing ear with this new one? Is this acceptable?
    Also, I'm wondering about the location of the oiddas.ear file. Normally when I deploy to 9iAS the file usually ends up in the F:\oracle\ora9ias_portwire\j2ee\home\applications or the F:\oracle\ora9ias_portwire\Apache\Apache\htdocs. What is the proper deployment process when modifying OIDDAS UIX?
    Are my assumptions correct? Can someone point me in the right direction?Long postings are being truncated to ~1 kB at this time.

    This text is not a translation managed in the DB.  you can modify the aspx page, directly.  web\webcommon\login.aspx

  • How to create User Administration

    Hi Community,
    I want to create a user administration with htmldb. I know how it works with htmldb but it should work in the application I build with htmldb.
    It should be able to give Users a login, pasword...
    Do you know how this works?
    Thanks.

    Rob,
    As Jes mentioned, a 'User' can be a HTMLDB user, or an Oracle database user, or could be any one which the Application can control.
    When you build the application, you define a table (or more depending on what you want to do), and store the usernames and password hash in that table. You can then change the authentication to CUSTOM authentication where you control who can login to the system and how they can login. For an example, check the Sample Application. This uses custom authentication and the user names are stored in the demo_users table.
    If you mean something else, then do clarify.

  • How to create user defined button in alv report

    how to create user defined button in alv report
    thnks in advance.

    Hi,
    U can define it the the PF-STATUS ( Menu for ALV ).
    For that u have to define it in the EVENTCAT.
    form z_eventcat  using    p_i_eventcat type slis_t_event.
      data: i_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type     = 0
        importing
          et_events       = p_i_eventcat
        exceptions
          list_type_wrong = 1
          others          = 2.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      clear i_event.
      read table p_i_eventcat with key name = slis_ev_top_of_page into
      i_event.
      if sy-subrc = 0.
        move 'TOP_OF_PAGE' to i_event-form.
        append i_event to p_i_eventcat.
      endif.
      read table p_i_eventcat with key name = slis_ev_pf_status_set into i_event.
      if sy-subrc = 0.
        move 'SET_PF_STATUS' to i_event-form.
        append i_event to p_i_eventcat.
      endif.
      clear i_event.
      read table p_i_eventcat into i_event with key name = slis_ev_user_command .
      if sy-subrc = 0.
        move 'USER_COMMAND' to i_event-form.
        append i_event to p_i_eventcat.
      endif.
    And in the DISPLAY
    call function 'REUSE_ALV_GRID_DISPLAY'
       exporting
         i_callback_program                = v_progname
         i_callback_pf_status_set          = 'SET_PF_STATUS'
         i_callback_user_command           = 'USER_COMMAND'
         i_callback_top_of_page            = 'TOP_OF_PAGE'
         i_grid_title                      = v_gridtitle
         i_save                            = 'A'
         is_layout                         = i_layout
         it_fieldcat                       = i_fieldcat[]
         it_sort                           = i_sortinfo
         it_events                         = i_eventcat
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        tables
          t_outtab                          = it_final
       exceptions
         program_error                     = 1
         others                            = 2
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    *MENU SETTINGS.
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'ALV_MENU'.
    endform.                    "SET_PF_STATUS
    endform.                    " Z_EVENTCAT
    Now double click on ALV MENU nad u can create a button in the application bar.
    Regards,
    Pritha.

  • How to Create a Page LOV Template and a Region LOV Report Template in APEX

    Hi All,
    Thanks in advance ..
    I am new to APEX , Currently working in APEX 3.2
    Can any one please guide me How to Create a Page LOV Template and a Region LOV Report Template in APEX
    So that I can create dynamic Multi column LOV in APEX
    Cheers
    Sachin

    Sachin,
    I think you are en-quiring about 'Custom pop-up page'. See this link. You will get all required info there.
    Regards,
    Hari

  • How to create user groups in SAP

    Hello Gurus,
    Can anyone let me know how to create user groups in SAP-HR Module and who will be creating  the user groups.
    plz provide me the steps.

    Hi Stephanie,
    IMG --> Personnel Mgmt --> Personnel Administration --> Basic Setting s --> Maintain User Parameters
    Please refer the below links:
    http://scn.sap.com/thread/1653026
    http://scn.sap.com/thread/1682721
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10eab7af-0e54-2c10-28a5-87b47adbe1a5?QuickLink=index&overridelayout=true&44478681629499
    Thanks,
    Madhav.

  • How to create user defined transactioncode in bw

    hi,
    How to create user defined transactioncode in bw.My user want this
    regards,
    Abhishek

    hi 
    by using the t code SE93 u can create.
    after that it will ask u for what ur going create
    1.Program and screen
    2.Program and selection screen
    3.method of class
    4.transaction with variant
    5.transaction with parameter
    here u have to select appropriate option based on ur requirement
    and enter the options as per ur needs save and activate

  • How to create user defined metrics for SQL Server target?

    The customer is not able to create a user defined metrics for SQL Server target.
    This is very important for him to use this product.
    He is asking how to create user defined metrics?
    I sent him Note 304952.1 How to Create a User-Defined SQL Metric in EM 10g Grid Control
    But it would work for an Oracle DB, but his target is SQL Server DB
    Not able to find the "User-Defined Metrics" link from Database home page.
    How to create user defined metrics for SQL Server target?

    http://download-uk.oracle.com/docs/cd/B14099_19/manage.1012/b16241/Monitoring.htm

  • How to create user editable Crystal Report with dynamic dataset

    What I would like to achieve:
    A program loads a report in runtime updates list of database fields (possibly includes sample data), open report in "Crystal Reports 2011" (or 2008) where user customizes report and saves it. Later on the program loads the report, fills actualized data and displays it in .net report viewer.
    What I do:
    CrReport = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    CrReport.Load(TemplateFilename)
    Dim Results As DataTable
    DataTable is filled from a database
    CrReport.SetDataSource(mResults)
    CrReport.SaveAs(NewReportPath, True)
    The NewReportPath is opened in the default program.
    What are the problems
    The report is open in preview mode (not in design).
    When the field is added to the report the designer asks for XML datasource on preview.

    The short answer is that it is not possible. I broke the question to other two: How to save a report that it opens without preview? and How to create user editable Crystal Report with dynamic dataset, where it is possible to find details. Key answer is Re: How to create an editable previewable report?

  • How to create user's in Middleware

    Hi All,
    How to create user's in Middleware(J2EE stack).When we create user's in ABAP stack it has to reflect that user in J2EE stack also. In old version of mobile using WebConsole there was an option by running that program able to see created user's in ABAP stack in WebConsole too. What I mean to say how can get user's synchoronization in between ABAP stack and J2EE stack. Is there any link to know better Administration of J2EE stack. Please let me know
    Thanks in advance.
    Regards,
    Ameer Baba.

    hi Ameer,
    You arent able to see the ABAP users on your Java stack simply due to the fact that the User management Engine of Java stack is not properly configured to connect to a particular client of ABAP stack.
    Please check this link for more information
    http://help.sap.com/saphelp_nw2004s/helpdata/en/45/1bbdccc7850064e10000000a1553f7/content.htm
    If you are still unable to solve the problem please address it in UME forums so that you get a speedy resolution
    regards
    sunil

  • How to create users on JDI

    Hi
    How to create users on JDI... how to access JDI....
    I want to create users, groups in JDI
    Please help me....
    Thanks & Regards
    Ravi Shankar B

    Hi
    What is the difference b/w Inactive, active and Local DCs...
    In inactive and active DCs i am not getting any thing... why?
    and i need to know how to do the following configuration.....
    Creating Users
    The following shows you how to create various users. Developer and Admin are just placeholders for actual people. CMSadm, on the other hand, is the user name recommended by SAP for the CMS user used by the CMS to access the DTR, CBS, and SLD.
    .1Choose Create User.
    .2Create the users Developer, Admin, and CMSadm, in this order.
    Assigning Users to Groups
    .1 Choose Groups.
    The Groups screen appears.
    .2 In the Groups field, select the JDI.Developers role and choose Assign Users to ...
    The Assign User(s) screen appears.
    For more information, see the installation manual of SAP NetWeaver Development Infrastructure.
    .3 Choose Add User ...
    The Search for User screen appears.
    .4 Enter the user ID Developer and choose Search.
    The Search Result(s) screen appears.
    .5 In the list, select the Developer user and choose Select.
    On the Assign User(s) screen, you see a list of all users that have the JDI.Developers role. Developer has now also been included in the list.
    .6 In the same way, assign the JDI.Administrators role to the users Admin and CMSadm.
    If the SLD is installed on a separate J2EE Engine, you must also create the users Developer and CMSadm in this Engine as well.
    Thanks & Reagards
    Ravi Shankar B
    Message was edited by: RaviShankar B

  • How to create users in xMII 12.0

    Hi,
    I am new to xMII 12.0. I know how to create users in xMII 11.5 Menu->Security Services->Security Manger->User Management.
    But I am having difficulty in creating users in xMII 12.0. Can someone help in this regard.
    Thanks,
    Srinivas.

    Jeremy,
    Thank you very much. Now I can see User Management link under http://server:port.
    It looks like I do not have proper authorization to get into this link as it is giving java exception.
    Anyway I got the answer from you which I am looking for and I will work with our xMII system admin.
    Thanks,
    Srinivas.

  • How can i modify lable of texfield on create user page

    Hi,
    How can i modify lable of texfield on create user page of oracle identity manager administrative console ?
    e.g. display Sponsor ID inplace of Manager ID
    Thanks

    Hi Nitesh,
    I changed in xlWebadmin.properties file and restarted the server but still it is reflecting the old lable e.g.
    In xlWebAdmin.properties file
    - global.lable.managerid= Manager ID
    I changed it to global.lable.managerid= Sponsor ID
    But still it is displaying Manager ID on User form. I am using OIM 9.1
    regards
    Edited by: YMI on Nov 26, 2009 2:45 AM

  • How to create user dsn for microsoft access driver(*.mdb,.*accdb) in 64 bit

    hi,
    how to create user dsn for microsodt access driver(*.mdb,*.accdb) using command line in 64 bit.
    i have installed 64 bit drivers and when use following command
    C:\Windows\System32>odbccad.exe CONFIGDSN "Microsoft Access Driver (*.mdb,*.accdb)" "DSN=GLDatabase|Description=GL Data Source|DBQ=C:\DataBase\1.mdb"
    CONFIGDSN:'unable to create a datasource for the "Microsoft Access Driver (*.mdb,*.accdb)" component not found in the registry with the error code -2147467259
    but it works with C:\Windows\SysWow64

    yes i have installed Microsoft Access Database engine 2010 redistributale => AccessDatabaseEngine_x64.exe
    i can able to create user dsn using odbccad32.exe in system32 folder but using command line its not working
    C:\Windows\System32>
    odbccad.exe CONFIGDSN "Microsoft Access Driver (*.mdb,*.accdb)" "DSN=GLDatabase|Description=GL Data Source|DBQ=C:\DataBase\1.mdb"
    CONFIGDSN:'unable to create a datasource for the "Microsoft Access Driver (*.mdb,*.accdb)" component not found in the registry with the error code -2147467259

Maybe you are looking for