A report for time spent on website?

Is there a report within SawMill that I can pull that would show the amount of time that an authenticated user is spending on a website?
Currently using S650 with 5.5.2-036 for Web

Joell,
There is a report by default:
Resource -> Time by User Name
This should provide the data that you are looking for. However, please be advised that this is NOT an accurate science.
Sawmill can only see when a request for a website is made. It cannot actually know how much time a user has spent looking at the website (eyeball time).
Sawmill makes a best guess using it's own algorithm and metrics to be as accurate as it can be, which depending on the situation, may not actually be accurate.
For example, if a user goes to a website once and then never goes again, how do you gauge how long they spent browsing it?
According to the logs, the requests took 1 second to load. Sawmill may assume that a single request with no subsequent requests is equal to 5 minutes of browsing.
The user might have spent 30 seconds and then closed the browser. Or the user could have downloaded the entire script to Macbeth and read it all day long.
I cannot provide more specifics on the actually algorithm used by Sawmill, but I did want to make you aware of the caveats on assumed time based reports.

Similar Messages

  • Analytics report for time spent on your portal by any user

    Hi all,
    I am working on 11.1.1.6
    One of my requirement is that I want to display an analytical report on my page which will display the time spent by users on my portal application.
    Like we have OOTB portlet for logins, page trtaffic and all. Is there any OOTB portlet available for the above requirement ?
    If not is there any table in activities schema which will give me this information ?
    Please reply.
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Take a look at WebCenter Analytics.
    Good starting points are:
    http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_analytics.htm
    http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_app_aschema.htm#JPSDG10757

  • Report for time log on detail for each employees in SAP ABAP-HR report

    hi experts,
          please help me .how to create a report for time log on detail for each employees in SAP ABAP-HR report.please help me.
                                                      thank you

    Hi,
    For Time Management Infotypes , If you want to read the data using macro you need to use the Macro called RP_READ_ALL_TIME_ITY
    Example:
    DATA: BEGDA LIKE P2001-BEGDA, ENDDA LIKE P2001-ENDDA.
       INFOTYPES:  0000, 0001, 0002, ...
                         2001 MODE N, 2002 MODE N, ...
         GET PERNR.
       BEGDA = '19900101'. ENDDA = '19900131'.
       RP_READ_ALL_TIME_ITY BEGDA ENDDA.
       IF PNP-SW-AUTH-SKIPPED-RECORD NE '0'.
          WRITE: / 'Authorization for time data missing'.
          WRITE: / 'for personnel number', PERNR-PERNR. REJECT.
       ENDIF.

  • Report for time events

    Hi Experts
    i facing a problem which is i want a report for the time events which out time evaluation
    how i can get this report please advice

    Hi
    this transaction is working in case a will run Time evaluation if am right or not please advice
    really i facing a big problem
    thank you for your cooperation
    Edited by: Haseeb Nagieb on Aug 28, 2008 11:02 PM

  • Statutory Reports for Time Management

    Dear Expert,
    Our client based in West Begal, India has asked these staturory reports. Please tell us whether SAP provides these reports or not.
    *Register under The Factories Act 1948     *
    SrNo     Report Name     Form.No.
    1     Register of Adult Worker     Form.No.15
    2     Register of Leave with Wages     Form.No.18
    3     Muster Roll     Form.No.28
    4     Register of Comp.Holidays     Form.No.12
    5     Overtime Register     Form No.13
    Register  under The Minimum Wages Act ,1948     
    SrNo     Report Name     Form.No.
    1     Register of Fines     Form.No.I
    2     Register of Ded./Absence     Form.No.II
    3     O.T.Register for Worker     Form.No.IV
    4     Muster Roll     Form No.V
    Any valuable input will be helpful.
    Regards
    Ajay Kumar

    Dear Expert,
    My client has specific rule that on every 3rd Late coming half CL should get deduct from quota.
    I wrote PCR and have value in daily balance for deduction from cl quota. now what to do to deduct from quota. the deduction should revert if the data is regularise through 2001/2002/2011 .
    I tried to use through function UPDTQA.. but this is deduction every time if i force run the employee.
    Any valuable input will be helpful.
    Regards
    Ajay Kumar
    Edited by: Ajay Kumar on Feb 8, 2011 2:36 PM

  • A Report for top spent with Given Sitecode and Year

    Customer Code
    Name
    Spent2011
    xyzaa
    Jon
    700.00
    nmcb
    Stuart
    400.00
    bncx
    Prakash
    300.00
    nmsd
    Srinu
    200.00
    opkls
    Kumar
    90.00
                      Table above as retrieved data For
       Site 01
    Rank the customers by top spent for 2011 or 2012 or 2013 or 2014
    Ex: A Financial year 2011 to be considered between the dates April 1<sup>st</sup> 2011 and Marc 31<sup>st</sup> 2012
    Customer table has the complete details of the customer 
    and with unique customer code
    Order Table has the details of the order placed and the Order Placed Date
    Order Item Table has the Gross   price of each Item.
    Site Table can be joined with Order Table (has a common column)
    A  T-SQL query for  the SSRS report needs to be build with Inputs  site code and Year

    Hi Visakh,
    Please find the below script
    --DECLARE @CustomerId varchar(255) = 'XX03045651';
    DECLARE @STOREID VARCHAR(10) ='XX01'
    SELECT
           OrderNumberStr,
           CustomerCodeStr
    INTO
           #Sales
    FROM
           OrderTable
            lEFT JOIN
     SiteShopTable
           ON
    SiteShopTable.SiteCodeStr=LEFT(Ordertable.OrderNumberStr,4)
    WHERE
           LEFT(Ordertable.OrderNumberStr,4)= @StoreID
                                AND
           LEFT(Ordertable.OrderedAtSiteCodeStr,4)=@StoreID
    SELECT
           #Sales.CustomerCodeStr,
           SUM(OrderItemTable.FinalPriceGrossMoney) AS TotalSpend,
           SUM(OrderItemTable.QuantityOrderedInt) AS NoOfItems
    --INTO
         --  #Spenders
    FROM
           OrderItemTable
           INNER JOIN
           #Sales ON OrderItemTable.OrderNumberStr = #Sales.OrderNumberStr
    GROUP BY
           #Sales.CustomerCodeStr
    ORDER BY      
           TotalSpend DESC
    SELECT
           distinct OrderTable.CustomerCodeStr,  
           '2014'=
           Case
           when year(Ordertable.OrderPlacedDateSdtm) = '2014' THEN sum(isnull(TotalSpend,0))  end,
           '2013'=
           Case when year(Ordertable.OrderPlacedDateSdtm) = '2013' THEN sum(isnull(TotalSpend,0)) end,
           '2012'=
           Case when year(Ordertable.OrderPlacedDateSdtm) = '2012' THEN sum(isnull(TotalSpend,0)) end ,
            'Before2012'=
           Case when year(Ordertable.OrderPlacedDateSdtm) < '2012' THEN sum(isnull(TotalSpend,0)) end
             --SUM(IF(year(Ordertable.OrderPlacedDateSdtm)=2010,orderitemtable.FinalPriceGrossMoney,0)) AS fy_2010
       --  , SUM(IF(fy.year=2011,i.invoiceValue,0)) AS fy_2011
       --  , SUM(IF(fy.year=2012,i.invoiceValue,0)) AS fy_2012
      FROM
    #Spenders
    left join
    OrderTable  
    on #Spenders.customercodestr=OrderTable.CustomerCodeStr
    GROUP BY
            OrderTable.CustomerCodeStr,
           Ordertable.OrderPlacedDateSdtm
    order by
    OrderTable.CustomerCodeStr
    drop table #Sales
    drop table #Spenders

  • MSS Report for Time Leveling RCATSCMP fails to run

    hi,
    Using MSS ECC 5 with NW04 back end. 
    When I run the timeleveling report that is backed by program RCATSCMP  instead of running the report I get the dataentry screen - no errors reported though - not like when the data is incorrect...
    All the other reports autorun and display the results screen
    I've tried ST01 tracing can't find any reason why...anyone seen this before....any pointers for where to look?  running out of ideas...
    TIA,
    J

    I would recommend looking at the ExecutionLog views.  There is a pretty good article on how to determine where the slowness is coming from by looking at these views...
    http://msdn.microsoft.com/en-us/library/ms159110.aspx
    If it is truly failing and producing an error, they all get logged to the SSRS logs on the server.  That should also be a source to look at.  You will have to work with whomever runs the SSRS instance to look at the log files on the server and
    to access the views on the databases.

  • Bex Report for time dependent master data

    Hi Gurus,
    I hav created a report based on a mutliprovider having 1 DSO and 2 CUBEs with has a common characteristics 0SALEEMPLY which is timedependent master data
    it has following records
    Validfrom===== To======== SE == Division
    05.05.2006 ===14.10.2007 == 709== 32
    15.10.2007 ===19.10.2007 == 709== 33
    20.10.2007 === 31.12.9999 ==709 ==34
    In report wen i fetch the data month wise it shud show the division(time dependent) according to its validity in master data
    But in my report it shows division 34 in all the months
    what is wrong here and do i need to hav any restriction at query level ?

    Hello Experts,
    please update

  • I have an iPhone 4S, iPad and MacBook Air.  I'm looking for an app or program where I can track time spent of specific projects each day and also document details of each project.  Is there anything available that is synced through iCloud?

    I have an iPhone 4S, iPad and MacBook Air.  I'm looking for a program or app that I can sync though iCloud that will allow me to us all of these devices to track time spent on projects each day along with the ability to add specific information about each project.  Any suggestions are appreciated! Thanks!

    I recommend you consider Omnifocus.  It is a task management program which runs on the Mac, Iphone & Ipad. I use it for task management and project management.  It let's you store additional information as well.   I sync all three devices through a Mobile Me account and I can enter data on any device and it is available on all devices.  I believe you can also sync through Dropbox.  I'm not sure that you can sync through iCloud yet.  The link to their website is:  www.omnigroup.com.  There may be less expensive alternatives, but this one meets my needs and syncs very well across all devices.

  • Reporting annoying issues for the entire Microsoft website (MSDN, forums, all)

    Is there any place where I can report bugs with how the Microsoft web sites behave? I can only find forums and "Microsoft Answers" categories about single products that Microsoft makes, but nothing about the infrastructure itself.
    For about two weeks now, I am required to log into my account every few hours whenever I access any Microsoft website. This includes MSDN help content, forums, or other resources. I need to login after opening the website through F1 help in Visual Studio
    as well as accessing a microsoft.com link from anywhere else like a web search or a direct link from web or an application.
    Auto-complete does not work either. My browser (Firefox) does save the password, but it never fills it into the form. Other people have already noticed that
    Microsoft applies some dirty tricks here. And even if the login is remembers for a moment, it's slow as hell. It takes a second or two to load the login.live.com page (which is not what I wanted to see), then it sits there for some more seconds before going
    anywhere. Other login services like Google or StackOverflow manage to log me in all within one second and most of the time I don't even see it.
    And then there's still that insecure SSL-to-non-SSL-submit warning that only occurs in other browsers then IE. Has anybody cared about that in the last couple years?! I'm not getting it now, probably because I'm not logged in anymore. It all slowly falls
    apart, piece by piece. Next step is probably losing my data or not loading it at all.
    THIS – IS – ANNOYING! And it really makes me feel like I don't want to use Microsoft products anymore (because even good desktop applications are connected to that silly website). I have opened a
    Microsoft Connect ticket for a part of this issue (it's grown bigger since then), but this ticket is totally ignored. If microsoft.com went down, they'd certainly care within minutes or hours. This bug is not even regarded in
    weeks!
    So do I have to write a postal letter to the president of the whole company or do they have support staff for that?! Do they have anybody who is capable of maintaining their website? It's really frustrating how Microsoft has a web presence that is worse
    than what our first-year trainees come up with. It's full of bugs and this is currently only the most relevant one. Do they even care about how the world sees them? Or is Microsoft currently preparing (and even failing) to move out of business?

    The brandings are fun. Here's this same thread in a bunch of flavors:
    https://social.technet.microsoft.com/Forums/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    https://social.msdn.microsoft.com/Forums/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    https://social.microsoft.com/Forums/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    https://social.technet.microsoft.com/Forums/exchange/en-US/cf19ed78-267b-4313-9c49-bd3027f0eb8e/reporting-annoying-issues-for-the-entire-microsoft-website-msdn-forums-all?forum=whatforum
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Metrics "Database Time Spent Waiting (%)" is at ... for event class "Commit

    Hi guys
    I'm getting this warning every 20 minutes from Enterprise Manager 10g: Metrics "Database Time Spent Waiting (%)" is at 67.62891 for event class "Commit". My database is an Oracle 10g 10.2.0.4 (Linux x84_64) with dataguard, one physical and one standby networked at 100Mbit. I have 3 groups of 50M redo log with a low volume of transaction for now. Here are some metrics numbers:
    SQL> select sum(seconds_in_wait),event from v$session_wait group by event;
    SUM(SECONDS_IN_WAIT) EVENT
    121210 SQL*Net message from client
    0 Streams AQ: waiting for messages in the queue
    18 wait for unread message on broadcast channel
    6 LNS ASYNC end of log
    30 jobq slave wait
    37571 rdbms ipc message
    384 smon timer
    35090 pmon timer
    I tune the my listerners for Dataguard using the documentation. I don't know what to tune anymore, is someone has a clue.
    Thanks,
    Chris

    cprieur wrote:
    Metrics "Database Time Spent Waiting (%)" is at 67.62891 for event class "Commit"
    I'am also getting this message at a regular time:
    Metrics "Database Time Spent Waiting (%)" is at 64.09801 for event class "Network"
    The report, I was sent only to indicate the time spent on: SQL*Net message from client
    I believe that these metrics are explained here (near the bottom of the page):
    http://download.oracle.com/docs/cd/B19306_01/em.102/b25986/oracle_database.htm
    There are only two wait events in the Commit class (on 11.1.0.7):
    log file sync
    enq: BB - 2PC across RAC instances
    log file sync waits happen when sessions issue a COMMIT or ROLLBACK. Sessions will wait on this event until LGWR completes its writes to the redo logs (LGWR will likely wait on the event log file parallel wriite while waiting for the write to complete). I believe that your DataGuard configuration may contribute to the long waits experienced by LGWR, and it may be made worse by the network connection.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28294.pdf
    "Maximum availability - This protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. Transactions do not commit until all redo data needed to recover those transactions has been written to the online redo log and to at least one standby database."
    So, if Maximum availability is configured, the sessions will have to wait for the redo to be applied to the remote database.
    At the system-wide level you will almost always be able to ignore the SQL*Net message from client wait events. At the session level this wait event has a more significant meaning - the client computer is not actively waiting on a response from the database instance - the client is either sitting idle, or performing client-side processing.
    Sybrand, if he joins this thread, will likely be able to provide a more complete answer regarding DataGuard's contribution to the Commit wait class.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Database Time Spent Waiting (%) for event Commit

    I have a 10G R2 database that has started to report this alert every minute.
    Metrics "Database Time Spent Waiting (%)" is at 61.25661 for event class "Commit"
    I have not changed any metric configuration and the really weird thing to me is that the database is completely idle. I am having difficulty finding good documentation on the Metrics and alerts. I read something that seemed related and it said the commit class has only one alert and that is for redo log write confirmation. There are no users other than myself connected to this database and I am just monitoring with the EM. Any ideas?
    -Tim

    Update...
    The IBM rep said he could send someone over for $1500 day. Right. So I read over the DS4300 manuals again but nothing really stood out. However I thought it would be worth noting that when the write cache was turned 'off' for the logical with the redo logs the 'log file sync' wait event would stay below the warning threshold (50%) and average about 18%. With the write cache 'on' the wait event would always be above the warning threshold. Performance of the database overall is still degraded with either setting. I am going into production with the redo on a local mirror. Additionally I tested segment sizes of 64 ,32, and 16kb. The 16kb did not effect the 'log file sync' waits but proves to be excellent for transaction performance overall.
    -Tim

  • ABAP: Developed new Report for Summarized JIT (Just In Time) calls

    Hi to all,
    Can anybody please tell me about the following:
    ·     Developed new Report for Summarized JIT (Just In Time) calls: This report is for Delco Singapore needs all Summarized JIT calls created between selected dates to be closed. If JIT call quantity is 0 and GR quantity is also 0, then GR flag for JIT call to be checked and JIT call will not be shown open. If the JIT call quantity is greater than zero and GR for JIT call quantity is zero then JIT call quantity made as zero and GR flag for JIT Call to be checked. Once it is checked the JIT call will not be shown in Open.
    Thanks in advance.
    Regards
    Monalisa

    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region
    You would do all these steps for your advanced search page as well, so that in your main jsp, you can call asfPage.setAdvancedSearchPage() with the attribute name of your advanced page.
    What I Still do not know is:
    (1) My main page keeps coming up saying that there is no default query defined for it. How do you create a default query for a report?
    (2) How to get the personalization to work.
    Can anyone help?
    Thanks!

  • Firefox 3.6.8 on Windows XP crashes each time after it is opened. It remains open for about 1 minute and closes regardless of the page it is on. Windows Expl is having the same problem. I have a submitted a crash report each time w/same email.

    I have sent a crash report each time with my hotmail address. That should include the specifics you are looking for. I am sending this email from personal laptop so I do not have those specifics at this time.
    Using ccleaner and Macafee I have run scans and can detect no virus or malware.

    See this -
    https://support.mozilla.com/en-US/kb/Firefox+crashes

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

Maybe you are looking for

  • Moving data from pc to mac with external hard drive

    I moved my tunes and pictures from my pc to ext hd. Found hd on my mac, but nothing shows up in the hard drive folder on my mac... how come? what did i do wrong? Thanks, M

  • Unable to launch safari on my mac 10.8.2 after i tried to uninstall

    Hi, I have tried to uninstall the safari on my mac but it didnt went success after that i have installed the safari 6.0.2 but even after it is installed successfully iam unbale to launch the safari. Please provide how to clean uninstallation of safar

  • I can't use Color because it crashes every time it opens! Why? Error inside

    I have the newest largest model MacBook Pro, the highest processor speed available, the newest version of Final Cut Studio (7), all updates installed, but Apple color crashes anytime I try to use it! I switched from PC for a more stable system but am

  • Help with creating a shuffleList function...

    I have the following function, which creates and populates a vertical column of draggable clips and populates the dynamic text boxes within the movie clips with data from an xml file, effectively creating an ordered list of movie clips The code works

  • Track pad doesn't work

    I initially had my windows XP up and running. I sent my computer to apple to fix something. When it came back and I boot windows the trackpad won't work and even if I try to uninstall and reinstall it doesn't work. Any ideas?