APEX Login Error

Hello together,
after I installed a new workspace to my local apex installation with the oracle 10g express database i become the following error when i try to login into my apllications in the "old" workspace.
The login into a application of the new workspace works!
ORA-00942: table or view does not exist
     Error      ERR-1082 Error in executing authorization scheme code.
Have a lot of thanks!
Bye
Sven

Hi,
What kind of credentials were you using for your applications? database ones?
your applications are they still in the first workspace or did you move them in the new one?
Max

Similar Messages

  • Plz Plz HELP in my last Thread (APEX LOGIN  Error)

    Plzzzzzzzzzzzzzzzzzz i need a help in my last written Thread (APEX LOGIN Error)
    i have installed the APEX For 5 times and i couldnt Run it till now
    the last time was completed succesfully ... and i arrived in the POST INSTALLATION TASKS to Creating the MARVEL.CONF and editing THE HTTPD.CONF ....
    and i sent both files contents in my thread (APEX LOGIN Error) ... and hope anybody can read them and tell me what mistakes r there ...
    OMD

    Why not continue your other discussion ?
    Re: Cant Login To APEX
    Nicolas.

  • Prevent Access to APEX Login

    I have installed 3.0.1 on XE using port 8095 and need to allow access to two applications via the Internet using two different domain names. I have set iptables to only allow outside access to port 80 on IP 123.123.123.123. I am using Apache to direct requests to the correct application. Here is the code that I am using:
    <VirtualHost *:80>
    ServerName domain.com
    ServerAdmin [email protected]
    RewriteEngine on
    RewriteRule ^/$ http://domain.com/apex/ [R]
    RewriteRule ^/apex/$ http://123.123.123.123:8095/apex/f?p=100:1 [P]
    RewriteRule ^/apex/(.*)$ http://123.123.123.123:8095/apex/$1 [P]
    ProxyPass / http:///123.123.123.123:8095/
    ProxyPassReverse / http:///123.123.123.123:8095/
    <Location />
    Order allow,deny
    Allow from all
    </Location>
    </VirtualHost>
    Outsiders cannot directly access 123.123.123.123:8095 and http://domain.com is directed to 123.123.123.123:8095/apex/f?p=100:1. Users will see http://domain.com/apex/f?p100:1:andalotmorehere as they browse. However, I realized that I could get to the APEX login with http://domain.com:80/apex or http://domain.com/apex/f?p=4550:1. Is there any way to prevent access to the APEX login to people outside of our local network? I would appreciate any help.
    Thank you,
    Minh

    How exactly the APEX engine forces a '404' to be returned, I am not entirely sure. Perhaps it sends back the Response with the Header Status set to 404 ?Yes, with this process on the login page.
    begin
      if not #OWNER#.wwv_flow_security.ip_check then
          #OWNER#.wwv_flow.g_unrecoverable_error := true;
          sys.owa_util.status_line(404, 'Page Not Found');
          sys.owa_util.http_header_close;
      end if;
    end;Scott

  • Limit access to Apex login page

    Hi,
    We are deploying an application to our users. I need to limit access to Apex login page f?p=4550 to some predefined Ip adresses. Any ideas on this?
    Best regards,
    Onur.

    How exactly the APEX engine forces a '404' to be returned, I am not entirely sure. Perhaps it sends back the Response with the Header Status set to 404 ?Yes, with this process on the login page.
    begin
      if not #OWNER#.wwv_flow_security.ip_check then
          #OWNER#.wwv_flow.g_unrecoverable_error := true;
          sys.owa_util.status_line(404, 'Page Not Found');
          sys.owa_util.http_header_close;
      end if;
    end;Scott

  • Why does a Login Error occur: "AFP Client wants to use Keychain Login"?

    I have three people in my house with separate logins. We are currently using two desktop G4s which are networked via 1000 Base T. When the users login to one of the Macs, they must enter their passwords twice. Once for the AppleShare login and then a second time for the KeyChain Login.
    If I attempt to unify the passwords, which are exactly the same, I will get a login error: "AFP Client wants to use Keychain Login". At this point, a dialogue box will appear looking for a password, but not accepting any kind of text at all. All I can do is reset the Mac, go into my admin login and remove the login.keychain file from the local Library folder to get back into the User account.
    In my attempts to fix this, I have removed every preference file with the word "login" in it and re-logged in without success. I have also used the Keychain Access software to administer Keychain First Aid without success. Finally, I have deleted the keychain login in Keychain Access without success. I have done all of these separately and together without success.
    This is only happening on one Mac. The Mac that has no files on it. All working files are stored on the other Mac and it does not have the same problem at all.
    This is not a huge problem, but it is annoying. I would appreciate it if anybody knows anything about this and could shine some light on the situation.

    Sorry about the delay from your last reply. I have been busy with work and studying for a licensing exam.
    Anyway I tried the AppleJack Utility you suggested. It looked like it tidied up some things. But as for my particular issue, it did absolutely nothing.
    Interestingly enough, you know when you aren't looking for something and that something just happens by accident? When I logged in the other day, I typed in the first login. The second dialogue came up immediately and I hit the cancel button instead of the OK button. When I was passed on to the Finder, the second login dialogue came up again. I typed in the password this time and checked the checkbox. When I relogged in, the problem vanished. I only waited this long to let you know to make sure the problem is gone and it is. I wish I would have thought of selecting the cancel button before. Sometimes solutions are simple like this one.
    Thanks for your help.

  • How can I add a UserGroup input in an APEX Login Page

    Hi,
    I am willing to add a UserGroup input (dropdown) in APEX Login page, but I see the default Login page supports only two parameter, i.e. Username and PWD. I see the authentication function wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    takes only username and pwd. But I need to add one more field, how can I accomplish this ?

    Hi,
    I have similar structure of the accounting like you.
    I have table users, roles, ...
    Then i use script like this:
    select nvl(1, null)
    from APEX_USER u,
    APEX_USER_ROLE r
    where u.active = 'Y'
    and r.USER_ID = U.ID
    and u.user_name = v('APP_USER')
    and r.appl_id = v('APP_ID')
    and r.is_edit = 'Y'
    and ((instr(group_name, ',NB_EOS,') > 0 and :P2_STATUS not in ('2','0'))
    or instr(group_name, ',NB_ADV_NT_ADM,') > 0 and :P2_STATUS not in ('2','5', '0')
    or instr(group_name, ',NB_CALL_ADMIN,') > 0 and :P2_STATUS not in ('2','5', '0'))
    There i have set the row for each application and user with my defined roles.
    Regards
    J :D

  • 5213: Bad Oracle login error in OCISessionBegin() while running ttcacheuidp

    Hi,
    I am working on Oracle TimesTen Client: Oracle TimesTen 11.2.1.8.0
    I am following this step: http://download.oracle.com/otn_hosted_doc/timesten/1121/quickstart/html/admin/cache_grid_create.html
    I am in the step 4: 4. Associate the Oracle Cache Administration user with the Cache Database
    And I got this error:
    Command> connect "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=oracle";
    Connection successful: DSN=cachedsh_schema;UID=cacheadm;DataStore=/u03/TimesTenCache/datastore/cachedsh_schema;DatabaseCharacterSet=AL32UTF8;ConnectionCharacterSet=US7ASCII;DRIVER=/u01/app/oracle/product/TimesTen/ttscofield/TimesTen/ttscofield/lib/libtten.so;PermSize=768;TempSize=256;TypeMode=0;OracleNetServiceName=SCOFIELD;
    (Default setting AutoCommit=1)
    Command> call ttcacheuidpwdset ('cacheadm','cacheadm');
    5213: Bad Oracle login error in OCISessionBegin(): ORA-01017: invalid username/password; logon denied rc = -1
    5935: Could not validate Oracle login: uid = CACHEADM, pwd = HIDDEN, OracleNetServiceName = SCOFIELD, TNS_ADMIN = "", ORACLE_HOME= "/u01/app/oracle/product/11.2/db_1"
    The command failed.
    What seems to be the issue?
    I referenced this link: http://download.oracle.com/otn_hosted_doc/timesten/1121/doc/timesten.1121/e13069/proced.htm#TTREF237
    And on the notes it says:
    Notes
    This procedure cannot be called from a Client/Server connection.
    This procedure is available only for IMDB Cache.
    The cache administration user ID and password cannot be set while either the cache agent or the replication agent are running.
    The cache administration user ID cannot be reset while there are ASYNCHRONOUS WRITETHROUGH cache groups or AUTOREFRESH cache groups (with a state that is not equal to OFF) on the database.
    What does: This procedure cannot be called from a Client/Server connection mean?
    Is this the root cause of the problem or I am missing a step?
    Thanks!

    I still get the same error. But I have figured out what is wrong. Just in case other users encounter the same errors, here's what I did:
    I created a tnsnames.ora file in my TIMESTEN_HOME/network/admin that has the connection info to testenv Oracle instance. +(i dont know if this is necessary)+. Then:
    [oracle@testenv ~]$ ttmodinstall -tns_admin option
    TNS_ADMIN for the instance 'testenv' is currently not set.
    Would you like to change TNS_ADMIN for this instance? [ yes ]
    Please enter a value for TNS_ADMIN (q=quit)? [ option ] /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/network/admin
    Do you want to restart the daemon using the new configuration? [ yes ]
    Restarting the daemon ...
    TimesTen Daemon stopped.
    TimesTen Daemon startup OK.
    Instance testenv is now configured with TNS_ADMIN=/u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/network/admin
    [oracle@testenv ~]$ ttversion
    TimesTen Release 11.2.1.8.0 (64 bit Linux/x86_64) (testenv:53388) 2011-02-02T02:20:46Z
    Instance admin: oracle
    Instance home directory: /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv
    Group owner: oinstall
    Daemon home directory: /u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/info
    PL/SQL enabled.
    [oracle@testenv ~]$ ttisql "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=cacheadm"
    Copyright (c) 1996-2011, Oracle. All rights reserved.
    Type ? or "help" for help, type "exit" to quit ttIsql.
    connect "dsn=cachedsh_schema;uid=cacheadm;pwd=cacheadm;oraclepwd=cacheadm";
    Connection successful: DSN=cachedsh_schema;UID=cacheadm;DataStore=/u03/TimesTenCache/datastore/cachedsh_schema;DatabaseCharacterSet=AL32UTF8;ConnectionCharacterSet=US7ASCII;DRIVER=/u01/app/oracle/product/TimesTen/testenv/TimesTen/testenv/lib/libtten.so;PermSize=768;TempSize=256;TypeMode=0;OracleNetServiceName=SCOFIELD;
    (Default setting AutoCommit=1)
    Command> call ttgridcreate ('cachedshgrid');
    Command> call ttgridinfo;
    < CACHEDSHGRID, CACHEADM, Linux x86-64, 64-bit, 11, 2, 1 >
    1 row found.
    Command> call ttgridnameset ('cachedshgrid');
    Command>
    Thanks!

  • Oracle Enterprise Manager 11g - 'unexpected login error'

    Hi,
    I am having trouble logging into Oracle Enterprise Manager - Fusion Middleware Control. at the login screen when i enter in the UN and PWD, I get the msg: 'unexpected login error'. I was able to login before, this just happend and now I cannot login. Any help would be appreciated.
    Thanks.

    You may have greater chances to get an answer....there:
    Enterprise Manager
    Greetings...
    Sim

  • I can't login from the desktop app - "Login error. Please contact the Admin."

    1) Does anyone have the same problem as described below?
    2) Does anyone know how to fix it?
    When I try to "work online" from the desktop app, I get asked to log out of offline, then log into online. When I put in my username and password, it gives me the error "Login error. Please contact the Admin." I've clicked the link "Trouble logging in?" and followed instructions to reset my password, which I successfully reset to a new one. I still get the error.
    I have a subscription to Adobe Story Plus and am working offline/online using the desktop app. I haven't logged in to sync my documents in about a month. My account is in good standing (paid 2 weeks ago according to my account transactions screen).  I'm now trying to collaborate, so it's important that I be able to sync. 
    Any help would be greatly appreciated.
    Thanks,
    John

    Hi Rohit,
    Thanks for your response. I've resolved the problem myself, and you may be
    interested to know how in case it happens again with another user - I
    thought maybe it was a versioning discrepancy and I was right (I assume).
    However, I couldn't update my desktop software (or I couldn't figure out
    how to update it) until I rebooted my machine, then Story went into an
    auto-update sequence.
    After it updated, it logged in and sync'd just fine. Classic "help"
    question where the answer basically was: reboot. I shouldn't tried that
    before I posted!
    I hope that helps.
    Thanks,
    John
    On Mon, Jun 16, 2014 at 3:02 PM, Rohit (Story Team) <

  • Folio Builder login error

    Now 2012.08.08
    In Indesign CS 6
    Folio Builder login error appears. Message is shown below.
    "Sign in has failed
    Network failure"
    How do you solve?
    DPS Version is
    12.2.4.20120611_m_691037
    8.0.7.21

    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5377&fileID=5010
    Patch!
    Solve it!
    Enjoy Works~!

  • Cisco UCS Management Pack for System Center Operations Manager 2007 R2 Login Error

    I have Cisco UCS 1.4 (3q) and just installed the MP v2.1 for Cisco UCS, however when I click on the "Management Pack Events" alert view in the SCOM console, there are error for event number 19900.  The description of the error is as follows:
    Description:
    CISCO UCS R2 MP (https://10.x.x.x/nuova) [CISCO.UCS.R2.Proxy.LoadCache.ProbeAction.vbs] : CISCO UCS Login Error: Authentication failed (Code: 551)
    I noticed that it's looking for the /nuova directory, but in order to login to our UCS environment, we usually just go to the IP address - so I'm wondering if that has something to do with it?  I've verified that when going directly to the IP from Internet Explorer I can login using the opsmgr credentials we specifically created for this account.  I've also gone through the process of creating a run-as account on the SCOM side and associated it with the correct profiles.
    Any help is greatly appreciated.

    Troubleshooting has found out its user error, wrong password configured.

  • System login error

    Anyone know about this system login error see screencast http://screencast.com/t/Jh5fr1r1aTI
    thanks,
    Adam

    Hi guys,
    The issues has since been resolved as you should now be able to login w/o interruption. 
    Once again our apologies for any inconvenience.
    Kind regards,
    -Sidney

  • Sql 2005 login error

    Post Author: dmccahanpppa
    CA Forum: General
    We are migrating from JD Edwards on AS400 to Microsoft Dynamics GP on SQL 2005. I can create and refresh reports without problem using sa as the login account in Crystal. When I use any of the users created in Dynamics GP (as they have to for users to access GP) I get a login error from the SQL server. This is using the same ODBC connection and I have taken some of the users and elevated there permission on the GP database and/or overall sql server to even dbo and sysadmin and still cannot get any login other than sa to work. Any sql GURUs out there that can tell me what I'm missing?
    Thanks

    Post Author: dmccahanpppa
    CA Forum: General
    I have tried creating ODBC connections (and also found a business objects article on OLE DB and tried that) with SQL Authentication and also with windows. I have made sure my users have usernames in GP that are all lower case name and password. The only thing that is getting me close is to use windows authentication on the odbc connection, set the odbc connection to a specific sql database, and give the users windows read permissions to that database. As a domain admin this gives complete access. With the users the login error goes away but I only see stored procedures and not the tables or views. I'm trying to find the minimum access to give the users in windows to allow windows authentication to work.
    What I don't understand is why this should be so difficult to find the correct answer on. I have the same issue on a very plain install (everything on the server, sql, gp, and crystal) with just microsoft's test company and data as I do the production system (gp and sql on one server and citrix client and crystal on another). I setup the test server (a couple of times blew the whole thing away and rebuilt following gp procedures) and consultants built the production environment. You would think Microsoft (since they blow their marketing horn about how Crystal Reports works with GP) or Business Objects would have the user and odbc setup for this documented.
    Ok...so I'm a bit delusional....

  • IPhone deploy gets Login Error (Invalid username/password).  Android works

    Hi, we're developing an ADF Mobile app on JDeveloper 11.1.2.3 which does initial authentication against Weblogic.
    The login & app works fine on Android, but fails when we deploy the same app to iPhone (iOS 5.0.1, but also 5.1, 6.0 & 6.1 in the Simulator).
    Specific message is :
    Login Error
    Invalid username/password. If the problem persists, please contact your system administrator.
    It's definitely on the network and reaching the login server, because when we shut down the server or make the network unavailable, the message reports "The login server is not reachable"
    All I can think is it's possibly encrypting the password differently within iOS.
    Not having much luck on Google or other searches, so any thoughts are appreciated.
    Thanks
    Peter

    I found a bit more information in the Weblogic Managed Server logs proving the login request reaches the server, but gives this error. Not much luck on google so, if this rings any bells for anyone thoughts are appreciated.
    FROM : /oracle/product/admin/domains/cdlmobile_domain/servers/cdlmobile_server1/logs/cdlmobile_server1-diagnostic.log
    [2013-04-04T17:04:58.426+01:00] [cdlmobile_server1] [WARNING] [] [org.apache.myfaces.trinidadinternal.agent.AgentFactoryImpl] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: tatmfy] [ecid: 53bd9d60b35a3019:-327732ec:13dcfd76fee:-8000-00000000000029b3,0] [APP: BC040113_Project1_BC040113] The User-Agent "cdlivemobile/1.0 CFNetwork/609.1.4 Darwin/12.3.0" is unknown; creating an agent with "unknown" agent attributes.

  • Data Mover login error (SQL 2008R2 as backend DB)

    Hi,
    This question was asked in this thread -> Continued Discussion - Steps to Upgrade PT8.49 to 8.50 Manually
    The difference between problem in that thread and mine is that I have WIN08R2 SQL08R2 Peopletools9.52 and Peoplesoft HRMS 9.0 installed. I was on the steps of creating the databases manually with the sql scripts and that was also preformed.
    I also have different ConnectID: people and AccessID: peoplesa with respective passwords. I try login in with the AccessID and I get the below error.
    File: SQL Access ManagerSQL error. Stmt #: 2 Error Position: 0 Return: 8077 - Invalid SNAC client version (minimum is 10.00.1763) (SQLSTATE PS077)
    Any suggestions?
    -Vishal

    Hi there,
    I upgraded the SNAC client to 1033\x64\sqlncli.msi from the Microsoft and still I get the same Login error in the DataMover.
    I checked the registry location --> HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server Native Client 10.0\Current Version = 10.51.2500.0
    The Data Mover login error says that it requires minimum is 10.00.1763 so i guess the one I have should work fine?
    Any suggestions?
    -Vishal

