EM shows alert "User SYS logged on from node but no entry in SYS.AUD$

Hello,
When i look on the alert page of my databases i see sometimes the following message "User SYS logged on from <node>.
I have setup several audit actions, like "create session" to track sessions.
But in table SYS.AUD$ i see many records, but not the one of user SYS.
Why? Anyone an idea?
Best regards,
hvdtol

i understand it is comming from metrics, but i don't understand why i can see it in the sys.aud$ table.
hvdtol

Similar Messages

  • ICal Server - User can log in from iPhone but not from Desktop Mac

    I've got quite the peculiar problem with iCal Server on OS X 10.6.6 - my users can log in and access the shared calendars using their iPhones. When I set up an the same account on their desktop Macs in iCal, I get an error message "The server did not recognize your user name or password for account <username@servername>".
    I'm positive that username and password are correct. The only thing I found about that in the log files was that the CalDAV server returns a 201 HTTP status code when accessing the account from the iPhone vs. a 407 status code when using iCal on their desktop Mac. The same accounts are used for Email, File Sharing and Address book, all of which run fine.
    Has anyone experienced a similar problem? Maybe even solved it?

    Solved it myself - there was a non-ASCII character in the account password. Strange that the iPhone didn't have a problem with that while iCal did. Now that I've changed the password to contain only ASCII characters, the problem is gone.

  • Get the user name of  sso user who  logged in from my partner application

    Hello,
    I have created a jsp web application and i registered it under oracle sso server. How can i get the user_name of the user logged in to the sso server from my web application in order to personalize my web page ???
    Thanks in advance.

    Hi zeliko,
    Have you tried request.getRemoteUser() or request.getHeader("Osso-User-Dn")?
    -Vinod

  • Alerting user every 5 mins from system speaker using java script

    Hi Friends,
    I want to alert the user for every 5 mins from system speaker itself using Java Script.
    Please anybody can help me...
    Thanks and Regards
    Vijay Anand

    Java != JavaScriptYou are not asking in the appropriate forum. Go search the web for a JavaScript forum.

  • Not logging in from iPad but logging from pc browser

    Hi all, I just signed up for a premium account and I'm being able to log in by the web browser in my computer but not in my iPad or Windows Phone. Through the browser it works fine, but on the iPad or Windows Phone it always gives me 'login failed message'. I'm not logging in via facebook, I have an account for spotify. I already redefined my password but it didn't work. Any ideas? Tks

    Hello , Welcome to the Community! :)
    Are you sure you are entering your username and not your email when attempting to log into the Ipad app? 
    I hope this helps! :)

  • Is there a way to notify/alert users about records from PSA

    Hi All,
    During transaction data load in BW 3.5 I am using the option" No update of transaction data if Master data does not exist" in the Infopackage.
    If any records don't meet this criteria they will show in different Request in PSA.
    My question: Is there a way to notify/alert users about these records from PSA?.
    Through process chain we can't send any alerts in this case as loads will not fail.
    Please help.
    Thank you.
    Sree

    Brian, Accepeted. We can not create Infoset on PSA.
    To create report on PSA, follow this.
    https://websmp104.sap-ag.de/~sapidb/011000358700008145112002
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/968dab90-0201-0010-c093-9d2a326969f1
    /message/5239445#5239445 [original link is broken]
    Thanks...
    Shambhu

  • I'm new to Mac, have had for approx.  I put my iPhone and iPad and my wifes in iTunes and now when i start my system on.  I now have a Guest user show up at the log on screen.  Is this normal.  And how can I take it off.   Tried the help and no luck

    I'm new to Mac, have had for approx.  I put my iPhone and iPad and my wifes in iTunes and now when i start my system on.  I now have a Guest user show up at the log on screen.  Is this normal.  And how can I take it off.   Tried the help and no luck

    Tatanka11 wrote:
    I'm new to Mac,...
    Then...  You may find these Links of Interest and Value...
    Show me how to set up my Mac.
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    http://www.apple.com/findouthow/mac/
    Enjoy your Mac...

  • I need help showing a users e-mail when they log in. Any help would be much appreciated!

    Hi,
    Now that I am able to show someones username after they login using the code below, how in the world do I get a page to show their e-mail. For example when they go to change their e-mail address in the settings in says next to the form "Your current e-mail is set as ..." how do I get it to show?
    Username code:
    <?php echo $_SESSION['MM_Username']; ?>
    Is it at all similar to this?
    Thank you for any help.

    You are talking about setting the binding for the session variable. That does not create the session variable, just the binding for it. Take a look here to see how to create a session variable. Once the session variable is set you can set the binding for it by the session variable name and then place binding onto page to show dynamic info for logged in user.  For php to add a session from linked tutorial add code similar to this adding info = to $sessFirstName where appropriate. You can add the session variable onto the page that your users login form is located on. Just add a registered session line and another line to define the newly-registered session variable.
    <?php
    session_start();
    session_register("sessFirstName");
    $sessFirstName = $XXXXXXXXXXXX;
    ?>

  • Username not showing up in access log for authenticated users

    I'm using form-based authentication in a Java web application on Sun One Web Server v6.1 to restrict access to authenticated users. However, even after the users authenticate and access the application, the username field in the access log is showing them as anonymous.
    request.getRemoteUser() is reporting the correct username, so it just seems to be the access log that is in error. Right now it is set to the default but changing formats to custom doesn't seem to help in displaying the username.
    Here's an excerpt from the access log:
    // anonymous access attempt, redirects to login page...
    10.100.168.110 - - [01/May/2006:14:34:42 -0400] "GET /profile/index.jsp HTTP/1.1" 302 0
    10.100.168.110 - - [01/May/2006:14:34:42 -0400] "GET /profile/login.jsp HTTP/1.1" 200 3355
    10.100.168.110 - - [01/May/2006:14:34:47 -0400] "POST /profile/j_security_check HTTP/1.1" 302 0
    // at this point they are logged in and their username should be reflected in the access log, but is not:
    10.100.168.110 - - [01/May/2006:14:34:47 -0400] "GET /profile/index.jsp HTTP/1.1" 200 3532 And the relevant code from the web application's web.xml:
    <security-constraint>
        <web-resource-collection>
          <web-resource-name>AllFiles</web-resource-name>
          <description>
                     Restricts anonymous access.
                  </description>
          <url-pattern>/*</url-pattern>
          <http-method>POST</http-method>
          <http-method>GET</http-method>
        </web-resource-collection>
        <auth-constraint>
          <description>
                   Authenticated Users
                  </description>
          <role-name>user</role-name>
        </auth-constraint>
      </security-constraint>I've searched the forums and the manuals but can't see anything showing that the access log's username field doesn't work with form-based authentication. Can anyone shed some light on this?

    Some background:
    The Java Servlet container has its own authentication infrastructure (which is what you configure in web.xml) which is separate from the non-Java authentication infrastructure (ACLs, etc.). If you set up authentication via ACLs the resulting user identity can (though you may configure it not to) propagate to the Java Servlet container such that request.getRemoteUser() will return it, even though no web.xml-driven authentication occurred. The coverse is not true, however: if you authenticate via a Java Realm, based on web.xml configuration, that user identity is not available to non-Java code.
    (Your web.xml snippet doesn't show you using FORM auth - but it doesn't matter, the explanation above applies in any case.)
    That is why the log file (generated from non-Java code) doesn't have access to that user. It probably should, but there's no config option today for you to make that happen.
    If you're using BASIC auth you may consider moving the authentication configuration from web.xml to ACLs as a possible workaround. It will then show up in the access logs.
    If you prefer web.xml-based authentication, consider the <SECURITY audit="true"> option in server.xml. It won't be in the access log but you'll have an audit trail of authentications, which may help.

  • DR server still showing consolidation users and messages from production

    We are doing a DR exercise. My first. We copied the production database to the dr servers. Since they are on the same domain, we put entries in the host files on all our servers to spoof the prod server names to point to dr servers. Moved selected data files for essbase, etc to the dr application disks.
    Everything appears to be working except for HFM. I still see production users activity and messages in the shared services console when I go to administer, show consolidation user activity or messages.
    I have searched the registry, all database tables I could think of, and the application disks on the HFM and shared services services looking for a hardcoded IP and can not find one.
    The message below came out of the hfm config log which has the production database name (which when pinged points to the DR database serrver) but the IP listed is the production IP. Any suggestions?
    (Jul 30, 2010, 10:21:25 AM), com.hyperion.config.wizard.impl.DBWizardState$1$1, DEBUG, DB component setHost: p5wiadbs10.FNFIS.COM/10.132.205.63

    Couple more comments :
    1.) WHERE are you accessing HFM Web from? Locally on one of those servers or from another computer?
    If this were me at this point, I would break out Fiddler2 (to verify which servers web traffic is coming/going to) and then I would fire up wireshark (all network scanning) to try and figure out what server(s) are trying to talk ot production and when. Network Monitor from MS may be a good option as well as I believe you can see network traffic by PROCESS which will help you narrow down what program(s) are trying to hit production envirionment information. (http://www.microsoft.com/en-us/download/details.aspx?id=4865)
    My understanding is that HFM directly only has cluster information in the HFM database (HSX_CLUSTER_INFO, HSX_CLUTER_CONTROLLERS, HSX_CLUSTER_SERVERS, etc.) There shouldn't be any other machine specific information in HFM database, etc.
    I do know that the workspace has some redirects going on in the .CONF file; however, if there was something hardcoded, you would have found that...
    My guess is that something in the Shared Services/Foundation Services database is pointing to production as the other servers talk to that machine for config info. Otherwise, something is buried in a web config file, but you should have discovered that already.
    2.) Additionally, note that HOSTS file changes only affect DNS resolution. If there are any type of broadcast messages or WINS resolution happening that won't address it. To hardcode WINS resolution, you would update LMHOSTS file in the same folder as HOSTS. Using wireshark to monitor network traffic on the same subnet as those servers would definitely be valuable here...... Broadcast messages would be using MAC address of networkcard and not hostname, for instance.
    3.) Maybe try some simpler stuff first. What happens if you re-register the app through workspace? What about unregistering / re-registering server to shared services via configuration utility? (Though, I'd be a little bit concerned that it might unregister your real application if it is talking to production shared services...)
    Edited by: beyerch2 on Aug 30, 2012 8:51 AM

  • Shows link only if user is logged in

    Hi there,
    DW 8, PHP & my SQL
    I have a db of registered users and have links to download
    documents.
    Some of these documents are for everyone and some I only want
    to be
    downloadable or logged in registered users - all on the same
    page.
    If someone can please point me to a tutorial or advice as to
    what I am
    to do, I will really appreciate it.
    Regards,
    Deon

    back from lunch - where you at on the table?
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > Is this site for your or for a client? If a client, I
    woudl build an
    > access table that allows them to determine (or you to
    easily administrate)
    > access levels.
    >
    > If it's for you, that's not really necessary, though I
    find it helps me.
    > Somewhere write down your access levels:
    >
    > 1 - Default, open
    > 2 - Member
    > 3 - Edit (add/edit content)
    > 4 - Admin (add/edit/delete site sectiosn)
    >
    > Next, create your table for your documents. WHat
    information do you need
    > to have contained within them? How are you puloading
    them? Do they need
    > approval before being released? Do they need to expire?
    >
    > So far, we know we need this information in our
    documents table:
    >
    > docID
    > docName
    > docUrl
    > docClearance (what number of clearance is needed tob e
    read)
    >
    > We may need these fields:
    > docDateAdd
    > docDateEdit
    > docDateRemove
    > docPublish (can be bool, or 1 - 4 to define steps of
    publication such as
    > submission, waiting, approved, live)
    >
    > Do you grab your users' clearnace on your login page?
    (it's a checkbox on
    > hte MM server behavior thingy)
    >
    > More after lunch, get those tables setup.
    >
    > "Deon" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> crash, my db is set up and users can log in and out.
    Just for what it
    >> might be worth in the future, I have a default
    Access level of 1. That's
    >> where I am now.
    >>
    >> Deon
    >>
    >>
    >> crash wrote:
    >>> Where are you at now? Do you ahve your database
    setup at all? Or are
    >>> you saying you have your database setup, but
    only a table for the users
    >>> in it?
    >>>
    >>> Should not need a tutorial, should be fairly
    straight forward.
    >>>
    >>>
    >>> "Deon" <[email protected]> wrote
    in message
    >>> news:[email protected]...
    >>>
    >>>>Crash,
    >>>>
    >>>>thanx for the time to answer my question. My
    db only makes provision for
    >>>>the registered users. At the moment I only
    know what I want and have no
    >>>>idea how to get there. Are there tutorials
    you are aware of for this? If
    >>>>not, I can Google if I know what to look for.
    >>>>
    >>>>Thank you again!
    >>>>Deon
    >>>>
    >>>>
    >>>>crash wrote:
    >>>>
    >>>>>What separates the two out in your
    database? Do you have a "class"
    >>>>>field to determine document class (ie,
    private or public?) Do you have
    >>>>>a table of association that says which
    users or which level of users
    >>>>>can access which documents?
    >>>>>
    >>>>>Getting that built will be your first
    step. After that, I would build
    >>>>>two recordsets, one public and one
    private. I would then use DW's show
    >>>>>region if recordset is not empty Server
    Behavior to show the links I
    >>>>>wanted.
    >>>>>
    >>>>>Another way to buidl ti would be to use
    one recordset and the split the
    >>>>>two (public/private) into arrays and
    display them according to isset()
    >>>>>statements.
    >>>>>
    >>>>>HTH,
    >>>>>
    >>>>>Jon
    >>>>>"Deon" <[email protected]>
    wrote in message
    >>>>>news:[email protected]...
    >>>>>
    >>>>>
    >>>>>>Hi there,
    >>>>>>
    >>>>>>DW 8, PHP & my SQL
    >>>>>>
    >>>>>>I have a db of registered users and
    have links to download documents.
    >>>>>>Some of these documents are for
    everyone and some I only want to be
    >>>>>>downloadable or logged in registered
    users - all on the same page.
    >>>>>>
    >>>>>>If someone can please point me to a
    tutorial or advice as to what I am
    >>>>>>to do, I will really appreciate it.
    >>>>>>
    >>>>>>Regards,
    >>>>>>Deon
    >>>>>
    >>>>>
    >>>
    >
    >

  • How to show all user logged in/loggout in Report

    How to display All User Logged in time & Logout Time?
    Hi..
    I want to display All user in Portlet a report that show us all user that logged in the portal,
    their username,
    their time logged in,
    their time logged out..
    where can i find these information?
    do Portal have already something like this?
    Plz advise..Thanks.

    Thanks Sharmila for answering my question..
    Similar question i want to ask..
    I look at the table, and view it's data...
    Mmm..some i don't recognize...
    Actually, i just want to grep
    1)The UserId of the user who logged in the portal
    2)The time he logged in the portal
    3)the time he log out the portal
    That's all..
    How can i do that?..
    I plan to create one table to store the data, and plan to grab the data by jsp....
    What are the table/function/api that can i use and how?
    Plz advise.
    Thanks

  • HT4889 I just transferred data using migration assistant from a macbook prop to a macbook. I am trying to log back into the user that was on the pro but is now on the macbook with the same password as before, and it says my password is incorrect.

    I just transferred data using migration assistant from a macbook pro to a macbook. I am trying to log back into the user that was on the pro but is now on the macbook with the same password as before, and it says my password is incorrect?

    Suggest you try the password for the Macbook, not the previous one.

  • I can't access to my ipad In MacBook Air. Error shows this device no loger connected or error shows that no response from divice and iTunes can't connected or not found divice, what's the problem? I reset my ipad but no response

    I can't access to my ipad In MacBook Air. Error shows this device no loger connected or error shows that no response from divice and iTunes can't connected or not found divice, what's the problem? I reset my ipad but no response

    Hi ..
    Which OS X is installed on your Mac ?
    Click the Apple () menu top left in your screen. From the drop down menu click About This Mac. The version is noted there.
    Make sure your Mac OS X software is up to date.
    Disconnect the iPad from your Mac.
    Open System Preferences > Software Update > Check Now
    If any updates are required, make sure to restart your Mac after the updates are installed then connect your iPad and see if iTunes recognizes it under Devices.

  • System Alerts  show different User in OAM than Requestor for C REQ

    Hi,
    I would like to ask for your advise on System Alerts issue in OAM 2.3.1 (EBS 11.5.10.2).
    Screenshot:
    https://gtcr.oracle.com/gtcr-dir/gtcr_106036848/7031149.992/wrong_user_shown_in_system_alert_details.doc
    The screenshot presents system Alert Details screen
    Here you can notice that in the Alert in OAM screen the 'User' related to this certain Alert is called CT04845.
    The real user - requestor - was JW00162(seen from Concurrent->View screen in Oracle Forms).
    Is this invalid situation or correct?
    Which table stores Alert User? Which class/package populates this table?
    Should alert User be similar to Requestor?
    Also the Responsibility shown in alert details is incorrect.
    Neither of the users(CT04845, JW00162) has the 'Matman' responsibility assigned to them.
    Kindly advise.
    Thanks in advance,
    Wioletta

    Hi Amithab,
    you can use badi CRM_BP_UIU_VIEW_CONFIG  of enhancement spot CRM_UIU_BP_ENHANCEMENT for your requirements. Please read the badi documentation because you need also a implementation of badi CRM_BP_UIU_CONFIG_CALLBACK (same spot). SAP considers badi CRM_BP_UIU_VIEW_CONFIG only for use at dynamically loading different configuartions of view details for business partners or contact persons at runtime. But you can use your badi implementation also for other views. You have to redefine method DO_CONFIG_DETERMINATION in your views. And call your badi from there. For this copy&paste the logic of DO_CONFIG_DETERMINATION of bp details to the views you have to load dynamically at runtime.
    We have used this approach for access controll and granting special access to views dependent on different employee functions.
    Best regards
    Michael

Maybe you are looking for