ORA-20001: INVALID USER: ACCESS DENIED!! - TIVOLI

version 10.2.0.2
SQL> connect tivoli
Enter password:
ERROR:
ORA-00604: error occurred at recursive SQL level 1
ORA-20001: INVALID USER: ACCESS DENIED!! - TIVOLI
ORA-06512: at line 77
Edited by: DBA2008 on Feb 12, 2010 11:59 AM

DBA2008 wrote:
i disable the trigger messing up tivoli user,& i am able to login fine, wondering if i enable it back it will do the same?If you keep doing the same thing, you can expect the same results.
Perhaps you should analyze the trigger to figure out
1) what it was supposed to be doing that is not being done since you disabled it
2) why it was throwing the error . . .

Similar Messages

  • FND_USER_PKG.CreateUser - ORA-20001: Custom user name validation

    Hi,
    I created a user IDM in Oracle ERP instance (R12.1.2). I gave execute privilege on FND_USER_PKG to IDM.
    I also created synonym IDM.FND_USER_PKG for APPS.FND_USER_PKG;
    I logged in to SQLPLUS as IDM and executed the below and got an error - ORA-20001: Custom user name validation in subscription to event oracle.fnd.user.name.validate failed. Could anyone of you help me?
    The statement works fine when I run as APPS.
    SQL>begin
    2 FND_USER_PKG.CreateUser (
    3 x_user_name => 'TEST899',
    4 x_owner => NULL,
    5 x_unencrypted_password => 'oracle',
    6 x_session_number => userenv('sessionid'),
    7 x_start_date => sysdate );
    8
    9 end;
    10 /
    begin
    ERROR at line 1:
    ORA-20001: Custom user name validation in subscription to event
    oracle.fnd.user.name.vali
    date failed.
    ORA-06512: at "APPS.APP_EXCEPTION", line 72
    ORA-06512: at "APPS.FND_USER_PKG", line 3663
    ORA-06512: at "APPS.FND_USER_PKG", line 955
    ORA-06512: at "APPS.FND_USER_PKG", line 1173
    ORA-06512: at "APPS.FND_USER_PKG", line 1292
    ORA-06512: at line 2
    Thanks
    Cherrish Vaidiyan

    Can you reproduce the issue when you create the same user from the application?
    ORA-20001: Custom user name validation in subscription to event oracle.fnd.user.name.validate failedDo you have any customization that could be related to user creation validation?
    Can you reproduce the issue if you use the code in https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_USER_PKG.CreateUser&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Hi Trying to download CS5 Design Premium. We have a copy on the Mac and want to put a second copy on the Macbook pro. Can download the file but when it is clicked the file give an error message "User access denied" and dumps the download. So hence I do no

    Hi Trying to download CS5 Design Premium. We have a copy on the Mac and want to put a second copy on the Macbook pro. Can download the file but when it is clicked the file give an error message "User access denied" and dumps the download. So hence I do not get an installation screen or a chance to enter the Licence no.

    Use another browser.
    Mylenium

  • ORA-20001: Invalid parsing schema for current workspace ID

    I recently upgraded Apex version from 4.0 to 4.2 successfully. Everything looks good except in one of the applications, I am running into
    ORA-20001: Invalid parsing schema for current workspace ID ( see below for detailed debug info). It seems this page region code is still looking at
    old apex scehma APEX_040000 instead of APEX_040200 somehow. Any ideas.
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -20001
    ora_sqlerrm: ORA-20001: Invalid parsing schema for current workspace ID
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21560330709310725
    component.name: Calendar
    error_backtrace:
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 377
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 386
    ORA-06512: at "APEX_040000.WWV_RENDER_CALENDAR2", line 462
    ORA-06512: at line 27
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1926
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1064
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK

    Thanks Patrick. Just wanted to make you're referring to the below code. what package I would be using instead of 'wwv_render_calendar2.show'
    wwv_render_calendar2.show (
    p_query => q,
    p_max_rows => '5',
    p_heading_bgcolor => '#CCCC99',
    p_table_bgcolor => 'WHITE',
    p_monday_friday_only => 'NO',
    p_non_curr_month_attr => 'bgcolor="#F7F7E7"',
    p_month_font_face => 'Arial',
    p_month_font_size => '+1',
    p_month_font_color => 'BLUE',
    p_day_font_face => 'Arial',
    p_day_font_size => '+1',
    p_day_font_color => 'BLACK',
    p_cell_font_face => 'Arial',
    p_cell_font_size => '-2',
    p_cell_font_color => 'BLACK',
    p_page_width => '95%',
    p_show_month_above_tab => 'YES',
    p_min_blank_cell_height => '45',
    p_calendar_day_date_fmt => 'MM/DD/YYYY',
    p_cur_local_date => '');
    end;

  • "ORA-20001: Invalid action CREATE on this object. (U)"

    I have a page where data are inserted in my procedure.
    <br>This procedure assign "PXX_ID" which is a key from that table.
    After that I use "Automatic Row Processing (DML)" with check only on UPDATE", to fill other fields that are not filled in my INSERT procedure. This process is defined with "PXX_ID" which is reassigned (not as it was when page was submitted - before my insert).
    <br>SAVE process, which is only calling this DML is working perfectly. My procedure is inserting new record also. But together they are not working. What I want is to use this process for changing data (SAVE button) and for INSERT part also.
    <br>Now I get this error "ORA-20001: Invalid action CREATE on this object. (U)"...any help on this?
    <br>If problem is that I'm reassigning value of "PXX_ID" then please let me give some hint how to make this if possible using DML processes...
    <br>If the solution is to put all fields in INSERT part and use this DML only for changes, let me know. All I need is some hints to understand more this error!
    <br>P.S.
    <br>I have tried to recreate new process ... but no help.
    <br>P.S. II
    <br>I cannot sent app on WORKSPACE (too much work to do)...but I can send page export.
    <br>THX!

    This is caused because you have only checked the UPDATE option in the Automatic Row Processing(DML). By unselected the other options you are basically saying they aren't allowed. In order to get around this you need to put a conditional clause on the process. I would use something like if rowid = null then use my insert process. If rowid is not null then use the Automatic Row Processing(DML).

  • Error starting wfsvcstart.bat in workflow 2.6.4 (ORA-01017: invalid user..)

    Hi Friends,
    I am getting error while starting this service in workflow 2.6.4 on Oracle 10g Database
    C:\Ora10gDB\wf\admin>wfsvcstart.bat
    C:\Ora10gDB\wf\admin>C:\Ora10gDB\jdk\bin\java -Djava.security.properties=C:\Ora10gDB\oc4j\j2ee\home\config\jazn.security.props -jar C:\Ora10gDB\oc4j\j2ee\home\oc4j.jar -userThreads -config C:\Ora10gDB\oc4j\j2ee\OC4J_Workflow_Component_Container\config\server.xml
    10/03/16 22:11:31 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.out until necessary parameters are retrieved for Logger to be properly started.
    10/03/16 22:11:31 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.initializeStateMachine() : BEGIN [default implementation]
    10/03/16 22:11:31 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.getNewWorkflowContext() : BEGIN
    10/03/16 22:11:35 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.loadGlobalParameters() : BEGIN
    10/03/16 22:11:38 oracle.apps.fnd.wf.common.ContextFactoryException: Unable to get connection from data source because the following Exception occurred -> java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    10/03/16 22:11:38 at oracle.apps.fnd.wf.db.WorkflowContext.getNewConnection(WorkflowContext.java:332)
    10/03/16 22:11:38 at oracle.apps.fnd.wf.db.WorkflowContext.getJDBCConnection(WorkflowContext.java:143)
    10/03/16 22:11:38 at oracle.apps.fnd.wf.common.WorkflowContext.getJDBCConnection(WorkflowContext.java:187)
    10/03/16 22:11:38 at oracle.apps.fnd.cp.gsc.SvcComponentContainer.loadGlobalParameters(SvcComponentContainer.java:579)
    10/03/16 22:11:38 at oracle.apps.fnd.cp.gsc.SvcComponentContainer.start(SvcComponentContainer.java:739)
    10/03/16 22:11:38 at oracle.apps.fnd.cp.gsc.ServletSvcComponentContainer.init(ServletSvcComponentContainer.java:78)
    10/03/16 22:11:38 at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2130)
    10/03/16 22:11:38 at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4560)
    10/03/16 22:11:38 at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4654)
    10/03/16 22:11:38 at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:801)
    10/03/16 22:11:38 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:533)
    10/03/16 22:11:38 at com.evermind.server.Application.getHttpApplication(Application.java:886)
    10/03/16 22:11:38 at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:688)
    10/03/16 22:11:38 at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:570)
    10/03/16 22:11:38 at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:263)
    10/03/16 22:11:38 at com.evermind.server.http.HttpServer.setSites(HttpServer.java:259)
    10/03/16 22:11:38 at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:160)
    10/03/16 22:11:38 at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2330)
    10/03/16 22:11:38 at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1503)
    10/03/16 22:11:38 at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:93)
    10/03/16 22:11:38 at java.lang.Thread.run(Thread.java:534)
    10/03/16 22:11:38 OrionCMTConnection not closed, check your code!
    10/03/16 22:11:38 Logical connection not closed, check your code!
    10/03/16 22:11:38 (Use -Djdbc.connection.debug=true to find out where the leaked connection was created)
    10/03/16 22:11:38 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.out until necessary parameters are retrieved for Logger to be properly started.
    10/03/16 22:11:38 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.initializeStateMachine() : BEGIN [default implementation]
    10/03/16 22:11:38 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.getNewWorkflowContext() : BEGIN
    10/03/16 22:11:42 LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.loadGlobalParameters() : BEGIN
    10/03/16 22:11:45 oracle.apps.fnd.wf.common.ContextFactoryException: Unable to get connection from data source because the following Exception occurred -> java.sql.SQLException: ORA-28000: the account is locked
    10/03/16 22:11:45 at oracle.apps.fnd.wf.db.WorkflowContext.getNewConnection(WorkflowContext.java:332)
    10/03/16 22:11:45 at oracle.apps.fnd.wf.db.WorkflowContext.getJDBCConnection(WorkflowContext.java:143)
    10/03/16 22:11:45 at oracle.apps.fnd.wf.common.WorkflowContext.getJDBCConnection(WorkflowContext.java:187)
    10/03/16 22:11:45 at oracle.apps.fnd.cp.gsc.SvcComponentContainer.loadGlobalParameters(SvcComponentContainer.java:579)
    10/03/16 22:11:45 at oracle.apps.fnd.cp.gsc.SvcComponentContainer.start(SvcComponentContainer.java:739)
    10/03/16 22:11:45 at oracle.apps.fnd.cp.gsc.ServletSvcComponentContainer.init(ServletSvcComponentContainer.java:78)
    10/03/16 22:11:45 at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2130)
    10/03/16 22:11:45 at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4560)
    10/03/16 22:11:45 at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4654)
    10/03/16 22:11:45 at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:801)
    10/03/16 22:11:45 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:533)
    10/03/16 22:11:45 at com.evermind.server.Application.getHttpApplication(Application.java:886)
    10/03/16 22:11:45 at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:688)
    10/03/16 22:11:45 at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:570)
    10/03/16 22:11:45 at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:263)
    OrionCMTConnection not closed, check your code!
    10/03/16 22:11:45 Logical connection not closed, check your code!
    10/03/16 22:11:45 (Use -Djdbc.connection.debug=true to find out where the leaked connection was created)
    10/03/16 22:11:45 at com.evermind.server.http.HttpServer.setSites(HttpServer.java:259)
    10/03/16 22:11:45 at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:160)
    10/03/16 22:11:45 at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2330)
    10/03/16 22:11:45 at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1503)
    10/03/16 22:11:45 at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:93)
    10/03/16 22:11:45 at java.lang.Thread.run(Thread.java:534)
    10/03/16 22:11:45 Oracle Application Server Containers for J2EE 10g (9.0.4.1.0) initialized
    Regards,
    DB

    ORA-01017: invalid username/password; logon deniedprovide valid schema_name & password

  • /Users Access denied

    Hi all
    I have been trying to do some work in the catalog manager.
    I login as Administrator in online mode ...
    I can get to the shared folder, system folder.
    When I go to users I can access /users/Administrator
    However, I cannot seem to access the other users folders
    I get
    Access Denied for user to path /users/username
    Any idea how to fix this?
    I have tried looking at the permissions and such but i thought the administrator would have access to all users folders in the catalog manager
    Thanks in advance

    hi,
    Will this help you http://obiee-blog.info/administration-tool/error-access-denied-for-user-to-path/
    http://www.rittmanmead.com/2010/01/obiee-10g-web-catalog-best-practices/
    http://www.biblogs.com/2010/01/18/obiee-10g-web-catalog-%E2%80%9Cbest-practices%E2%80%9D/
    Cheers,
    kk

  • End user - Access denied by application security check

    Hello all,
    Being a new Apex developer, I'm really hoping someone can point out the magic solution to this problem. I have just created my first Apex application and have only 3 end users who will be using it. I create their username and passwords as the admin and everything is fine, until they try to log on. That's when I get the Access denied... error. However, if I switch them from an end user to a developer, they are magically able to log in and access the application (as a developer obviously). I should mention they are internal users and have internal account credentials, so it shouldn't be this difficult.
    This is particularly maddening because I have tried every combination of authorization and authentication I can think of. I am at the point where there is no authorization scheme and it still won't let them in.
    Searching through the forums, I've come across threads that mention this error when an Admin tries to log on, but not an end user.
    If anyone has ANY ideas, it would be most appreciated.
    Thanks,
    Ben

    Hi,
    What URL have you given to the users to gain access to the application. Are they trying to access it via the developer login?
    What version of APEX/oracle are you using.
    APEX using embedded PL/SQL gateway should look something like this
    http://hostname:port/apex/f?p=101 where 101 is the application id
    APEX using Apache
    The URL should look something like this
    http://hostname:port/pls/apex/f?p=101 where 101 is the application id
    Regards
    Paul

  • ORA-20001: Invalid action DELETE on this object. (U)

    What does this mean? When I hit the DELETE button, the row I want deleted from two different tables is being deleted like it's supposed to -- but I get this error message.
    I have:
    DELETE button: SQL delete action
    Process row from TABLE1: Allowed operations: update, delete
    Process row from TABLE2: Allowed operations: delete When button pressed: DELETE
    Do I have extranneous information?

    These are not "error messages", its more of an optional confirmation message that an event occurred from a specific process. Check out the Process Messaging section in automatic row process or the process that you created to handle the delete. You can customize the message when the delete is unsuccessful and a success message when it commits. Or you can leave them blank. It looks like you could have combined the delete statements in one process rather than have them separate.

  • ORA-20001: get_dbms_sql_cursor

    I am getting this error in an interactive report, the same query returns result in the sql workshop but not in the report. The query uses a dblink to access data in another database.
    The error I get is ORA-20001: get_dbms_sql_cursor error ORA-01747: invalid user.table.column, table.column, or column specification. I tried searching in this forum, but of no use.
    My Application Express 4.0.0.00.46 is running on oracle XE on windows XP machine. Can somebody help me understand this issue.

    Hi,
    SQLWorkshop uses the ANONYMOUS user to access the DB. When using application the Default Parsing schema credentials are used to access the DB/DBlinks.
    Most probably your Application Workspace Default Schema does not have access to the DB Link.
    Does the query run in a Classic report? Or from SQLPlus when you are connected as the Dfault Schema Owner of the Workspace where your application resides?
    Regards,

  • SAP PI problem: User credentials are invalid or user is denied access

    Hi!
    I am about to configure SAP PI.
    Therefore I have run post installation wizard step PI_00 and get the following errors:
    Error: Not able to load Function SWF_XI_BPM_AUTO_CUSTOMIZE
    (cause:Name or password is incorrect (repeat logon)).
    Step: Execute SWF_XI_BPM_AUTO_CUSTOMIZE
    Error: User credentials are invalid or user is denied access
    Step: Add Installed Product2
    Questions:
    How can I identify which user/password makes problems here?
    P.S.
    My further problems are:
    2) It is not possible to work with XI tools, such as:
    Integration Directory, Integration Repository, Runtime Workbench
    When I try to execute some action in these tools I get the following error:
    Cannot connect to Repository
    Error during communication with System Landscape Directory: User credentials are invalid or user is denied access.
    2) When I try to access the NetWeaver configuration wizard (http://localhost:50000/nwa)
    I get the followign warnig:
    System Landscape Directory is not available
    Only local systems can be maintened
    Thank you very much
    Thom

    Hi,
    Check the similar discussion  Error in PI postinstallation wizard
    Wrong password PISUPER in PI_00 wizard
    Thanks!
    Edited by: Sudhir Tiwari on Nov 26, 2008 10:29 AM

  • ORA-01017: invalid username/password; logon denied FOR SYS USER

    Hello,
    I was usually login through the same password for sys user to log on to the database as sysdba, but last time i used " / as sysdba" to connect using local system administrative account which is connected very well and still connecting in the same way. The initializing parameter file set with the following parameter:
    remote_login_passwordfile=EXCLUSIVE
    Now if i use to connect the database server remotely using sys user, it gives me "ORA-01017: invalid username/password; logon denied" error and if i use the same login credentials on DB server machine using other local user accounts it is giving me "Insufficient Privilige" error. I can only connect now using local administrator account from DB server machine using " / as sysdba" statement.
    Kindly guide me the issue.

    When you use " / as sysdba" locally on server, you are using OS authentication which will bypass the password file and user/pass authentication.
    Looks like you have discrepancy between the password you use and real password. You can login " / as sysdba" and change your SYS password to a new one.
    When was last time you successfully login using password? What has changed since then?

  • ORA-22: invalid session id;access denied

    Hi,
    I am getting the error: ORA-22: invalid session id;access denied when i switch responsability in fron end;
    How to solve this anyone have any idea...
    Thanks,
    kr

    What is the application release?
    Was this working before? If yes, what changes have you done recently?
    Try to regenerate the forms and relink the application executable files via adadmin, bounce the application services, and check then.
    [Note: 150860.1 - ORA-1001 and ORA-22 Navigating in Forms or Switching Responsibility|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=150860.1]

  • ActiveSync 401 Access Denied, invalid user/password?

    Hi everyone,
    Just getting started on trying out Exchange Activesync and I'm having a few problems.
    First, a little background:
    Windows 2000 Server
    Exchange 2003 with SP2
    Global Settings , Mobile Service Properties:
    * User Initiated synchronization
    * up to date notifications via smtp and text messaging
    * notifications to user specified smtp address
    * direct push over https
    * outlook mobile access
    * unsupported devices
    * all enabled *
    All Exchange Features tab options enabled in 'nick' user account mobile services
    Outlook Web Access works properly for everyone with a proper root CA SSL cert (thawte).
    Treo 650 Sprint with Palm EAS upgrade and VersaMail 3.5.
    Versamail set to Exchange ActiveSync, pointing to the external Exchange host, SSL checked.
    I go to sync messages and it begins "receiving" a few times before erroring out telling me that my username/password isnt correct (which it is.. unless it's a formatting issue).
    VersaMail responds with: There was a problem with syncing. The server did not recognize your username and/or password. Please check and try again.
    Details include: AirSAMStateMachine.c 2214 5 HTTP/1.1 401 Access Denied Server: Microsoft-IIS/5.0 Date: Thu, 22 Mar 2007 21:44:16 GMT WWW-Authenticate:
    It obviously does not appear to be an SSL problem (which is just about all I can find information online over), but rather an authentication issue.. but I know definitively that the username and password are correct.
    I have tried entering the Username as follows based on random posts ive come across:
    nick
    domain\nick
    domain/nick
    /domain/nick
    DOMAIN/nick
    all of which fail with the same error.. I turn around and login to the OWA over SSL with a username of domain\nick and the same password, and it works fine.
    Anyone have any idea what I'm missing here?
    Post relates to: Treo 650 (Sprint)

    I'm also having this exact issue, did you find a resolution? Thanks in advance

  • Deployment error: ORA-01017: invalid username/password; logon denied

    Hi,
    I created a new target schema against an existing runtime owner user id and runtime access user id.
    But deploying the mapping now gives error as follows:
    <<ORA-01017: invalid username/password; logon denied>>
    Can you please guide where the problem is?
    Thanks & Regards,
    Lenin

    Hi,
    Just to add some more informations about this topic. I created one extra target schema for the same runtime user id/runtime access user. And then tried to deploy the mapping and got the above error. And again, I removed the older target schema by using "OWB Runtime Assistant". And then tried to deploy mapping again and got the same error again.
    Can you please help me out in this case?
    Thanks & Regards,
    Lenin

Maybe you are looking for