Maybe you are looking for

  • SID 0 error when updating InfoCube

    I was trying to load data from a flat file (.csv) into an InfoCube in BW and I got the following error message: Could not enter feature with SID 0 into table /BI0/SRT_SEAYR.  I ran tests on the 0RT_SEAYR characteristic but all of them were successful

  • List of SHC'c created from external PR's

    Hi all, We are on SRM 5.0 ECS.We have replicated some of the inventory PR's from ECC to SRM.However now when the Purchaser rejects these SC's(item level) ,I need a list of all such SHC's which are rejected .Is there any std report which does this?Als

  • Downpayment Request correspondence

    In downpayment request correspondence, i want to capture house bank details and bank account number. In F-37, i am unable to find house bank field. How can i do this Edited by: Deepak Agrawal on Jun 1, 2010 2:37 PM

  • For loop taking more than 24 hours to complete

    Hi Frens, This for loop took close to 24 hours to complete.I cant seem to detect the problem.Can someone help to advice? vpath := CS_UTILS.GET_UTL_PATH ; For Rec in Lot_Ship_Assy_Filename Loop v_sysdate := to_char(sysdate-1,'YYYYMMDD'); Filename:= Re

  • How to stop user from using 961 mvt type in MB1C transaction code?

    Hi Friends, We have two companies. Already we have restricted end user for using 961 & 962 mvt type in MB1C transaction code in one company code 1000. Now, we want to restrict end user for using 961 & 962 mvt type in MB1C transaction code in other co