I need to see how many times a report is executed in the system.

Hi,
I need to know how many times a report and background job is executed in the system.
How can I know that?
Thanks for the help!

hi
  For all reports and transactions execution info is stored in table MONI.
Read the System log using the Transaction SM21. may be you can find some info here.
U can use trx STAT, here the system stores the statistic only for a certain period (lst week, last month,...).
Also try stad transaction.
Reward points if helpful.
Regards
Nilesh

Similar Messages

  • Can I see how many times a shared album has been viewed?

    I primarily use Revel to share photos of events since the files get too big to email more than 2 at a time.  Usually, there is a very limited group of people that would be interested but the link to one album was shared on Facebook and I'm curious to see if many people viewed that album.  Is there a way to see how many times the album has been viewed?

    Use your account credentials to log on to iTunes Connect. Or use those same credentials with one of the 3rd party app reports management tools such as AppViz, AppAnnie, etc.
    iTunes Connect
    https://itunesconnect.apple.com/ 

  • Is it possible to see how many times a component has been used in our websites?

    Hi,
    we currently have 3 websites running and I don't know if a component we created is actually in use.
    Is there a way to find this out?
    Thanks,
    Giulio

    Hi kasq,
    thanks for your quick answer...I tried
    path=/apps/mywebsite/components/scrollable/html.jsp
    and the result was
    XPath query
    /jcr:root/apps/upc-cablecom-ch/components/scrollable/html.jsp//*
    Filtering predicates
    Results
    Number of hits: 1
    Time: 0.16 seconds
    /apps/mywebsite/components/scrollable/html.jsp/jcr:content  (html,  json)
    So how do I have to read it? I see 1 number of hits, that I assume it's how many times it's used from other files...but how do I actually see how many times it's used on all our pages?
    Sorry for this newbie question, but only now I'm getting deeper in CQ5
    Thanks,
    G

  • Statistics - To get how many time a report has been run

    Hi Gurus,
    I would like to know how many times each of the reports on the portal has been run. If I could get this by user id, that would be great.
    Do you know where I can get such information?
    Regards
    Mathew

    Hi Guys,
    This can not be done throug ST03/ST03N. For this you will have to either use the SAP delivered BI Statistics query which is built on 0TCT_M01 multiprovider. Make sure your data is upto date before you run the query.
    Disadvantage of teh SAP delivered query is, it will not give you result which is older than 24 hrs. So basically it gives you oppourtinity to analyze only last 24 hrs data. If you want to modify the query, you can copy the query and modify as per your requirement.
    Now coming to your question of finding how many times a report is run:
    Question is how many queries do you have in your report. If your report contains one query only, there is free char in the query called Frontend Session. Everytime your execute the query you will have a new Frontend session ID.
    So create a formula as counters for all values and set the exception aggregation based on Frontend session. This will give you the number of times each query executed. If you drill down by Users, you will get this numbers by users.
    - Danny.

  • How many times do you have to click the sleep/wake button to get the light brighter? (on iPod touch)

    How many times do you have to click the sleep/wake button (top button) to get the light/screen brighter? (on iPod touch)

    That is not haow you change brigntness. Go to Settings>Brightness to adjust screen brightness.

  • I just want to kno how many time do I have to buy the same app?

    how many time do I have to buy the same app?

    You are going to have to articulate a little more clearly what your issue is. General statements like buying the same app every year is not helpful.
    What, exactly is your issue? What Apps are you having to buy over and over? If you cannot take the time to describe your problem fully and clearly, then we can't help you.
    GB

  • I want to open a folder and see how many times theres inside like you could before...

    I want to open a folder and see how many items theres inside like you could before...
    How can you do that on maverick plz ?

    Open it and choose Show Status Bar from the Finder's View menu.
    (112378)

  • Is there an app for the ipad that lets you see how many times an app has been played?

    looking for an app to see hoe many times the appds han been played
    Sincerely,
    Jim

    I think I can refresh my question..
    is there an app that can give me a small database when a specific app has been launch /played?
    Jim

  • How to tell how many times a method has executed?

    Hi, all
    I've got a main class (Model.java) that repeatedly calls a step() method in a sub class (Ocean.java). I want Ocean.java to execute its step() method following one set of rules for the first time it is called by Model.java, and a different set of rules for all executions 2++. I was just going to use an if/else in Ocean.java's step() method to make it switch based on a boolean haveIExecutedThisStepOnce, or something like that. Is there some way to tell Ocean.java how many times it has executed the step() method? I'm using the RePast code libraries; Model.java uses a method called getTickCount(). It returns a double value of number of times Model.java's step() method has been executed, in which Model.java tells Ocean.java to execute its step() method. Should I pry that getTickCount() value out of Model.java and get it over to Ocean.java's step() method--and if so, how? Or, is there a better way to do this that I'm not aware of?

    Why do you think that this field has to be public?
    Arguably if there's some functionality that is tightly associated with this counted method, then it should be part of the same class.
    Alternatively, think about the counting variable. It should be with the thing that uses it.
    So if class A wants to invoke class B method c once, do something else, and then invoke c some more, then that counting is really more an aspect of A than of B, and in that case the state should be in A. In that case the field really counts the number of times that A has invoked B.c, not the number of times that B.c has been invoked overall. Maybe that's what you want.
    On the other hand if you really want to count the number of times that B.c has been invoked overall, then it's an aspect of B (or more likely an instance of B). In that case, rather than expose the counting state and the counted method, it would probably be better to create a new method d(). d() would invoke c(), doing something extra depending on the counting state. Make c() private. Like this:
    class B {
      private boolean c_has_been_called = false;
      public void d() {
        c();
        if (!c_has_been_called) {
          doWhateverYouNeedInThisCase();
          c_has_been_called = true;
      private void c() {
        // and c() does whatever it normally does
    }

  • Hey! On excel I want to count how many time a text come back in the spreadshit (sum) thx, hey! On excel I want to count how many time a text come back in the spreadshit (sum) thx

    Excel:
    line of cellule with 3 different text. I want to count have many time a text come in the line... Thx for helping me, it is for my job!!

    Hopefully I am understanding your question.
    A typical way to count how many times a word appears in a line of text in a cell is to substitute spaces for the word, one less space than the length of the word. Example:
    A1 has the string "brown red brown green"
    A2 =LEN(A1) - LEN(SUBSTITUTE(A1,"brown","    "))  
    "brown" has five letters so there are four spaces in the substitution text)
    If you want to do several cells at once, counting the total number of times the word appears, concatenate the cells with a space between them
    A1 and A2 have text in them
    A3 =LEN(A1&" "&A2) - LEN(SUBSTITUTE(A1&" "&A2,"brown","    "))

  • HT5071 How can I see how many times my free book has been downloaded?

    I would like to know how many people have downloaded my free ibook, but I can't find that information.  I am a complete novice at this, so please give detailed answers.  For example, I do not know how to log into my ibooks account.  Thanks.

    Use your account credentials to log on to iTunes Connect. Or use those same credentials with one of the 3rd party app reports management tools such as AppViz, AppAnnie, etc.
    iTunes Connect
    https://itunesconnect.apple.com/ 

  • Exchange 2013 Mailbox- Need to see how many sessions of a sinlge mailbox is opened ? Ex: Scenario is 10 helpdesk engineers using single mailbox in different machines

    Can we get details of on how many machines a sinle mailbox has been opened in the company in exchange 2013 CU5 envinronmnet
    Manju Gowda

    Hi,
    Since there is no official article for Exchange 2013, we can refer to the 2010 article here:
    Exchange Store Limits
    http://technet.microsoft.com/en-us/library/ff477612(v=exchg.141).aspx
    Thanks,
    Simon Wu
    TechNet Community Support

  • I cannot update or buy apps as it always says you need to verify password by email but no matter how many times I ask I cannot get the email.  Help please

    I cannot do upgrades or buy apps as it keeps asking me to verfy my password by email but I cannot get Apple to send the email.  I have tried repeatedly.  Help please.

    I seen this many times, and in just about all cases, it's the user resetting a different AppleID than what's being used for the iTunes account.

  • How many times do you have to tell the call centre...

    I have had excellent service from BT with a line speed of some 7.5 to almost 9 meg download and around 1 meg upload.
    Recently my download speed slowed dramatically to 400k BUT the upload speed stayed the same.
    When I could no longer use iplayer Utube or any TV on demand I tried to call the fault reporting.
    First on Friday I spent almost an hour trying everything wireless change channels - Socket unplug the house and go to the main ( carrying my PC and router up two flights of stairs)
    I eventually was put to a supervisor who said he understood that its a problem with the exchange and promised to do something.
    Friday passed along with Saturday Sunday and Monday, repeated speed tests show aprox 400K download both on BT system and also on external speed checks. Interogating my router for DSL speed also confirmed upload 1 meg and download 400k.
    Tuesday - rang back and had all the same questions are you on wireless? Expecting this I had already changed to wired.
    Next question back to main sockets vice extensions, again, Having explained the supervisor from Friday already checked this and was going to get it fixed - I had to refuse to move my setup upstairs again since I had already done it twice on Friday.
    Has there been a storm? of course UK has storms BUT I tried to explain that if the line is noisy or wet both uplink and downlink normally fade together. 
    I asked what progress had been made ? They did not seem to have any update and limited information - SURELY BT take notes and put them on the system?
    Eventually I had another supervisor - after explaining everything he conceeded that the first supervisor on Friday did nothing.  He then again asked to recheck the line and for the 4th time got the same results as me 400k down 1 meg up. He also tried to ask about wireless which I had eliminated and router - OH mine is a belkin not BT hub so that caused consternation. He after what seemed ages went away to test the line again and the phone of course dropped out as it will if your testing. He never rang back either.
    In order not to have more of the same I connected the BT home hub supplied by BT and set it up and tested the speed - Guess what the speed was identical on the BT hub as my Belkin but at least they cant blame that.
    Being totally frustrated I tried again and got another operator - and yes they wanted mainly to talk about my wireless being the problem I quickly explained its wired which kind of threw them - yes your right the main socket issue came up again but seriously Im not lugging all that kit upstairs again when Ive already done it. The inevitable test the line took place and yet again for the 4th time the results were identical - max 400k download ( 1 meg up).
    After having to become very forceful this person agreed that OK I had done all the tests ( several times). When I asked what was on the system for the fault and who dealt with it last time - nothing.
    They agreed to send me an email which I have got and also this time to reset my profile? What profile and why was it not set before?  I have now been told my speed will increase over 48 hours - currently its not yet changed!
    I expect that I will probably have to go through all this again, why dont they write down whats been done so you dont have to what a waste of all our times.
    Well as you may tell Im not terribly happy with this and dont have confidence that it will get fixed - which means its probably going to be bad over christmas - I dont normally write to furums and having been an engineer all my life and pretty good with PC's I found the whole experience very frustrating. Anyone know what changing the profile may do and does it really take 48 hours?
    Solved!
    Go to Solution.

    Latest no speed change after 24 hours not one tiny bit - so much for it increasing gradually to the old maximum.
    Stats
    BT speed check gave me Downstream 468  IP Profile 506
    Upstream 929 IP Profile 1135.
    Much the same as I have got for the past week and also get on either router and still get after a supposed profile reset.
    Checks on mybroadbandspeed.co.uk which I have been keeping for 12 months show its down from more than 7 meg to 400k.
    Anyone know why the DSL link shows a better uplink than downlink - Faulty DSLAM ?
    Router stats? ADSL ( Belkin)
    ADSL
    Language
     Type
    Current Langugae
    English
     Status
    No Defect
    Available Langugaes
    English  Deutsch  Français  Español
    Downstream   
    Upstream
     Data Rate(Kbps)
             574         
             1103
     Noise margin (dB)
             31.3         
             6.1
     Output power (dBm)
             0.0         
             12.7
     Attenuation (dB)
             30.0         
             14.6

  • How can I see how many times my song has been downloaded?

    I have a couple of songs for sale on iTunes and wonder if it's selling at all. Can I check?

    Peter,
    Workspaces and groups can be confusing - apologies that it was not clear.
    Perhaps some background as to why I described it that way may help.
    BeehiveOnline relies on groups to be self-sufficient - if you are in one group your world of available participants is that group and that group alone. So if you want to create a new workspace and add users they can only be drawn from that group. - hence the workspaces within a group setup. However, if you are in multiple groups then the linkage gets broken as you could add members to a workspace from different groups - if you needed many group to share a repository of read-only info for instance. This is in wide use on BeehiveOnline. Read and Write access is more of a problem as if anyone updates a document or creates one their id will be attached to it and if they are in a group you as a workspace member cannot see it will cause confusion.
    So workspaces are only group restricted if there is only one group. If you have multiple groups you have more scope but have to exercise more care.
    Hope that explains it.
    Phil

Maybe you are looking for