Orasso.wwsso_audit_log_table_t access

When trying to run the following query from an APEX application as the APEX schema owner of the workspace, I always get No Data Found.
select user_name,
log_id,
log_date,
ip_address,
action,
message
from orasso.wwsso_audit_log_table_t
where user_name = :P26_USER_NAME;
I cannot figure out the grants needed to make this work. It seems like there is some kind of behind the scenes fine grained access control, but for the life of me, I can't find it. Any help would be greatly appreciated. I'm actually trying to run the above query against the wwsso_audit_log_view, but since the table doesn't work either, I figured I'd start there.
Kris

If i understand your question correctly, you want to find out tcodes accessed by a user in a particular time. You can get this information from st03  --> User and settlement statistics --> User profile.

Similar Messages

  • NEED TO DETERMINE USERS THAT HAVE LOGGED IN WITH A SPECIFIC ROLE

    I have a requirement to determine which users have logged in with a specific
    role or accessing a specific application. I know I can use the
    ORASSO.WWSSO_AUDIT_LOG_TABLE_T table to see the users that have logged in, but
    need to know which table to join with in order to determine which group that a
    user belongs to. It would also be nice to figure out which users are accessing
    a given application.
    We are running AS 9.0.4.2 with ORASSO database 9.0.1.5.
    Can you identify which tables I will need to use to satisfy my requirement?
    Thanks, Mike

    Thanks! I modified this slightly to get what I needed but I didn't think that I could get this from dba_tab_privs. You were a huge help!
    select table_name, grantee
    from dba_tab_privs
    where
    table_name in ('UTL_FILE', 'UTL_TCP', 'UTL_HTTP', 'UTL_SMTP', 'DBMS_LOB', 'DBMS_SYS_SQL', 'DBMS_JOB', 'DBMS_BACKUP_RESTORE')
    and privilege='EXECUTE'
    order by table_name;

  • I need a SQL to find all users within OID

    Hi,
    I'm trying to find all usernames and last logon in OID and was thinking of two ways to do this.
    1. query OID with ldapsearch
    2. query LDAP schema in Oracle database.
    Any ideas on how to do this and what is the best way. If a sql in the database could solve this it would really be the best way for me.
    Regards
    Morten

    I did a:
    SELECT DISTINCT user_name
    FROM orasso.wwsso_audit_log_table_t
    WHERE action_code = 1001
    But this only gives me the users that have loged on to SSO.. I need all users even those who haven't loged on.
    All help will be really good.
    Regards

  • Linux 9iASR2 sso default username

    Hi!
    What is the default username and password (after installing OAS infrastructure)
    when accessing 9iASR2 page http://myserver/pls/orasso?

    Access
    http://hostname:port/pls/orasso
    User: orcladmin
    password: <the iAS instance password you gave during installation>

  • ORASSO database user privileges

    Hi-
    We are using 10G SSO, in the OID database DBA role is assigned to ORASSO user.
    I am unable to find that why do we require DBA role for this user, can we revoke DBA role from ORASSO?
    Regards

    Hio Srini,
    Thanks for your feedback. We are using Discoverer 11g on a 10g database. OS on client machine running Discoverer Desktop is Windows xp and im pretty sure its solaris on the box.
    The eulowner user is indeed a database account and was specifically created to create the eul with. Therefore with this in mind, i created a new database user with resource and connect privs. Once this was created i navigated to Discoverer Administrator expecting to see the user within the dropdown menu under tool > priviledges, but the new user namely disco_user is not appearing in the lsit for selection.
    I'm wondering if this eul was created as an apps mode eul, would this determine whether standard database users are able to be selected in this mode? The full error message when logging into Discoverer Desktop is;
    unable to connect to: disco_user@db you do not have access priviledges to any end user layer tables.
    This message appears does apear quite rightly as i have found before when no priviledges have been assigned to the user in admin, but without the ability to select the user from the dropdown list, im unable to grant these.
    Please let me know if you have any further questions. I appreciate your help.
    Simon

  • Portal access through a firewall

    Hi there!
    Having the default installtion of R2 on a single W2K box, what's the minimal procedure to make this configuration available through a firewall?
    I've opened ports 7777-7778 but fail when trying to logon via SSO (host.domain.com:7777/pls/orasso)
    Have I missed out to open another port or am I forced to follow the steps of setting up a reversing proxy to have portal-access outside the firewall?
    Cheers
    /Staffan

    If they are on different servers, then both are listening on the 7777 port, and you will have to change one of them to use another port (assuming your firewall can only port forward a port to only one host).
    If you are running both instances on the same server, then your SSO is accessible via 7777 and your midtier would be on 7778, so your setup as described should be enough (I do the same thing).
    If they are running on the one machine, can you access the SSO/INF server directly? http://inf.domain.com:7777 and then http://inf.domain.com:7777/pls/orasso ?

  • URGENT: problem with orasso.wwsso_api.authenticate_user  warn_code

    I am facing a problem with a certain API call in Oracle 10g Portal (9.0.4) while it is running with an infrastructure database of Oracle9i Enterprise Edition Release 9.0.1.5.1.
    I am trying to access a user authentication api in the ORASSO schema. This api wwsso_api has one sole procedure 'authenticate_user' and here is a description of this procedure.
    ORASSO> desc wwsso_api
    PROCEDURE AUTHENTICATE_USER
    Argument Name                  Type                    In/Out Default?
    P_USER                         VARCHAR2                IN
    P_PWD                          VARCHAR2                IN
    P_COMPANY                      VARCHAR2                IN     DEFAULT
    P_WARN_CODE                    NUMBER                  OUT
    ORASSO> and when i try to call this procedure, the api call itself gives numeric or value error.
    ORASSO> DECLARE
      2        v_warn_code   number;
      3        v_pt          varchar2(10):='0';
      4        ERR           exception;
      5  BEGIN
      6        v_pt :='1';
      7        WWSSO_API.authenticate_user(p_user=>'myusername',
      8                                    p_pwd=>'myalphanumericPwd',
      9                                    p_warn_code=>v_warn_code);
    10        v_pt :='2';
    11        if nvl(v_warn_code,99)=99 then
    12           v_pt :='3';
    13           RAISE ERR;
    14        end if;
    15        v_pt :='4';
    16        dbms_output.put_line('v_warn_code = '||nvl(to_char(v_warn_code),'nothing')||'<br>');
    17        v_pt :='5';
    18 
    19  EXCEPTION
    20        WHEN ERR THEN
    21           dbms_output.put_line('ERROR= ERR: v_warn_code = '||nvl(v_warn_code,999)||'<br>');
    22 
    23        WHEN OTHERS THEN
    24           dbms_output.put_line('ERROR= OTHERS: v_pt = '||v_pt||'  v_warn_code = '||nvl(v_warn_co
    de,999));
    25           dbms_output.put_line('Sqlcode ='||SQLCODE||': sqlerrm = '||SQLERRM(SQLCODE));
    26  END;
    27  /
    ERROR= OTHERS: v_pt = 1  v_warn_code = 999
    Sqlcode =-6502: sqlerrm = ORA-06502: PL/SQL: numeric or value error
    PL/SQL procedure successfully completed.
    ORASSO> Does anyone know what is the problem here and what mistake am I making here. and what is the fix for it?
    It is URGENT guys. thank you very much for your time and any helpful hints.
    syed

    Check the specification / declarion of the called procedure. you might have defined any variable improperly. For Ex : v_num NUMBER(3) := 9999999;
    - Jaheer

  • Mod_plsql: /pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login HTTP-400

    Hi,
    i write role in httpd.conf, to redirect to an external application, as this:
    ProxyPass /pippo/ http://<myhost>:7777/pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD
    ProxyPassReverse /pippo/ http://<myhost>:7777/pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD
    bun when i try to access at <myhost>/pippo/ i receive the follow http error:
    mod_plsql: /pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login
    HTTP-400 Name "ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD" is longer than 30 chars
    Is this a problem of mod_plsql or an Apache (Proxypass)?
    Are somebody resolve it?
    Thanks a lot to all!!!
    Stefano

    Yes Frank, I'm using DAS.
    I found the problem, There was a previous SSO server installation and It was causing a conflict.
    Now I have fixed the error running SSOREG script, the problem now is when accessing with a valid user the Apache.exe dies. The OID seems to be working fine since any wrong user is rejected, but when valid user the apache dies.
    I'm looking for information about this error.
    Any Idea?

  • Single Sign-On:orasso Status Down After Enabling SSL

    The status of Single Sign-On:orasso is listed as down in Enterprise Manager after enabling SSL. The same problem existed in with the Portal component, but this was fixed by adding a certificate to the certdb.txt file and by changing some URLs in the targets.xml file.
    Does anyone know how to correct this issue with Enterprise Manager? It has no effect on the behavior of our application, but it is causing problems with administration because some people use the Enterprise Manager console to monintor the state of our environment.

    Hi,
    Did U try this the following steps;
    When the configuration is finished, take the following steps:
    1.
    In the Application Server Control Console Confirmation page, click OK. The Application Server Home page appears.
    2.
    If you did not have an OC4J_SECURITY instance before, you will have one now. The OC4J_SECURITY instance will have a status of Down. You will also have a Single Sign-On:orasso instance with a status of Down. Select the check box next to OC4J_SECURITY and click Start.
    Note: You cannot start the Single Sign-On:orasso instance. This feature is started and stopped when you start and stop HTTP_Server and OC4J_SECURITY.
    3.
    When the operation completes, verify that OC4J_SECURITY has a status of Up.
    Note: The Single Sign-On:orasso status may be displayed as Down. This is normal. The status should be updated approximately five minutes after configuration.
    4.
    Select HTTP_Server and click Restart.
    5.
    Verify that you can access OracleAS Single Sign-On at the following URL:
    http://hostname.domain:port/pls/orasso
    In the URL, hostname.domain is the host on which OracleAS Single Sign-On is installed and port is the Infrastructure HTTP Server port.
    You can log in as orcladmin with the orcladmin password.
    Also try to check Oracle Application Server Single Sign-On Administrator's Guide
    Hear from U & regards,
    Hamdy

  • Accessing Portal's First Screen without an Authentication

    We have Oracle Portal 10.1.2.3 installed as a part of our middle tier and trying to disable authentication to SSO so the user can access to the selected site without needing to register with our system. Nothing secure is posted in the portal home page and they'll need to logon after they select certain options.
    The question is how to disable the SSO when we navigate to the portal with using the URL such as https://machine.domain/pls/portal?
    We are worried that if we delete the Portal Entry from SSO configuration (https://infra.domain/pls/orasso) as a partner application, it may cause problems with the Portal and the way it was installed as a part of the middle tier installation.
    Thanks in advance for your time.
    KA

    Unfortunately you’re on Portal 10.1.2.3 and can't use the pretty URI format from Portal 10.1.4.x. Portal 10.1.4 will also allow you to shorten the URL even more by removal of the /portal/page/portal part of the URI. For more information about this feature, consult the documentation :
    [4.5.6 Defining URL Rewrite Rules for a Page Group|http://download.oracle.com/docs/cd/B14099_19/portal.1014/b13809/admin.htm#sthref523]
    Oracle® Application Server Portal User's Guide
    10g Release 2 (10.1.4)
    B13809-04
    Thanks,
    EJ

  • Policy.properties and ORASSO.WWSSO_LS_CONFIGURATION_INFO$ Question

    Using 9.0.4.1.0. Can someone explain to me the relationship between ORASSO.WWSSO_LS_CONFIGURATION_INFO$ and the policy.properties file when it comes to login and signoff pages?
    From what I've read, 9.0.4.1.0 and greater use the file as opposed to the table, but it appears in my instance, that the table will still override the file if the LOGIN_URL field is actually used.
    Is it better to use one way over another? I can't find any clear documentation on this.

    You should be able to access the content of the new table using old name.
    Infact, there is a object view with name WWSSO_LS_CONFIGURATION_INFO$ .
    You should be able to do normal operation(update, select, etc) on the view
    if you need to do that.

  • Forbidden --You don't have permission to access /pls/htmldb/htmldb on this

    Hi ,
    I have recently installed htmldb 2.0 on oracle 10g. When I am trying to access the URL ,
    http://hostname:7777/pls/htmldb
    getting the following error:
    Forbidden
    You don't have permission to access /pls/htmldb/htmldb on this server.
    Can you please help me how to resolve this error.
    TIA

    Jes,
    Thank you so much for your help. My current dads.conf file looks like the following:
    <Location /pls/orasso>
    SetHandler pls_handler
    Order deny,allow
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername orasso
    PlsqlDatabasePassword @Bdfw2X+sa2pQQU1rQTzjmc==
    PlsqlDatabaseConnectString cn=test10g,cn=oraclecontext NetServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode SingleSignOn
    PlsqlSessionCookieName orasso
    PlsqlDocumentTablename orasso.wwdoc_document
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure orasso.wwdoc_process.process_download
    PlsqlDefaultPage orasso.home
    PlsqlPathAlias url
    PlsqlPathAliasProcedure orasso.wwpth_api_alias.process_download
    </Location>
    # HTMLDB Configuration#
    Alias /i/ "D:\OraInfra\Apache\Apache/images/"
    <Location /pls/htmldb>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername HTMLDB_PUBLIC_USER
    PlsqlDatabasePassword %html_db_public_user_pwd%
    PlsqlDatabaseConnectString testas.nrtc.coop:1521:test10g.nrtc.coop
    PlsqlDefaultPage htmldb
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_manager.process_download
    PlsqlAuthenticationMode Basic
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    </Location>
    We are using Oracle Application server 10g HTTP server with HTMLDB. My error_log says:
    [Wed May 31 11:13:12 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 11:15:22 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 11:17:57 2006] [error] [client 10.1.0.34] [ecid: 1149088676:10.1.0.34:4652:4380:1,0] mod_plsql: /pls/htmldb/htmldb_admin HTTP-403 ORA-1017 ORA-01017: invalid username/password; logon denied\n
    [Wed May 31 11:19:05 2006] [error] [client 10.1.0.34] [ecid: 1149088745:10.1.0.34:4652:3448:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-403 ORA-1017 ORA-01017: invalid username/password; logon denied\n
    [Wed May 31 11:26:28 2006] [error] [client 10.1.6.60] [ecid: 1149089188:10.1.0.34:4652:440:2,0] mod_plsql: /pls/htmldb/htmldb HTTP-403 ORA-1017 ORA-01017: invalid username/password; logon denied\n
    [Wed May 31 11:55:47 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 11:56:36 2006] [error] [client 10.1.0.34] [ecid: 1149090996:10.1.0.34:2820:2308:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup for more information.
    [Wed May 31 12:03:00 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 12:03:46 2006] [error] [client 10.1.0.34] [ecid: 1149091426:10.1.0.34:2068:1564:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup for more information.
    [Wed May 31 12:03:50 2006] [error] [client 10.1.0.34] [ecid: 1149091430:10.1.0.34:2068:568:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup for more information.
    [Wed May 31 12:06:55 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 12:10:06 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 12:16:22 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 12:17:59 2006] [notice] FastCGI: process manager initialized
    [Wed May 31 12:19:13 2006] [error] [client 10.1.0.34] [ecid: 1149092353:10.1.0.34:5260:5944:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup for more information.
    [Wed May 31 12:20:22 2006] [error] [client 10.1.0.34] [ecid: 1149092422:10.1.0.34:5260:4660:1,0] mod_plsql: DAD '/pls/htmldb' is disabled because of misconfiguration. Please refer to the log entries during server startup for more information.
    Any ideas
    Thanks
    Michael

  • Query to extract users and the applications they have accessed?

    I have been requested to list users and the external applications they have accessed (if they have that is!)
    I produced a list to show they had logged on using the object orasso.wwsso_audit_log_table$
    and I extracted the the applications they had access to using the objects orasso.wwsso_application_info_t and orasso.WWSSO_APPUSERINFO_T
    But what I need to find is whether the users have access the applications listed in.
    I have looked at alot of objects but nothing seems to spring out at me.
    Please can anyone help?
    Thank you
    Sue

    Hi Manoj,
    It is not possible in SAPB1.
    Try to Export to Excel File.
    check the thread,
    Re: Authorisations List
    Regards,
    Madhan.

  • OCS Single box has no ORASSO active?!

    I have done a neat and clean install of Oracle Collaboration Suite R2.
    All subparts are running nicely, after batteling the problems with hostname resolution.
    Now, when I get to the opening page of OCS, and want to start any application I get "FORBIDDEN, You don't have permission to access /pls/orasso/bladibla (whatever app) on this server." Somekind of ORASSO configuration problem, but which one and what to do??
    Just all "out of the box" default install... Anyone have any clue?
    Regards!

    Hi
    why a R2 ??? you should consider 10g, R2 should be dropped now !
    regarding your problem, it seems like if you got problems with hostname resolution, the sso may nor be properly registered and this must be done again. I don't remember if it's the same in R2 but the tools to use are ssoreg and ssocfg, have a look at the AS 904 documentation.
    Regards

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

Maybe you are looking for

  • Internet Page Loading has slowed to a crawl!

    I have enjoyed fast broadband service on my Mac Pro using Att's DSL service with a 3 megabit connection. Just recently when I click on a link or a bookmark, I am waiting a long time for the page to load. I have reset the DSL modem a few times without

  • IMovie '11 will no longer show project or open the project file

    Upon finishing a project, I was ready to do a Share > Export Movie command, and opted first to do a restart on my computer (by first doing a File > Quit in iMovie). Now my project no longer shows up in the projects pane! While the import of the origi

  • Use Buttons as counters, instead of numbers

    I have a basic slideshow, with previews and next buttons replacing the arrow text (>). What i am trying to do now, is to replace the counter, with buttons.  I have 5 photos, and i would like to link all 5 photos to a different button at the bottom of

  • New OS has locked up my playbook

    I just downloaded the new OS 2.0 and my playbook has locked up on reboot. When it finally starts up I get the home screen but nothing works. When I manage to get into the OS hardware settings I see that I only have only 29.5 mb of memory available of

  • Crystal Reports 2008 Error Installing Service Pack 1

    Hello, I am trying to install Service Pack 1 for Crystal Reports 2008 on Windows 2008 Server as an adminstrator and I get the following error message: "The feature you are trying to use is on a network resource that is unavailable.  Click OK to try a