New login in oracle forums

i have a doubt not linked to this forum that how to create a new login to access the forums. I went to http://forums.oracle.com/forums/ but there does not look any provision to create a new login, it only shows access for existing users to login.
I hope, my question is clear. Please help in solving the doubt.
Regards.

Try the following page:
https://login.oracle.com/login/signon.jsp
This is reachable from the FAQ (Membership Information):
http://www.oracle.com/technology/contact/htdocs/faq.html#mem
I think this will help,
Ralf

Similar Messages

  • My Oracle Forums Handle Name Changed without my notice!!!

    Hello Oracle Forums Moderators,
    I joined Oracle Forums 04/04/08 with and email address (1). I decided to change my email address and handle names, so my forums handle name is cutedba and my email address is (2). I already had like 8 posts in oracle forums. Today when I logged to oracle forums I found my handle name is user8722709 and my posts resets to only one post (with this thread, it will become two posts).
    and my joining date became 08/19/09.
    I went to the control panel and edited the profile and handle name to cutedba. I received the following message:
    "The handle you are trying to update is already being used, please identify any other value and retry."
    and I logged as my new email address (2) as usual. Please fix this for me. Because I am the cutedba in Oracle Forums.
    I also want to mark one of the threads I created earlier as answered but I can't the forum thinks I am not the author of that thread:
    How to install multiple oracle homes in oralce 9i on unix
    Thank you and best regards,
    cutedba

    Ok, let's see if I understand this clearly (cos if I don't then I'm sure the site admin won't)...
    1. You created an account (let's call it "Account 1")...
    Acount 1:-
    Email Address: [email protected]
    Forum Notifications Email: [email protected]
    Handle: {default}
    2. You created a second account (let's call it "Account 2")...
    Account 2:-
    Email Address: [email protected]
    Forum Notifications Email: [email protected]
    Handle: {default}
    3. You modifed Account 1 to change the Forum Notifications Email and the handle:
    Account 1:-
    Email Address: [email protected]
    Forum Notifications Email: [email protected]
    Handle: cutedba
    That's right.
    all my forum participation were updated including post numbers.
    What was updated? All you did was change your notification email and your handle on Account 1?You are right.
    I also successfully login using email id (B) with the password, no issues.Yes, I dedicated an email account for oracle stuff and I used it to create an oracle account (Account B) because I couldn't delete/disable Account A from oracle.
    >
    4/ submitted a new thread in oracle forum as in the link I mentioned earlier.I don't see that has any relevance.correct!
    5/ when I visited back Oracle Forums Today, I saw that my post count reset to 1 (last reply) and the system identified me as a different user (user8722709) than cutedba. I went to the Control Panel and Modified the Name Handle for forums back to cutedba . I received the message mentioned earlier.Which account did you log on as?Account B
    It seams that Oracle forums end me up with two identities!!But you created two, so there will be two. ?:|Because oracle will not delete/disable account A
    Please I need you to help on fixing this issue.I'm just a user of OTN like yourself, I can't fix it, I'm just trying to help ascertain exactly what you've done.I understand, thank you for help and make this issue clearer even to me ;-)
    One more thing, I logged in to oracle forums using email (A) and my profile cutedba is there.Brilliant, that's what I'd expect.
    I went to the Control panel and found the Username is still with email (A) but the forums email is with email and (B).Exactly, that's also what I'd expect.
    But why still the the username did not changed and my profile is not updated yet?On which account?Account A
    Occasionally, if OTN have been doing upgrades or such things, I believe the forums will move across to the failover servers, so sometimes changes to profiles may not be picked up or transferred back to the main servers. However, you said you'd logged in with Account 1 and it said cutedba on it.
    I think it is the same bug in the forums.
    I feel this too.
    I wish if OTN has the ability to allow users to delete account that are no longer necessary, like my case here. Account A is no longer necessary for me but if switched the handle names between account A and B, I still can't get the credits and links for Account B profile.
    How to report OTN bugs?
    Regards,
    Cutedba

  • Is oracle forums having  any problem for the past two weeks

    Hi all,
    I am unable to login in oracle forums for quite some time, Is Oracle forums working for every one of you.
    Thanks,
    P Prakash
    Edited by: prakash on Nov 10, 2011 7:12 AM

    And how is that an SQL or PL/SQL question?
    Have you read the thread in the Community Feedback forum...
    error signing in
    locking this thread

  • I am new to using Oracle, and I am trying to create an add/insert stored pr

    I am new to using Oracle, and I am trying to create an add/insert stored procedure for a table. The PROD_CD and PLAN_CD fields in my table can have no value (empty or null) Can you please check my code and let me know what I am doing wrong?
    Table definition:
    CREATE TABLE DCWEB.USER_PLAN_PREFERENCE
    USERID VARCHAR2(40) NOT NULL,
    PROD_CD VARCHAR2(9) NULL,
    PLAN_CD VARCHAR2(9) NULL,
    STATE_LST VARCHAR2(2) NOT NULL,
    STATE_NM VARCHAR2(40) NOT NULL,
    LST_UPDATE_TS TIMESTAMP(6) DEFAULT CURRENT_TIMESTAMP NOT NULL
    ALTER TABLE DCWEB.USER_PLAN_PREFERENCE
    ADD CONSTRAINT USER_PLAN_PREFERENCE_XPK PRIMARY KEY (USERID, PROD_CD, PLAN_CD);
    -- Grant/Revoke object privileges
    grant select, insert, update, delete on DCWEB.USER_PLAN_PREFERENCE to HIGGIB1;
    Stored Procedure Definition:
    procedure setUserPlanPref (
    userid in varchar2,
    prod_cd in varchar2,
    plan_cd in varchar2,
    state_lst in varchar2,
    state_nm in varchar2
    is
    currentTimestamp timestamp := current_timestamp;
    begin
    insert into user_plan_preference (userid, prod_cd, plan_cd, state_lst, state_nm, lst_update_ts)
    values (upper(userid), upper(prod_cd), upper(plan_cd), upper(state_lst), upper(state_nm), currentTimestamp);
    commit;
    exception
    when dup_val_on_index then
    begin
    update user_plan_preference up set
    up.userid = upper(userid),
    up.prod_cd = upper(prod_cd),
    up.plan_cd = upper(plan_cd),
    up.state_lst = upper(state_lst),
    up.state_nm = upper(state_nm),
    up.lst_update_ts = currentTimestamp
    where up.userid = upper(userid)
    and up.prod_cd = upper(prod_cd)
    and up.plan_cd = upper(plan_cd);
    commit;
    exception
    when others then
    rollback;
    end;
    when others then
    rollback;
    end;
    end;
    INPUT DATA
    I am unable to insert a record calling the stored procedure with values: DCWEB4578, , 2P, CA, CALIFORNIA but when I change to the string "NULL", the insert succeeds. When I try to call the stored procedure to update the inserted record with values: DCWEB4578, "NULL", 2P, CO, COLORODO the update does not happen since I still see the original record in the table. Please advise. Thanks in advance for your help.

    938319 wrote:
    I am new to using OracleWelcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and ensure you've updated your profile with a real handle instead of "938319".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    With APEX we're fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Thanks for posting the complete code, it makes it so much easier to understand the problem, but always post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    and I am trying to create an add/insert stored procedure for a table.Does this have anything to do with APEX, for which this is the forum? General SQL &amp PL/SQL matters should be directed to the {forum:id=75} forum.
    The PROD_CD and PLAN_CD fields in my table can have no value (empty or null) Can you please check my code and let me know what I am doing wrong?This:
               commit;
    exception
    when others then
    rollback;
    end;
    when others then
    rollback;Remove it all.
    Commits should be issued by end user/client software on completion of a transaction. This means <tt>commit;</tt> should almost never appear in PL/SQL code. The main exception to this is in <tt>dbms_job/secheduler</tt> scheduled processes that have no client or UI. If this code is executed from APEX, then APEX issues more than enough commits anyway.
    exceptions are just a way of ensuring your code is buggy.<tt>when others</tt> exceptions are just a way of ensuring your code is buggy.
    INPUT DATA
    I am unable to insert a record calling the stored procedure with values: DCWEB4578, , 2P, CA, CALIFORNIA but when I change to the string "NULL", the insert succeeds. When I try to call the stored procedure to update the inserted record with values: DCWEB4578, "NULL", 2P, CO, COLORODO the update does not happen since I still see the original record in the table. Please advise. Thanks in advance for your help.With the <tt>commit</tt>s and <tt>when others...</tt> removed from the code you'll have a chance of seeing what's actually happening. Note that the entire procedure can be simplified by writing as a MERGE</tt> statement.

  • API for creating new User in Oracle E-Business Suite through BPEL

    Hello,
    I would like to use a BPEL process to create a new User in Oracle E-Business Suite. In the Integration Repository I was able to find an API called FND_USER_PKG/LOAD_ROW that creates/updates Application's User data. Is this the API I should be using? If so, I would like to better understand how to use this API.
    I have created a simple BPEL process and added an Oracle Application Service, which uses this FND_USER_PKG/LOAD_ROW API. I set the following parameter before Invoking the Oracle Application Service: X_USER_NAME, X_ENCRYPTED_USER_PASSWORD and X_START_DATE. When I run the BPEL process I get the following error. I suspect that I am not passing all the required input parameters. Does anyone have any sample data I can use to get this API to load correctly? If I am using the wrong API, please let me know.
    Please note, I have also posted this question to the SOA Suite and BPEL discussion forums...
    Thank you kindly!
    Christine
    - <input>
    - <Invoke_OracleEBS_SecurityUser_InputVariable>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="InputParameters">
    - <InputParameters xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LOAD_ROW/">
    <db:X_USER_NAME>
    CRILEY
    </db:X_USER_NAME>
    <db:X_ENCRYPTED_USER_PASSWORD>
    CRILEY
    </db:X_ENCRYPTED_USER_PASSWORD>
    <db:X_START_DATE>
    2009-01-01
    </db:X_START_DATE>
    </InputParameters>
    </part>
    </Invoke_OracleEBS_SecurityUser_InputVariable>
    </input>
    - <fault>
    - <bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="code">
    <code>
    20001
    </code>
    </part>
    - <part name="summary">
    <summary>
    file:/E:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_SecurityUser.wsdl OracleEBS_SecurityUser_ptt::OracleEBS_SecurityUser(InputParameters) - WSIF JCA Execute of operation 'OracleEBS_SecurityUser' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the APPS.FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-20001: APP-FND-02600: Unable to create user CRILEY due to the following reason(s):
    Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason:
    An unexpected error occurred. Please contact your System Administrator...
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 783
    ORA-06512: at "APPS.FND_USER_PKG", line 916
    ORA-06512: at "APPS.FND_USER_PKG", line 1035
    ORA-06512: at "APPS.FND_USER_PKG", line 645
    ORA-06512: at line 1

    Hello and thank you for your response. I am new to using APIs so please excuse my inexperience... I am not sure how to run the API outside of BPEL... Is that something you could easily walk me through?
    I have made the following changes in BPEL based on your recommendation: 1) Added Oracle Application Service and used the API, LDAP_WRAPPER_CREATE_USER, found in the Oracle Application Module Browser* under: Applications Technology (ATG_PF)&gt; User Management (UMX)&gt; User (FND_USER)&gt; PLSQL&gt; User (FND_USER_PKG)&gt; LDAP_WRAPPER_CREATE_USER
    2) Set the following parameter prior to Invoking the Oracle App Service: X_USER_NAME, X_UNENCRYPTED_PASSWORD,X_START_DATE, X_END_DATE, X_DESCRIPTION, X_EMAIL_ADDRESS, X_FAX, X_EXPIRE_PWD.
    3) Deploy and run BPEL through BPEL Control.
    I get the following {color:#ff0000}error on the Invoke{color}. {color:#339966}Do you see any issues with the values I am passing in the input{color}? Any idea why I am getting this error? Is there anything that I need to have configured for the API to work correctly, other than adding an Oracle Application Service in the BPEL?
    Thank you for your time,
    Christine
    bq. Faulted while invoking operation "OracleEBS_LDAP_Create_User" on provider "OracleEBS_LDAP_Create_User". \\     - &lt;messages&gt; \\     - &lt;input&gt; \\     - &lt;Invoke_OracleEBS_LDAP_Create_User_InputVariable&gt; \\     - &lt;part xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance]" name="InputParameters"&gt; \\     - &lt;{color:#339966}InputParameters{color} xmlns:db="[http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LDAP_WRAPPER_CREATE_USER/]" xmlns="[http://xmlns.oracle.com/pcbpel/adapter/db/APPS/FND_USER_PKG/LDAP_WRAPPER_CREATE_USER/]"&gt; \\     &lt;db:X_USER_NAME&gt; \\     CRILEY \\     &lt;/db:X_USER_NAME&gt; \\     &lt;db:X_UNENCRYPTED_PASSWORD&gt; \\     CRILEY \\     &lt;/db:X_UNENCRYPTED_PASSWORD&gt; \\     &lt;db:X_START_DATE&gt; \\     2009-01-01 \\     &lt;/db:X_START_DATE&gt; \\     &lt;db:X_END_DATE&gt; \\     2010-01-01 \\     &lt;/db:X_END_DATE&gt; \\     &lt;db:X_DESCRIPTION&gt; \\     CRILEY \\     &lt;/db:X_DESCRIPTION&gt; \\     &lt;db:X_EMAIL_ADDRESS&gt; \\[[email protected]|mailto:[email protected]] \\ &lt;/db:X_EMAIL_ADDRESS&gt; \\     &lt;db:X_FAX&gt; \\     999-888-7777 \\     &lt;/db:X_FAX&gt; \\     &lt;db:X_EXPIRE_PWD&gt; \\     0 \\     &lt;/db:X_EXPIRE_PWD&gt; \\     &lt;/InputParameters&gt; \\     &lt;/part&gt; \\     &lt;/Invoke_OracleEBS_LDAP_Create_User_InputVariable&gt; \\     &lt;/input&gt; \\     - &lt;fault&gt; \\     - &lt;bindingFault xmlns="[http://schemas.oracle.com/bpel/extension]"&gt; \\     - &lt;part name="code"&gt; \\     &lt;code&gt; \\     20001 \\     &lt;/code&gt; \\     &lt;/part&gt; \\     - &lt;part name="summary"&gt; \\     &lt;summary&gt; \\     file:/D:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_OracleEBS_OnBoarding_1.0_d71e16636aa9ff51b9975926da6faeb2.tmp/OracleEBS_LDAP_Create_User.wsdl [OracleEBS_LDAP_Create_User_ptt::OracleEBS_LDAP_Create_User(InputParameters) |http://forums.oracle.com/forums/]- WSIF JCA Execute of operation 'OracleEBS_LDAP_Create_User' failed due to: Error while trying to prepare and execute an API. \\     An error occurred while preparing and executing the APPS.FND_USER_PKG.LDAP_WRAPPER_CREATE_USER API. Cause: java.sql.SQLException: ORA-20001: Unabled to call fnd_ldap_wrapper.create_user due to the following reason: \\     ORA-20001: {color:#ff0000}Unabled to call fnd_ldap_wrapper.create_user due to the following reason: \\     An unexpected error occurred. Please contact your System Administrator.. \\     {color}ORA-06512: at "APPS.APP_EXCEPTION", line 72 \\     ORA-06512: at "APPS.FND_USER_PKG", line 3877 \\     ORA-06512: at line 1 \\\\     ;
    Edited by: Christine Riley on Jan 28, 2009 1:22 PM
    Edited by: Christine Riley on Jan 28, 2009 1:26 PM

  • New Login Page/Authentication Method

    Hello Forum users,
    This weekend we have gone live with a new method of authentication in the NI Discussion Forums. This change is setting us up to successfully log users in to both Forums and Community simultaneously in the future. This change should be vitrually invisible to you, but you may notice a new look when you are redirected to log into the Forums. Also, you will notice if you select the Logout button, you will now be logged out of the NI Discussion Forums as well as all of ni.com.
    Note: If you currently log into the Forums with a saved bookmark, your bookmark should still work for now but that will be changing in the future. Please update your bookmark to use the new login link.
    Thanks,
    Jordan

    tst wrote:
    A big additional problem I saw on the PC where I tried the new link both earlier and now - after I log in using the link, going to other pages sometimes logs me out (or at least the page is displayed as if I'm not logged in). This happens when opening pages in a new tab (which I do often), but I also saw it when opening a page in the same tab.
    This is a big deal, because once I'm logged in, I expect to stay that way. I rely on being logged in to function the way I want to.
    This happened to me too when I tried it this morning (using Firefox, Windows 7 64-bit).
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to create new database on Oracle 10g

    Hi All,
    Can any one tell me how to create new database on oracle 10g.
    Thanks in Advance for your help.

    again some confusion here.....
    u said u need a new database in your first post and now you saying u need a new schema..
    one database has many schemas(users)..... ex: scott,sys,system are few of them...
    now it depends you need seperate database for test,dev environment - this is in the case u have many schemas under each database and many tables(objects) under each schema.
    OR
    You just need a separate schema (in same db) for test,dev environment...where in you will have multiple tables in each schema...U need to know the dba credentials of the db to create a new schema.
    ideally u need to have different database...You can create one with out sys/system(oracle users) password as these passwords are db dependent.
    what you need is access to the any machine where server is installed(can be the same mc where you have your dev db or a diff machine) and that will be the machine where your db will be installed (can do it through database configuration assistance),ofcourse you will need windows authentication for this.
    so you login to the same machine or access it from your machine using remote login.
    I hope that is clear.Hope i am not listing things that you already know..Just did it coz of confusion between db and schema
    Message was edited by:
    coolguy

  • New views in oracle 11.2

    Hello,
    I came across this link that lists all the new views that oracle introduced in 11.2 and indeed appear to be available, but many of the views doesn't contain/register any value. Does any one have any info on these views or how can one configure metric collection on these views?
    http://www.dba-oracle.com/t_11_2_new_v_dollar_views.htm
    v$goldengate_capture
    v$goldengate_message_tracking
    v$goldengate_transaction
    I am most interested in the v$goldengate_* views.
    Thanks,
    Arindam
    Edited by: AB007 on Feb 22, 2012 12:26 PM

    You might want to check the docs, perhaps ask Ben Prusinski directly, or check in the GG forum at GoldenGate
    The docs are at http://www.oracle.com/technetwork/middleware/goldengate/documentation/index.html
    The views are not documented in MOS either, so possibly not designated for public consumption yet, no matter what various authors have posted.

  • [SOLVED] Can only login to Arch forum with Firefox

    Hi everyone,
    I'm a new member and thus do not familiar with the rule. Please tell me if I post in the wrong place !
    I have registered a new account on Arch forum. However, I can only login with Firefox.
    When I try to login with other browser (Opera, Chromium, Konquerer), it says:
    Redirecting
    Logged in successfully. Redirecting …
    Click here if you do not want to wait any longer (or if your browser does not automatically forward you)
    And then redirect me to the previous page without changing my login status.
    When I login with Firefox, everything is normal. My login status is changed and I can post this one !
    I have just installed Arch Linux this afternoon and have not changed anything.
    Does the forum have problem?!
    Anyone has the same problem with me?!
    Last edited by BlueLaguna (2012-11-28 21:42:16)

    Your SYSTEM is broken because a browser does not work? And that requires a reinstall?
    There may be a problem during installation. That's what I mean.
    Anyway, I have just installed Arch Linux. Firefox is still the only browser that work.
    Your time would be better spent fixing the problem first. Cache or configuration, pick one or both.
    I'm pretty sure that cache and configuration are not concerned with this problem. I'm a web developer and I know these stuffs.
    Besides, I don't think that we need to config anything with a newly installed browser. If the default settings do not work with normal website, it's a bad browser (in this case, we have three bad browsers: Konqueror, Chromium, Opera... and may be more).
    I'm using KDE and I don't know whether this problem comes from KDE or not. However, I can login to many other forums with Konqueror, Opera and Chromium.
    This forum may not create the session or cookies correctly when I use other browsers.
    Anyway, If no one confirms that he or she has the same problem, let's close this topic here.

  • Cannot create new user in oracle bam

    Hi Guys,
    Can anyone help me in creating new user in oracle bam. I've already follow the steps in bamadmin.pdf but i cannot connect to BAM using the one i've created.
    Please Help.
    Thank you!

    RRA wrote:
    Hello,
    How can I create a new user directly in database instead of creating from System Administrator menu in Oracle Applications R12 ?
    Also, is it possible to apply some default responsibilities when a creation of new user account take place via database ?
    Thanks.This topic was discussed many times in the forum before, please see old threads for the same topic/discussion along with the code you can use.
    Create Application User from the Backend
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Application+AND+User+AND+Backend&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Create+AND+Users+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Assign Responsibilities API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Assign+AND+Responsibilities+AND+API&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG API
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.CreateUser
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.CreateUser+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_USER_PKG.AddResp
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.addresp&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Auto-Login into these forums here possible ? Enabling by cookie ?

    I would appreciate if there is an auto-login into these forums from Oracle.
    Currently every time I re-visit the forum pages I have to type in my login+passwd again.
    Usually in hundreds of other forums there is an auto-login option selectable.
    Could enable this forum feature?

    You can post enhancement suggestions in the feedback forum
    Community Feedback (No Product Questions)

  • Auto-Login into these forums here possible ? eMail of forum admin ?

    I would appreciate if there is an auto-login into these forums from Oracle.
    Currently every time I re-visit the forum pages I have to type in my login+passwd again.
    Usually in hundreds of other forums there is an auto-login option selectable.
    Does someone know the eMail adress of the forum admin. I would like to suggest this directly to him

    You can post enhancement suggestions in the feedback forum
    Community Feedback (No Product Questions)

  • Create new login

    Hi Guys, hope someone can help.
    I am trying to create an ODI operator user that can only view Sessions in Operator and cannot make any changes or stop/start.
    In Security Manager I have created a user and added the Profiles "CONNECT" and "NG REPOSITORY EXPLORER" which I believe is enough to be just able to browse and monitor sessions.
    I have then tried to create a new Login for this user by clicking the "New" icon on the Oracle Data Integrator login dialog.
    This opens up a Work Repository Connection dialog. Login name I presume is a name I input for the new connection followed by the user and password I created above in Security Manager.
    The Database Connection user and password I have used is the database user that was created when ODI was installed and is the password used on other connections we have. Tthe other fields are Oracle JDBC driver, the driver name auto fills and the URL is entered correctly as when I click Test to test the connection I get a successful connection - OK.
    When I click OK to create the new login I get an error
    java.ioFileNotFoundException: .\snps_login_work.xml (Access is denied)
    I have tried changing the permissions on the file and directory ($ODI_HOME/bin) to 777 but I get the same error when I try and create a new login.
    It is driving me nuts; does anyone have a suggestion?
    Thanks.

    ODI version is 10.1.3.6.2
    I have been trying today to find an equivalent to filemon for HP-UX but have not found one yet.
    I have tried to set the various directories in the directory path $ODI_HOME/bin all to 777 and this does not allow me to greate a new login.
    I have tried to create a login using SUPERVISOR/SUNOPSIS and I get the same error.
    One possible (clutching at straws here) issue is the directory 3 directories up from $ODI_HOME/bin is owned by the database user and not the odi user (single node dev installation). Is this the problem?
    thanks
    Edited by: lfcartesian on Jul 7, 2011 4:32 PM

  • New Login Page

    Hi,
    I have created a new login page so that when the users enter they are presented with all the available application they have access to. When they click on an application Say the timesheet i am storing there user name in an item on the timesheet page. If there are multiple users the system can not keep track of what user it has and displays someone elses user name to the user.
    Any Ideas?
    Thanks
    Kevin

    Kevin - If your application requires authentication and you don't use the built-in authentication and session management mechanisms provided by wizard-created authentication schemes (and their associated login pages), then you'll have to debug your own code as we have no idea what the design and implementation details are. However, if you are having trouble with some of the built-in mechanisms, please provide more details, preferably an example on htmldb.oracle.com.
    Scott

  • What's going on: jim.marion double login in the Forum

    Folks and jim.marion,
    Hello. It's July 31, 2013 today. It's Wednesday today.
    About half an hour ago, I replied to jim.marion in my thread https://forums.oracle.com/thread/2561843 whose title is "Install PeopleTools 8.53 with Linux Issue: Client Windows and Server Linux".
    I have been login in the Forum but when replied to jim.marion, a message box came up after his name: you are no longer login, please "login".
    I click the "login" button and enter my account name and password in a rush to reply to jim.marion. I think this login is not neccessary ! I assume jim.marion has stealed my account name and password !
    My questions are:
    First, please ask jim.marion to explain what's going on ? !
    Second, if jim.marion got my account name and password, please don't abuse my account name and password !
    Third, how to change account password ?  Does any folk confront the same issue ?
    Thanks.

    I have been trying to think of something witty to say on my behalf, but figured I better stop thinking and just reply to say, no, I haven't been logged in as you. At this time I have no desire to change my persona, but maybe you can change that by telling me a little about yourself? Do you have a yacht? How many homes do you own? Vacation condos? I could probably be persuaded to change me to be someone else... I'd have to think about it though.
    Now, what is it that makes you think jim.marion stole your credentials? Did you see posts you didn't write? Are you basing your accusation strictly on the fact that you were logged out when trying to reply to jim.marion? I read your post a couple of times, and that is all it says: you tried to reply to jim.marion and the forum told you that you were logged out. I'm not sure that is enough to convict jim.marion. Perhaps you were trying to log in as jim.marion? Perhaps I should be accusing you? Just kidding, of course. Honestly, I don't mind if you answer a few questions on the forum as me because I will get the points.
    I'm pretty sure that your OTN forum account is tied to all other oracle.com accounts, including MyO support, OTN, OpenWorld, etc, so change your password at any of these locations and it should propagate.
    Do you have any more details? Not that I can fix any of it. I am just curious as to why you think someone has your credentials.

Maybe you are looking for