User Activity Auditing

Hi
I want to audit User/session activity in my database...
I want the details like User Name/ Machine IP, Time logged in / logged out... and other details.
I know you can enable audit_trail and query the tables.. Is there anyway I can create a report / txt file else send a notification at the end of the day?
Require all the steps..
Thanks in Advance,
Radhika

Thanks Gasparotto
Wow the code was great.... I was able to get the attachments... But I dont know how to specify a file which resides on the machine.. Can I give the path of the file where it is to be found and attach it....
Coz in
http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/mailexample_sql.txt
There are examples of how to execute the package...
REM Send an email with 2 attachments.
DECLARE
conn utl_smtp.connection;
req utl_http.req;
resp utl_http.resp;
data RAW(200);
BEGIN
conn := demo_mail.begin_mail(
sender => 'Me <[email protected]>',
recipients => 'Someone <[email protected]>',
subject => 'Attachment Test',
mime_type => demo_mail.MULTIPART_MIME_TYPE);
demo_mail.attach_text(
conn => conn,
data => '<h1>Hi! This is a test.</h1>',
mime_type => 'text/html');
demo_mail.begin_attachment(
conn => conn,
mime_type => 'image/gif',
inline => TRUE,
filename => 'image.gif',
transfer_enc => 'base64');
-- In writing Base-64 encoded text following the MIME format below,
-- the MIME format requires that a long piece of data must be splitted
-- into multiple lines and each line of encoded data cannot exceed
-- 80 characters, including the new-line characters. Also, when
-- splitting the original data into pieces, the length of each chunk
-- of data before encoding must be a multiple of 3, except for the
-- last chunk. The constant demo_mail.MAX_BASE64_LINE_WIDTH
-- (76 / 4 * 3 = 57) is the maximum length (in bytes) of each chunk
-- of data before encoding.
req := utl_http.begin_request('http://www.some-company.com/image.gif');
resp := utl_http.get_response(req);
BEGIN
LOOP
utl_http.read_raw(resp, data, demo_mail.MAX_BASE64_LINE_WIDTH);
demo_mail.write_raw(
conn => conn,
message => utl_encode.base64_encode(data));
END LOOP;
EXCEPTION
WHEN utl_http.end_of_body THEN
utl_http.end_response(resp);
END;
demo_mail.end_attachment( conn => conn );
demo_mail.attach_text(
conn => conn,
data => '<h1>This is a HTML report.</h1>',
mime_type => 'text/html',
inline => FALSE,
filename => 'report.htm',
last => TRUE);
demo_mail.end_mail( conn => conn );
END;
Here where do I give the location of the file to be attached ? Cant I give the location? Then how else can i attach a file from an specified location?
Thanks
Radhika

