CR Report Reload Duration Tracking

Hi,
I am reloading crystal reports thru BI Launchpad. Report is scheduled to deliver PDF output to a file location and option selected NOT to save instance in the History. This is a recurring report. After each successful reload PDF gets saved to destination folder and there is no success record in the history. Now I need to find out how long this report takes to refresh everyday. There is no history in BI Launchpad, Instance Manager also does not show that info. Where should I look for to get the reload duration? Any help on this would be appreciated. Thanks.

Have you check out Auditing report for the report scheduling info, including the duration?
Note that Auditing Data Store is separated from CMS repository, and is not affected by "NOT to save instance in the History".
Regards,
Jin-Chong

Similar Messages

  • How to get the Reports of Change Tracking Table in MDM?

    Hi!
    Please tell me how to get the reports of Change Tracking Table in MDM which is a System table, directly from MDM without using any interface.
    Thanks in advance for the reply.
    With Best Regards
    Devendra Pandey

    Hi Devendra,
    MDM can track changes on tables and fields. <u>The level of change tracking, and which tables/fields to track, are configurable in the MDM Console</u>. MDM opens a new database on the same database engine as the MDM repository and writes all change records to this database.
    For information of various steps you can visit
    <a href="http://help.sap.com/saphelp_mdm550/helpdata/en/45/c7b20339ee570ae10000000a114a6b/content.htm">this URL</a>
    Regards,
    Krutarth

  • Confirmation report for shipment tracking

    Dear experts,
                       how can i  generate a confirmation report for shipment tracking-vendor wise  ???
    Regards,
    Durgesh Tambat.

    Hi Durgesh Tambat;
    Please search in SCN before create a thread , i hope that you will reach your solution.
    Regards.
    M.Ozgur Unal

  • Report for Print tracking

    Dear All,
    We want to track  the username and no. of times that a particular SAP report has been printed so as to avoid wastage of stationaries.
    I have tried a lot with no fruitful results. Please suggest.
    with best regards,
    Sandy

    Hi Sandy,
    You can get spool statistics from transactions SPAD and ST03. In SPAD click on Admin and then click on Print Request Overview. That will give  you some stats on print and spool requests. You can display de data by user, printer, etc.                                                                               
    In ST03, double click on Spool Statistics. There you can see number of requests, pages, response time, size of the printout, and a lot more spool activity information.   
    Another workaround for getting the stats you need.                        
    There is one requirement: you must have the spool requests present in your system for the statistical analysis you want to make. That means that you are not deleting the spool request after the printout.                                                                               
    If you have them, proceed as follows: Go to SP01 and display the spool requests for the client/user/date/etc... that you want. Then, go to the menu Settings -> Layout -> Current and add the columns: "Output device"  and "Host printer" to the left side of the screen. Click Ok. That will show you all the printouts for the selection options. There, you can create totals and subtotals by user, date, printer (for LOCL, you need the host printer column). You can download the contents of the list to an excel file and create your own statistics.                                                                               
    If the workaround above does not work for you, you can enable the spool job statistics, but it means that if you did not have it enabled you cannot retrieve statistics from the past, because the statistics are created when the spool request is deleted by program RSPO1041.  Please check the procedure to activate the spool statistics in the online documentation, for instance at:                                                                               
    http://help.sap.com/saphelp_470/helpdata/en/e0/989de87a6111d39a1d0000e83dd9fc/frameset.htm    
      b.rgds, Bernhard

  • How to created a new report in content tracker report?

    Hi
    I need to created a new report that show who modified the document's metadata and when, but I have never used Content Tracker and I do not know how.
    Appreciate the help you can give me.
    Thanks.

    Hello,
    The content tracker and ContentTrackerReports components can be installed in UCM server by simple clickable options. Below are the steps to install the Content tacker and Content report.
    Steps:
    1. Open the UCM instance with admin
    2. Click Admin Server under Administration link.
    3. Click Content Tracker and ContentTrackerReports checkbox ( under Document Management)
    4. Now Click the update button at the bottom.
    5. Restart the UCM server instance to see the changes.
    Now you will see an option for Content Tracker Reporting. It has some default reports.
    Let me know how it goes. If you need.... will explain how you can create your custom reports.
    If its helpful then please mark correct or helpful answer.
    Thanks,
    MAK

  • Time Duration tracking

    Hi ALL,
    I need to get total time duration of my user in my application. I got maximum time duration he has spent for a month from the below sample query .
    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    Date parseFinalTime=null;
    String totalDuration = "";
    long totDuration=0;
    String siteDuration="";
    String masterquery = new StringBuffer("SELECT max(TSIE52_SESSION_DURATION)  from STSIE52_USER_SESSION ").toString();
    ResultSet subResultSet = getResultSet(connection, masterquery);
    while (subResultSet.next()) {
    parseFinalTime = sdf.parse(subResultSet.getString(1));
    totDuration =parseFinalTime.getTime();
    totalDuration = sdf.format(new Date(totDuration));
    System.out.println("siteDuration---------------->::" +totalDuration);
    }The output I got as below:
    siteDuration---------------->::00:00:24
    siteDuration---------------->::00:00:05
    siteDuration---------------->::00:00:09
    siteDuration---------------->::00:00:14
    siteDuration---------------->::00:51:33
    siteDuration---------------->::00:16:42
    siteDuration---------------->::00:00:05
    siteDuration---------------->::00:00:25
    siteDuration---------------->::00:00:05
    siteDuration---------------->::00:00:10
    siteDuration---------------->::00:00:09
    siteDuration---------------->::00:03:02
    siteDuration---------------->::00:00:18
    siteDuration---------------->::00:00:11
    I need to total all the times mentioned above and get the result as total duration time. How it is possible in java? Or is any other way that the desired output can be got from the sql query itself. Appreciate your help.

    JAMon does exactly this and more. Whatever label you pass to the start method later shows up in a report with the times aggregated (hits,total time,avg time, min time, max time and more). jamon is easy to use, open source and fast. For servlets you can use the jamon servlet filter and monitor these stats for each servlet without any code changes on your end (just add to your web.xml and make jamon.jar available).
    jamon 2 was just released this weekend and it has some new powerful capabilities.
    Having said that I would think your particular case would be better solved by the database with a group by clause.
    http://www.jamonapi.com
    Something like the following could work. Note I am also timing the code with jamon.
    import com.jamonapi.*;
    Monitor mon=MonitorFactory.start("myCode");
    long totDuration=0;
    String masterquery = new StringBuffer("SELECT max(TSIE52_SESSION_DURATION)  from STSIE52_USER_SESSION ").toString();
    ResultSet subResultSet = getResultSet(connection, masterquery);
    while (subResultSet.next()) {
    parseFinalTime = sdf.parse(subResultSet.getString(1));
    MonitorFactory.add("totalDuration", "duration",totDuration);
    mon.stop();

  • Region Report reloading with wrong data

    Hi all,
    I'm having an odd problem with APEX that I'm hoping somebody could help with.
    I have a region report containing 30 text fields, VALUE_1 to 30. The report contains several Validation rules and when submitted with no errors it works fine. However, when any of the Validations picks up an error, the page reloads as expected with the inline error text showing fine...but the text in the VALUE_7 field has been copied into the VALUE_17 input field (so both fields are displaying the same text). The data in all of the remaining cells displays fine. I've checked all of the obvious report and column attributes but can't see anything wrong and I'm happy that the copied data in the VALUE_17 field is not coming from the database.
    Can anybody point me in the direction of things to try? Can a report become corrupted or are there known report issues with my version of APEX? (v4.0.2.00.07).
    A large amount of Googling hasn't shown any similar problems.
    Many thanks,
    ~H.
    PS: Apologies for the username, the Preferences option refuses to admit that I've changed it!

    Hi Hinden,
    Is your report based on a table or a collection? Normally if it is based on a table the report would revert back to the original values of the table, when you first went to this page, if the validation fails. If it is based on a collection then you need to check the code where you fill up your collection, my guess is you insert the wrong values there.
    Regards,
    Joni

  • Need a report created that tracks how long users are logged on SAP.

    Hi Abapers,
    is there any report  that tracks how long or how often users are logged on SAP.
    I mean total time that the user had been logged on sap system.
    Pelase provide me any related tables or T.code apart from usr02 whcih has last log on date and time.
    Thanks in advance ..

    Check Prg: SAPMSM20

  • Discrepancy in report execution duration

    Hello,
    Everyday we are executing audit reports which tells us report execution time for all our daily scheduled reports. Here we have observed some discrepancy between the time shown in the instance history verses auditing report's data. For example, if XYZ report took 120 seconds to execute, our auditing report shows 110 seconds only (-10 sec difference); however instance status in report history shows 120 sec only.
    Here are environment details:
    Product: SAP BI 4.0 SP6 Patch 6
    Server OS: Windows Server 2008 R2
    CMS DB: Oracle 11g R2
    Auditing DB: Oracle 11g R2
    We would like to know why there is a difference? Please advise!
    Regards,
    Daya Jha

    Issue resolved after doing multiple activity.
    - Adding 2 new cluster in PRD environment, After refering Server sizing Guide from SAP
    - Adding 4 new Web Intelligence Processing Server in PRD environment
    - Assign Static port in all 4 Nodes, Previously it was Dynamic Ports
    - Proper spiliting of APS as per SAP APS Sliting KBA (1792286 ,1694041)
    - Change Maximum Connection Paremeter in Web Intelligence Processing Server, Because we have more Web Intelligence Business user to view the Web Intelligence reports.By Default SAP provided 50 Connections.
    - Change in Tomcat Parameters like
    Parameter                Old Value      New Value
    XX:MaxPermSize      384 M          512 M
    Maximum Memory     2,048           4,096
    maxThreads              200              900
    Thanks,
    Daya

  • IMovie 11 dropped my audio after update. Deleted and reloaded music track and still no music at all. No files moved or touched. No changes made except update. What's up?

    Argh. Just spent a week organizing and editing the music for pics and vid and now imovie does not have any audio except for my original video clips. What gives?

    Lots to be excited about. BUT...Just updated to 8.1 on one of my computers to test it out...
    Sadly, the following issue is NOT fixed for me. Is it with new projects only?  I haven't started a new project on 8.1 I've only opened an old project but the issue that I'm referring to which involves also a delay/freeze of anywhere from a few seconds to a MINUTE while the render bar goes from yellow to red and then back to yellow is still there. Boo.
    On the list above...
    Switching between sequences can turn the render bar red.
    This issue is incredibly easy to replicate. I really do hope it gets fixed. Here are the steps:
    1) Create two sequences with multiple short clips (the more clips the better)
    2) Make sure GPU acceleration is enabled.
    3) Add warp stabilizer to the clips in both sequences. Again, the more clips the longer the delay/freeze will be as the render bar goes from YELLOW to RED and then eventually back to YELLOW again.
    4) Hit SAVE.
    5) Now, toggle between sequences. You'll hit a short delay with a few clips stabilized and a LONG delay with lots stabilized. In my case this delay is around a full minute. The render bar will go from YELLOW to RED and then back to yellow...eventually.
    6) Toggle back to the original sequence and the delay occurs again.
    7) Once you've toggled between sequences and have gone through this delay, that's it, there is no longer a delay...UNTIL...(and here's the big kicker)...until the project is SAVED again. After that the issue returns when you toggle between sequences. Both saving manually and AUTOSAVING cause this issue. No way around it except not editing with GPU acceleration.
    Not sure what the issue is...caching issue when saving maybe? Either way, it stinks and it's still there in 8.1. Big bummer.
    Again, lots to be excited about with this release but I really was hopefully this specific issue was resolved.
    Sigh.

  • Manual report( to track recent login with user id)

    Hello,
    I want a report where I should be able to track the users id and their recent login/out to BPC Server (via any module Admin, Excel, Web). I am in BPC 5.1 
    I know this can be tracked via who is online in BPC Admin but the list is showing the name of the users who have logged in through BPC Admin but not via Excel, web.
    I want to create a report  manually to track the list of users who have last logged in to BPC via any form. How can we create this as report manually? Do we have any EV functions to do this? Please let me know how we can do this.
    Thanks
    Vijay Venkatesh

    Hi Vijay,
    Restricting the entry to BPC excel or Web through only Admin is not feasible. The context from where I am coming is, accessibility to excel directly comes in with the installation of BPC Office. So, this means that if BPC Office is installed, the client will have the access to enter BPC for Excel directly. Feasibility of restricting the direct entry is not possible.
    The user activities are stored in one of the tables in SQL, from where BPC Admin gets the detail about which user has logged in to the system. If you can create a reprot to fetch the details from that table, then it might be feasible to get the data in excel. However, this needs to be done outside BPC scope, since, BPC doesnt have any function to fetch these kind of results. The creation of this kind of custom report can be very complicated. However, I am not completely sure whether this is feasible or not.
    Alternately, You can try with Audit Activity Report also. This will give you some amount of information about user activities.
    Hope this helps.
    Edited by: nilanjan chatterjee on Oct 23, 2009 3:00 PM

  • Content Tracker Reports Query file modification issue - Custom Report

    Hi All,
    I was trying to generate a custom report using Content Tracker. I was successful in doing so. However, I found that sometimes it does not pick up the updated query file of Content Tracker reports.
    I made a change in my query:
    from SELECT * FROM Users to
    SELECT dname FROM Users
    the change is written on the file but when i generated the report from C.T. UI, it's still showing me the old results having all the columns. Tried bouncing the server as well, but no use.
    I also added a new query 24 hrs back (as SELECT count(*) As UsersNum FROM Users), it's still not recognizing it and giving error as Failure of server APACHE bridge: No backend server available for
    connection: timed out after 10 seconds or idempotent set to OFF;
    and the log says,
    Unable to execute service SCT_GET_DOCUMENT_INFO_ADMIN and function sctExecuteQuery.
    Unable to create the result set for query '(null)'. SQL statement to execute cannot be empty or null
    What could be the resolution of this issue?
    I am using UCM 11g + SSXA.

    Server bounce.
    Issue is not file update but some other issue, ongoing in another thread by Me.

  • Information about Content Tracker Standard Reports

    Hi,
    I´m attempting to obtain access stadistic from the standard reports of Content tracker but I cannot understand as it calcucates the accesses of the users.
    I select the standard report "Users by User Type" , select the type "Internal" and I obtain the list of all of the internal user who has acceded to content items. I know that the Content Tracker only show the access to the content that has been opened, but in this list I dont find the name of a user that I am sure that it has opened one document. The list show 0 access for this user.
    However, if I find the document that her has openend, and display in Actions display "View Historial Access," I see that her has 3 accesses in this content item.
    I need to obtain reports of % of use of all departament users and I not find de standar report that show me completed access.
    somebody can help me?

    Hi malky,
    Thank for your answer but I cannot understand because in the Content Tracker Administration Guide, Oracle says the following thing:
    Note: Only users that physically open a content item are included in the Content Tracker
    Report Generator’s compiled results. The opened content item can be the web location file
    +(the absolute path to the content item), an HTML version (by using Dynamic Converter),+
    or the actual native file. Users that open only the Content Information page are not
    included in the tracked data.
    some idea about this?
    thanks!

  • Service Level tracking summary report/ Error subreport

    Hi Everybody,
    I have SCOM 2012 SP1 RU2, after apply the RU2 and import the .mbp when I try to run the report Service Level tracking summary report I get this message:
    Any Idea?
    Regards!!!

    What's version of SQL Reporting Service?
    http://support.microsoft.com/kb/967749/en-us
    Also you can check below link, may be help you
    http://blogs.technet.com/b/mgoedtel/archive/2013/01/06/how-to-fix-the-om-2012-service-level-tracking-summary-report.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • Is there aog file which tracks when report developers make changes?

    Is there a log file which tracks when report developers make changes to the report structures in Essbase 11?
    Thanks

    I'm confident there is not an audit report which will track the exact changes to a financial report.
    There may be something that note that a report was modified however I am a little doubtful about that.
    In most enterprise environments (large companies) report writers/developers do not have direct access to modify production financial reports. They would be created in a non-production environment and a third party would move them. Obviously not all companies have the resources to work in this manner. There are audit mechanisms for the Life Cycle Management (LCM) tool -- check out the epm_security.pdf guide at http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security.pdf
    Other folks thoughts?
    Regards,
    John A. Booth
    http://www.metavero.com

Maybe you are looking for

  • Defender and Windows 8.1: Possible virus, hardware issue or both

    Hi: I currently use IE11. I noticed some bizarre behavior coming from the browser where it flashes, or when sending an email using my Hotmail account, the signature line erases itself while I type new text (several lines above it), etc .  Clearly som

  • IMac and Video:  4GB vs 8GB RAM

    Hi all, long-time Mac user, first-time poster here. It's time to upgrade the old 2003 G4 MDD with a new platform. A Mac Pro is really expensive right now, so am looking at a 2.93GHz Intel Core 2 Duo, with 4GB of RAM and the ATI Radeon HD 4850 card. I

  • Urgent: Issue with Java Embedding Activity

    Hi All, I wrote below code in Java Embedding activity and tried to pass an input paramter to String SR, but i am getting SCAC-50012 Error, some one please help me in this issue IAgileSession m_session = null; IAdmin admin = null; IAgileClass cls = nu

  • Apple TV not in Device List

    Help!!! I have done everything a zillion times. Somebody must know something!! Sandra

  • Weird/Complex Exchange/Outlook 2013 Issue

    I posted this in the Outlook forum but I was given the recommendation to post it here so I thought I would see if anyone could help. So we have a client that is creating Outlook calendar events in Outlook 2013 who is running on Exchange 2007 running