Similar Messages

  • Auditing user activity in Oracle 9i

    I need to provide some kind of measure of user activity in our Oracle DB.
    Essentially we are trying to find low consumers who perhaps have little or no need for access to the database, perhaps they do one enquiry a day or only access information once a week.
    However, if they log in every day, all day, it doesn't necessary mean they are a havy user of the database, they may never actually query or update anything.
    With that in mind, is it possible to provide activity auditing in Oracle 9i, with new or existing procedures?
    For one application our users share an Oracle account but their OS User would always identify them.
    So ultimately I would like to report:
    For last week Oracle DB usage of database XYZ is:
    User Os User Consumption
    ADAM Adam 1000
    GSPAM SpamG 900
    SLACKA ASlack 877
    PINT ASlack 876
    PINT Adam 854
    I have no idea one might measure consumption!
    Thanks

    cubittm, I have done what you are asking about.
    Depending on how much detail you want you can set up database event logon and logoff triggers to capture this information.
    On logoff you update a statistics row with the values from v$sesstat for the logging off session for those statistics you want to measure. Note, you will not be able to capture statistics for session that abnormally terminate since the logoff trigger does not fire in that case.
    All you actually need is a logoff trigger and one row per user to get totals. If you want details then you need one row per day or a set of rows for every logon/logoff depending on how much detail you want to collect.
    If you generate data for every logon/logoff the data quantity can build up very fast depending on your application user load. If the target table fills then no one can logon so make sure you have adequate space available and a purge process. This process will not work very well if everyone logs in via a single application id and connection pooling is in use.
    HTH -- Mark D Powell --

  • Query for 'User Activity' Webi Line Chart using BO4.0 Auditor

    Need to create a webi line chart to measure  ‘user activity’ per month, year or day using BO4.0 Auditor on Oracle.    
    This question raises two sub-questions:
    What actions constitute user activity?  Is it concurrent logins by users?   I am confused if that would really give a true picture of user activity as users can log in and do nothing on the BO system.  
    If concurrent logins do in fact give a true picture of user activity then how do I go about creating a chart? What objects do I need to include in query?
    Please provide feedback?
    Thank u.

    Hi Ramil,
    Follow below steps to create a webi report for your requirement, launch Webi rich client and create a new webi report by selecting "BOEXI40-Audit-Oracle" (Audit universe)
    1) Select below objects in 'Result Objects' pane
    [Event Year], [Event MonthName],[Event DayofMonth], [Event Type], [User Name], [Total Event Count]
    2) Define below conditions in "Query Filter" pane
    [Event Type Id] In list 1015 AND [Event Year] In list "Select Year" (Prompt)
    3) Run query
    4) At report level create a new variable of type measure with the name "User Activity" with below formula
    =Count([Total Event Count]In([User Name];[Event MonthName];[Event DayOfMonth]) )
    (This formula will track  logout event of a each user in a day as well as in a month, it will take/count only one log out event of the user in a day as you desire)
    5) Create a table block as well as graphs as you desire
    i) For day wise user activity create a table/graph using: [Event DayofMonth], [User Activity]
    ii) For month wise user activity create a table/graph using: [Event MonthName], [User Activity]
    Let me know if you have any questions
    ~Manoj

  • Activating audit for Dimension Members in BPC 7.5 NW

    Hi,
    Is it possible to activate dimension member audit in BPC 7.5 NW. Meaning, can we trace changes to master data (dimension members) in BPC 7.5 NW?
    Best regard
    SSC

    Hi,
    The Activity Auditing tracks Administrative and User tasks at the Appset level.
    This will be controlled by the Administrators to check whether activity auditing is enabled or not.
    To enable this future go to -> Administration for the Web, choose Manage Activity Audit -> then choose one or both types of activities to audit.
    Please check the help file for the same.
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/a0/2d2e0ec3da472c82a3f0ff5a96d9ce/content.htm
    Regards,
    Raghu

  • Tracking user activity (including objects/records/data viewed)

    Hello everybody,
    I am looking for information regarding monitoring of user activities on the system.
    I know the main instrument to achieve that is the security audit log (sm19/sm20) but that does not monitor the data user accesses to. I.E., they log the user launches transaction su01 (view/modify user data), for example, but not which user data he looks at.
    Insufficient to get that are also STAD/STAT transactions too, maybe user trace st01 or st05 give that data?
    Even in that case however a user trace would be very heavy on the performances and on the occupied disk space I think, so I am wondering, and asking all the experts, is if there are standard transactions to achieve the same, or maybe even external 3rd party programs.
    Thank you
    Marco Baiocco

    > Unfortunately that is not yet really clear even to me.
    I see...
    > I have been passed a generic request to investigate upon tracking mechanisms: the customer wants to be able to know which user have made logon and on which data they have worked (in read only and in modification).
    > I guess this could imply sensitive data but possibly also business data.
    The question to be answered also is: Is it legal in the country to track all the user activity?
    > If there is a solution for sensitive data, at least (btw su01 was just an example)?
    I'm not really aware of any but Security Audit.
    I would ask the customer what exactly he wants and what he plans to do with the data. There are SAP products (GRC) to help auditing and securing the system but first there must be a clean requirement to find out, which way to go.
    Markus

  • HFM User Activity

    Hi All,
    Is there a way to get a detailed analysis of users logged in to particular application and get a log of activities conducted for over a period of time in HFM?
    For eg there is a requirement to get the following information for all HFM applications
    user log on
    log off
    app logged into
    for over a period of time
    Thanks,
    Manoj

    hi
    i'd try auditing tasks
    find the information about auditing tasks bellow
    Auditing Tasks
    You can use the Task Audit feature to view the tasks performed by users. You can filter audited tasks by date range, application server, user, and task performed.
    Note:
    Only users assigned the Administrator role can perform a task audit.
    These user activities are logged in the task audit:
    Idle
    Rules Load
    Rules Scan
    Rules Extract
    Consolidation
    Chart Logic
    Translation
    Custom Logic
    Allocate
    Data Load
    Data Extract
    Data Extract via HAL
    Data Entry
    Data Retrieval
    Data Clear
    Data Copy
    Journal Entry
    Journal Retrieval
    Journal Posting
    Journal Unposting
    Journal Template Entry
    Metadata Load
    Metadata Extract
    Member List Load
    Member List Scan
    Member List Extract
    Security Load
    Security Scan
    Security Extract
    Logon
    Logon Failure
    Logoff
    External
    Metadata Scan
    Data Scan
    Extended Analytics Export
    Extended Analytics Schema Delete
    Transactions Load
    Transactions Extract
    Document Attachments
    Document Detachments
    Create Transactions
    Edit Transactions
    Delete Transactions
    Post Transactions
    Unpost Transactions
    Delete Invalid Records
    Data Audit Purged
    Task Audit Purged
    Post All Transactions
    Unpost All Transactions
    Delete All Transactions
    Unmatch All Transactions
    AutoMatch by ID
    AutoMatch by Account
    IC Matching Report by ID
    IC Matching Report by Acct
    IC Transaction Report
    The task audit log includes this information:
    Username
    Activity performed
    Activity start time
    Activity end time
    Server name
    Description
    Current module
    Note:
    The Task Audit feature is available only in the Financial Management Web user interface.
    The task audit log information is stored in a table (APPNAME_TASK_AUDIT). You can back up or extract the information in the table. You should monitor the log size and clear it on a regular basis.
    To perform a task audit:
    Select Administration, then Task Audit.
    Note:
    You must have an application open for the Task Audit link to be available.
    Optional: You can filter the audit by selecting criteria:
    Enter a start date and an end date.
    Tip:
    Click to select dates from a pop-up calendar.
    From the Server Selection list, select a server, or select All.
    From the User Selection list, select the user to audit, or select All to audit all users.
    From the Task Filter list, select the task to audit, or select All to audit all tasks.
    Click View.
    The tasks that meet the filtering criteria are displayed. Tasks are sorted from most recent to least recent, as shown in this example.
    Optional: To export the audit information to a CSV file, click Export, and follow the download instructions.
    Optional: To delete the entries from the log, click Clear Log to delete the entries from the log.
    Note:
    When you clear the log, a record of the clear remains in the log and cannot be erased.
    regards
    alex

  • Trailing user activity

    Hi
    I'd like to know if its possible to get a report of previous user activity in the system i.e. I want to know all the dates & time a certain user logged into the system for the last one month.
    Thanking you
    Andale

    Hi,
    To get user activity detail, you need to activate Security Audit Log. You can do this per user. Security Audit Log can be managed using tcode SM19 and SM20.
    Tcode STAD only give you previous day of user activity.
    ardhian
    http://sapbasis.wordpress.com

  • Tracking user activity, 'Activity Universe'

    How can I track user activity within InfoView and Central Management Console of Crystal?  I need to audit which users are viewing which reports, what changes they are making, permissions that are being set and so on...
    I have heard of "Activity Universe".  Is it part of Crystal, I dont seen an install option when I install and I dont see any clear reference to it?

    I found the audit page, that is what I need.
    However... it is not available to me:   "Your license does not allow auditing."
    What kind of licensing do I need?
    What is the cost?
    Is there a webpage that clearly explains the licensing cost/options?

  • The report of user activity

    The report of user activity
    Can anyone show how the sample report of user activity?
    Is there information that the website opened and how much time was running applications? Is used in an active way of running applications?
    I will be grateful for your help.
    Jerry

    Finding a program of monitoring user activity MAC OS X okazauje be very difficult.
    The program aims to monitor sites visited, but:
    - Can not save passwords
    - It can not sending data to an external server
    I can not find such software
    I found: http://www.net-monitoring-software.com/secure-order.html
    but it turns out that the manufacturer no longer supports MAC platform.
    Help! Is anyone familiar with this type of software?
    Pls. Help me.

  • Track User Activity

    Hello,
    I need to be able to track our user activity in a company intranet.  I need to track when and capture the user name of the employee to a database so that I can build reports from it.
    This is more than web statistics. I need to be able to verify that the user actually visited the page.
    Any ideas and tips would be greatly appreciated!  I can't find an extension that works with ASP to help me with this.
    Crystal

    As much as I believe in Dreamweaver for corporate intranets, due to the typical structure, your best bet is Sharepoint Server with Sharepoint Designer.  You can track by the network login and do many things that would take a lot of programming for a Dreamweaver based site and it supports ASP much better than DW ever will because ASP is made by MS.

  • 10gR3 installation issue (#1): User Activity portlet not working

    I installed a clean 10gR3, full install in windows / sql server. I haven't installed anything that didn't come included, so no analytics / publisher / collab / etc. The documentation is somewhat lacking, but I don't think I did anything wrong.
    So when I added the User Status and User Activity portlets to a my page, the user status portlet works, but the user Activity portlet doesn't show any of my previous statuses.
    I looked in my Notification (CNS) database, and I can see my old status, so I know that they are getting in there correctly.
    Looking at PTSPY, there seems to be some issue with a login token (and yes, I did copy the value from PTSERVERCONFIG wtih settingid 65 into the configurator).
    the following is what is displayed in PTSPY when the portlet refresh button is clicked on the User Activities portlet. As you can see, there is a lot of 'guest user', even though I am logged in as administrator.
    ALI Logging Spy Version 6.1
    ** Log file written at 4-10-2009 11:50:51.
    ID     DATE      TIME      LEVEL     COMPONENT     APPLICATION     THREAD     LOCATION     MESSAGE
    ==     ======      ========      ====     =========     ===========     =====     ========     =======
    0     4-10-2009     11:50:25.327     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_6_0_203_0_100_43/ <ptLogMsgEnd>
    1     4-10-2009     11:50:25.327     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Entering HandleGatewayRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_6_0_203_0_100_43/ <ptLogMsgEnd>
    2     4-10-2009     11:50:25.327     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Current user: 1, Administrator <ptLogMsgEnd>
    3     4-10-2009     11:50:25.327     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.login.SSOAuthenticator     SSO is disabled globally. <ptLogMsgEnd>
    4     4-10-2009     11:50:25.327     Info     Core     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 203 and Class Id: 43 <ptLogMsgEnd>
    5     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     CSPPortletProvider.GetContentURL, content ID is 5, URL is http://house-2aojhum1o:21030/activityservice/useractivityfeed.jsf <ptLogMsgEnd>
    6     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     Portlet ID 203, User ID 1 = CSPPortletProvider.GetContent accessing [http://house-2aojhum1o:21030/activityservice/useractivityfeed.jsf] <ptLogMsgEnd>
    7     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     Portlet ID 203, User ID 1 = CSPPortletProvider.GetContent: Gateway timeout is set to 1200000 ms. <ptLogMsgEnd>
    8     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPRequest     CSPRequest : setting HTTP method to GET <ptLogMsgEnd>
    9     4-10-2009     11:50:25.407     Info     Core     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.core.TokenUtility     PTTokenUtility::CreateToken TOKENS: Creating token for: 1|1239378925| <ptLogMsgEnd>
    10     4-10-2009     11:50:25.537     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    11     4-10-2009     11:50:25.547     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Entering HandleGatewayRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    12     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    13     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Logging in as guest user: 2 <ptLogMsgEnd>
    14     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering attemptGuestLogin(), guest userid = 2 <ptLogMsgEnd>
    15     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering internalLogin() <ptLogMsgEnd>
    16     4-10-2009     11:50:25.557     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTSession     Connected as user "Guest" <ptLogMsgEnd>
    17     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.LoginHelper     Entering DoTasksAfterLogin() <ptLogMsgEnd>
    18     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTPersonalSettingsHelper     Entering CachePersonalSettings() <ptLogMsgEnd>
    19     4-10-2009     11:50:25.557     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 2 and Class Id: 1 <ptLogMsgEnd>
    20     4-10-2009     11:50:25.597     Warning     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Unable to find browser locale list to map locale to ui supported locale from accept-language header . Using default system locale. <ptLogMsgEnd>
    21     4-10-2009     11:50:25.597     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Setting user language based on supported locale of en-us from accept-language header <ptLogMsgEnd>
    22     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Current user: 2, Guest <ptLogMsgEnd>
    23     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Redirecting to login page due to insufficient privileges. <ptLogMsgEnd>
    24     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Redirecting to login space Login <ptLogMsgEnd>
    25     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.Redirect     Attempting to use SetSpaceCreateNew method with a null parent AActivitySpace. <ptLogMsgEnd>
    26     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.SSOAuthenticator     SSO is disabled globally. <ptLogMsgEnd>
    27     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     HandleGatewayRequest returning control to Interpreter to process login page. <ptLogMsgEnd>
    28     4-10-2009     11:50:25.597     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Leaving HandleGatewayRequest (returning control flow to the interpreter) - User ID: 2 <ptLogMsgEnd>
    29     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    30     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Current user: 2, Guest <ptLogMsgEnd>
    31     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Redirecting to http://localhost/portal/server.pt?redirect=http%3A%2F%2Flocalhost%2Fportal%2Fserver.pt%2Fgateway%2FPTARGS_0_0_206_0_0_47%2Fcns%2Frss%2F2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml&space=Login&cached=false <ptLogMsgEnd>
    32     4-10-2009     11:50:25.607     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - User ID: 2 <ptLogMsgEnd>
    33     4-10-2009     11:50:25.697     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt?redirect=http%3A%2F%2Flocalhost%2Fportal%2Fserver.pt%2Fgateway%2FPTARGS_0_0_206_0_0_47%2Fcns%2Frss%2F2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml&space=Login&cached=false <ptLogMsgEnd>
    34     4-10-2009     11:50:25.697     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    35     4-10-2009     11:50:25.697     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Logging in as guest user: 2 <ptLogMsgEnd>
    36     4-10-2009     11:50:25.697     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering attemptGuestLogin(), guest userid = 2 <ptLogMsgEnd>
    37     4-10-2009     11:50:25.697     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering internalLogin() <ptLogMsgEnd>
    38     4-10-2009     11:50:25.697     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTSession     Connected as user "Guest" <ptLogMsgEnd>
    39     4-10-2009     11:50:25.707     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.LoginHelper     Entering DoTasksAfterLogin() <ptLogMsgEnd>
    40     4-10-2009     11:50:25.707     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTPersonalSettingsHelper     Entering CachePersonalSettings() <ptLogMsgEnd>
    41     4-10-2009     11:50:25.707     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 2 and Class Id: 1 <ptLogMsgEnd>
    42     4-10-2009     11:50:25.717     Warning     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Unable to find browser locale list to map locale to ui supported locale from accept-language header . Using default system locale. <ptLogMsgEnd>
    43     4-10-2009     11:50:25.717     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Setting user language based on supported locale of en-us from accept-language header <ptLogMsgEnd>
    44     4-10-2009     11:50:25.717     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Current user: 2, Guest <ptLogMsgEnd>
    45     4-10-2009     11:50:25.717     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     Current space is Login <ptLogMsgEnd>
    46     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     Redirect after login QS param: http://localhost/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    47     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     current control is DefaultLoginControl <ptLogMsgEnd>
    48     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Displaying page Login <ptLogMsgEnd>
    49     4-10-2009     11:50:25.727     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.common.uiparts.PlumtreeDP     Displaying page layout Base Page using Page Layout with ID 40 <ptLogMsgEnd>
    50     4-10-2009     11:50:25.747     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.common.uiparts.PlumtreeDP     Displaying page layout Login Page using Page Layout with ID 46 <ptLogMsgEnd>
    51     4-10-2009     11:50:25.757     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - User ID: 2 <ptLogMsgEnd>
    52     4-10-2009     11:50:25.918     Error     Storybook Logger     activityservice.house-2aojhum1o.Administrator     http-21030-exec-3     java.lang.Class     Error in retrieving CNS feed: com.sun.syndication.io.ParsingFeedException: Invalid XML: Error on line 1: White spaces are required between publicId and systemId.
    com.sun.syndication.io.ParsingFeedException: Invalid XML: Error on line 1: White spaces are required between publicId and systemId.
         at com.sun.syndication.io.WireFeedInput.build(WireFeedInput.java:182)
         at com.sun.syndication.io.SyndFeedInput.build(SyndFeedInput.java:122)
         at com.bea.shaboo.impl.support.UserActivityBean.getActivityList(UserActivityBean.java:74)
         at com.bea.shaboo.impl.support.UserActivityBean.getActivityStreamModel(UserActivityBean.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:400)
         at org.apache.myfaces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:71)
         at org.apache.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java:532)
         at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:145)
         at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:378)
         at javax.faces.component.UIData.getValue(UIData.java:779)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.createDataModel(HtmlDataTableHack.java:350)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.getDataModel(HtmlDataTableHack.java:333)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.getRowCount(HtmlDataTableHack.java:75)
         at org.apache.myfaces.custom.datalist.HtmlListRenderer.encodeChildren(HtmlListRenderer.java:107)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:319)
         at javax.faces.webapp.UIComponentTag.encodeChildren(UIComponentTag.java:343)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:251)
         at org.apache.myfaces.taglib.UIComponentBodyTagBase.doEndTag(UIComponentBodyTagBase.java:55)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_t_005fdataList_005f0(useractivityfeed_jsp.java:442)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_h_005fform_005f0(useractivityfeed_jsp.java:247)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_f_005fview_005f0(useractivityfeed_jsp.java:178)
         at org.apache.jsp.useractivityfeed_jsp._jspService(useractivityfeed_jsp.java:108)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:654)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:445)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:379)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:292)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:415)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:352)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
         at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.RequestedUserFilter.doFilter(RequestedUserFilter.java:61)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.AccountCreationFilter.doFilter(AccountCreationFilter.java:57)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.KodoSessionFilter.doFilter(KodoSessionFilter.java:52)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.ShabooSecurityFilter.doFilter(ShabooSecurityFilter.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.InitializationCheckFilter.doFilter(InitializationCheckFilter.java:42)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
         at org.apache.coyote.http11.Http11NioProcessor.process(Http11NioProcessor.java:887)
         at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:696)
         at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:2009)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: org.jdom.input.JDOMParseException: Error on line 1: White spaces are required between publicId and systemId.
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:468)
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:851)
         at com.sun.syndication.io.WireFeedInput.build(WireFeedInput.java:178)
         ... 71 more
    Caused by: org.xml.sax.SAXParseException: White spaces are required between publicId and systemId.
         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
         at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
         at org.apache.xerces.impl.XMLScanner.scanExternalID(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl.scanDoctypeDecl(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:453)
         ... 73 more
    <ptLogMsgEnd>
    53     4-10-2009     11:50:26.128     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     CSPPortletProvider.GetContent: Receieved full response. Request state is [Processing of this request has completed successfully.] <ptLogMsgEnd>
    54     4-10-2009     11:50:26.128     Info     Transformers     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.transformers.TurboParser     found unique namespace token '$PORTLET_ID$' <ptLogMsgEnd>
    55     4-10-2009     11:50:26.128     Info     Transformers     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.transformers.TurboParser     found a token <ptLogMsgEnd>
    56     4-10-2009     11:50:26.128     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.GatewayContent     GatewayContent : constructing text response with status code 200 and Content-Type text/html <ptLogMsgEnd>
    57     4-10-2009     11:50:26.128     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Displaying page GatewayBinary <ptLogMsgEnd>
    58     4-10-2009     11:50:26.138     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Leaving HandleGatewayRequest (request completed) - User ID: 1 <ptLogMsgEnd>
    59     4-10-2009     11:50:26.138     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - pre filter terminated execution. <ptLogMsgEnd>

    I had the same problem. I identified some issues with the way this portlet works. There is a work around, but not a good one. To fix this portlet, I had to go into config manager, 'Aqualogic Notification Service -> RSS Feeds' and uncheck 'Gateway RSS Feed URLs'. This makes that portlet work properly, the side effect is that it breaks all of the RSS Feeds in collab. So, to get around that you have to go add a gateway config to all of the collab portlets' web services... I meant to submit a trouble ticket, but never got around to it. We aren't using that portlet currently, so I bailed on the work around.

  • How to log the user activity in JSF?

    How to log the user activity in JSF?
    e.g. the pages the user accessed
    searching criteria the user inputted...

    user080701 wrote:
    I need to write the info to database so that we can analyse which product most people seach for , etc.
    Can I write a filter to capture the request info and write the info to database?Of course. Although I would still advocate using logs. You can always parse them and put the data in a database after the fact.

  • How to get the user active stauts in jspdynpro

    How to get the user active status in jspdynpro.
    I want check weather a user is active or not (Collaboration Launch Pad functionality)
    in jspdynpage.
    Thank's in advance,
    Mr.Chowdary

    Hi Eddy,
    Here the scenario is to get the data of a field from the user defined table to pass the extracted values as a input to the XL reporter, which will be selected while generating the report.
    It would be great if you provide any solution for this problem.
    Thanks.

  • Issue running a User Activity Report for Lync

    When trying to run a User Activity Report, I am receiving the below error
    An error occurred during client rendering.
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'CallList'. (rsErrorExecutingCommand)
    @_Endtime is not a parameter for procedure CdrP2PSessionList.  
    Any ideas on this error?

    If this is happening after applying CU6 then follow
    FIX: Monitoring Server Reports experiences poor performance in Lync Server 2010
    http://support.microsoft.com/kb/2703324
    if it gives any error when trying to update the backend database (in enterprise pool) then provide the -databasepaths parametr as explained at the end in this article
    http://technet.microsoft.com/en-us/library/gg399044.aspx
    DatabasePaths
    Optional
    String
    Specifies the drives and folders where data and log files can be stored; for example: -DatabasePaths "D:\Logs","E:\Data". 
    Gautam.

  • Oracle 9i and user activity logging

    Hi,
    i am new on the matter but i have to trace the user activity and build a small application.
    those are the specifications :
    i'm using oracle 9i database version on 64 bit
    the O.S. used is Unix Aix 5.2
    for each data base we using i have to trace the user activity all of them, about 3 DB + application
    i have create some some triggers to get some information, but still the work is there :
    create trigger ... after logoff on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after ddl on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after logon on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after servererror on schema .. begin insert into table xx_tab ( ,,,,) end ;
    Here is the issue i am faced to /
    how could we simulate a create trigger ... after DML on database or schema ? as far as i know we trigger a DML only on a specific table. Is there any possibility to trigger a DML on any database object or schema?
    for the moment i don't know if it 's the good think to do but, but it's a try, if you have any idea or other methods to trace the user activities on DB, please don't hesitate to get me informed.
    Rgds,
    Paul

    This is the forum for the SQL Developer tool. You'll get more answers in the General or SQL And PL/SQL forums.
    Regards,
    K.

Maybe you are looking for

  • Success updating my apple tv! Give it a try

    All attempts to update my apple tv have ended in failure. Wired ethernet, just a usb cable... Last night I unplugged the ethernet cable from my airport extreme and plugged the apple tv 2 directly into the back of cable modem and it finally updated. N

  • Vendors: One-time Vendor

    Master Data u2013 Vendors: One-time Vendor Plz. suggest how To control creation of One-time Vendor by creating authorisation groups and assigning to limited users ids. How to cofigure it..... Rgds, Navin

  • Dropdown lists or F4 (input help) on custom field

    I created a custom field and would like to either add a dropdown or an F4 input help.  I know how to do the input help  or the dropdown, but I would like the user to type in their own data on the field if they don't want to select from the list provi

  • Cancel new order

    Hi, I placed an order incorrectly. I have already spoken to someone on the phone to cancel, but the order still shows as "processing" in my account. How quickly can I cancel the order to place another one? Thanks

  • Use the system lang of AIR applications auto update.

    Hello, I recently used the auto update framework for my AIR application, this works fine but i have a small problem. I made some reasearches and i found AIR uses the system lang by default. When i install my package for the first time, the lang is my