How many number of times a particular report was executed

Hi..My requirement is to find how many number of times a report/tcode was executed in a particular period of time.I tried using STAD,STAT AND ST03 ..but i am not able to find how many number of times the particular report was executed ..is there any other tcode or table or FM ..that would solve this problem..its bti urgent..wud reward points for all useful answers could u let me know under what name or field int eh out put this particular info that i am looking for wud be displayed?

Hi,
The following code i found from this forum, may this will help you.
* internal tables for use counter
data: begin of list occurs 5.
        include structure sapwlserv.
data: end of list.
data: begin of applicat occurs 0.
        include structure sapwlustcx.
data: end of applicat.
data: begin of applica_ occurs 0.
        include structure sapwlustcx.
data: end of applica_.
data: begin of applicau occurs 0,
        entry_id like sapwlustcx-entry_id,
        account  like sapwlustcx-account,
        count    like sapwlustcx-count,
    : end of applicau.
data: wa_applicau like applicau.
*&      Form  MONI
form moni.
  data: l_host like  sapwlserv-hostshort.
  m_start = p_usedt.
*** get server
  call function 'SAPWL_SERVLIST_GET_LIST'
       tables
            list = list.
  do.
    loop at list.
*** loop on server
      check not list-instshort is initial.
      l_host = list-instshort.
*** get statistics per month and server
      perform workload using m_start l_host.
    endloop.
    add 31 to m_start.
    if m_start > sy-datum.
      exit.
    endif.
  enddo.
  sort applica_ by entry_id.
  sort applicau by entry_id count descending.
endform.                               " MONI
*&      Form  WORKLOAD
form workload using    p_start like sy-datum
                         p_host  like  sapwlserv-hostshort.
  refresh: applica_.
*** read application statistic from MONI
  call function 'SAPWL_WORKLOAD_GET_STATISTIC'
       exporting
            periodtype                 = 'M'
            hostid                     = p_host
            startdate                  = p_start
            only_application_statistic = 'X'
       tables
            application_statistic      = applica_
       exceptions
            unknown_periodtype         = 1
            no_data_found              = 2
            others                     = 3.
  sort applica_ by entry_id account.
  loop at applica_  where entry_id(1) ge 'Y'.             "#EC PORTABLE
    clear wa_applicau-entry_id.
    wa_applicau-entry_id(25) = applica_-entry_id.
    wa_applicau-account      = applica_-account.
    wa_applicau-count        = applica_-count.
    collect wa_applicau into applicau.
  endloop.
  sort applicau by entry_id count descending.
  applica_-ttype    = space.
  applica_-account  = space.
  modify applica_ transporting ttype account
         where ttype ne space.
*** collect only enhancements statistic
  if p_temp = 'X'.
    loop at applica_.
      applica_-entry_id+25(48) = space.
      collect applica_ into applicat.
    endloop.
  else.
    loop at applica_ where entry_id(1) ge 'Y'.            "#EC PORTABLE
      applica_-entry_id+25(48) = space.
      collect applica_ into applicat.
    endloop.
  endif.
endform.                               " WORKLOAD
aRs
Points are always welcome

Similar Messages

  • How many users can view the same report at the same time in obiee answers

    Hi All,
    How many users can view the same report at the same time in obiee answers..?
    What is max and minimum number of users.
    Do we need to increase any system configuration.
    Thanks,
    Jagadees.

    Hi,
    Many users can view report at same time.It depends on the server if it can accept those many users at same time.If number of users increases OC4J may not work properly.
    Refer : http://www.artofbi.com/index.php/2009/10/what-is-oc4j-an-oracle-application-server-distribution-really/
    Regards,
    Srikanth

  • Number of times a particular vendor has exceeded the threshold limit

    Hello,
    We wish to find the number of times a particular vendor invoice has exceeded tolerance limit.  Is there any table where this data gets updated or is their any standard report ?
    Regards
    Jayesh.

    Firstly note that you cannot 'exceed' the tolerance. Based on the tolerance, you can goods receipt a higher quantity than specified in the PO.
    Check vendor evaluation report ME6H, it provides scores to vendors on quantity reliability. You can use this if you have vendor evaluation configured for your Pur org.
    If you are thinking for a Z logic, for each PO line item for the vendor, search in MSEG and total the quantity receipted. If this exceeds the quantity order in the PO item, increase your counter.

  • How many licenses my comapny has and how many number of users logged in.

    Hi All,
    Can any one tell,
    before login into the SAP B1,
    I want to know
    how many licenses my comapny has and how many number of users(Licenced) logged in using Query Analyzer or any other way.
    Thanks
    Chakrapani
    Edited by: chakrapani bandaru on Feb 17, 2010 12:58 PM

    Hi Sunderraj,
    Can u eloberate the answer,
    I want to take a report of that count.
    Thanks
    Edited by: chakrapani bandaru on Feb 17, 2010 2:14 PM

  • How to disable cache for a particular Report in obiee 10g?

    HI
    My name is Rani .Learning obiee10g ifaced 1 interview in that they asked me like how u disable cache for a particular report?

    In the advanced tab of the report, under prefix you need to mention:
    SET VARIABLE DISABLE_CACHE_HIT=1;
    Refer below link
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Thanks

  • How many screen-on time are you getting while playing?

    How many screen-on time are you getting while playing games on the iPad Mini Retina? I'm planning to buy one and use it mainly for games. I currently own a Samsung Tab S 8.4 which can only last 4 hours screen-on time while playing Clash of Clans.

    Unfortunately no one can give you an exact length of time. The stated battery life on an iPad is in the 10 hour area. But there are so many variables that it's impossible to give you any sort of exact length.
    I would GUESS, if you spent the whole day gaming on a fresh charge, you may get 5-6 hours but that is a total blind guess. some games demand more power than others so there is no set way to know.

  • How to Know the How many number of JCo connections established?

    Hi
    How to Know the How many number of JCo connections established for mapping?

    Hi
    mConnection =  JCO.createClient("001", // SAP client
                  "<userid>", // userid
                  "****", // password
                  null, // language
                  "<hostname>", // application server host name
                  "00"); // system number
    //Connections to a specific application server (as in the above example)
    mConnection.connect();
    //Creating the JCO.Client object does not connect to SAP, but a subsequent call to
    connect() will accomplishes this
    So you can easily find out the number of JCo connections by checking out these.
    Thanks

  • How Many  NUMBER Fields Can SINGLE DATA BASE TABLE CONTAIN

    How Many  NUMBER Fields Can SINGLE DATA BASE TABLE CONTAIN

    Hi
    One Database table contain 249 Fields.
    Rewards Points if useful..
    Regards
    Nikunj Shah
    Edited by: Nikunj Shah on May 13, 2008 1:08 PM

  • Query to find vendor number with whom a particular item was last purchased.

    Hi All,
    I want to frame a SQL query to find vendor number with whom a particular item was last purchased.
    I got to know that we can find this by looking at the open Purchase Order or the Material Transactions for the transaction type of ‘PO Receipt’ whichever is the latest.
    Can anyone please help me in framing such query.
    Regards,
    Shruti

    Here is a hint
    Use the mtl_system_items_b table to get the inventory_item_id.
    Use it in the po_lines_all table to get po_header_id
    Use it in po_headers_all table to get vendor_id
    Use it in po_vendors to get segment1 (i.e. vendor#)
    Hope this helps,
    Sandeep Gandhi

  • ORA-24333: zero iteration count  Cause: An iteration count of zero was specified for the statement Action: Specify the number of times this statement must be executed

    Get the following error from Oracle 
    ORA-24333: zero iteration count
    Cause: An iteration count of zero was specified for the statement
    Action: Specify the number of times this statement must be executed
    Any suggestions on whether is this a Oracle bug or if not what should be set to avoid this failure.

    Hello get this from executing the following.
    Occurs intermitently.
    select MAX(LENGTH(lxVal)) from lxString_74501fb6 where lxType=910231053
    Find the MaxLenght(LxVal) returned is null for this query.
    Did google it but says the iterator not initialized. But not the case here
    Thanks

  • How do I count the number of times a particular year occurs in a range of dates?

    One column in my spreadsheet is a date and time.  I want to be able to count how many times a particular year occurs.
    Is there a way to combine the COUNTIFS and YEAR functions, or is there something easier to use?
    I'm using Numbers '09.
    Thank you for your assistance.

    You could use COUNTIFS with the two conditions being ">="&DATE(year, 1,1) and "<"&DATE(the next year, 1,1)

  • Power management reportings - report how many computer are on during day time and how many during night time

    Hi All
    I'm just wondering if anybody could help me out. I'm quite new to configuration manager, and I've
    Is it possible for a specific periode to tell how many computer are runing during the day and how many are on during night time.
    I started working with power management reportings but i can't find a way to exclude non working days.
    Has anybody worked on this already? Is there another way or tool for this need?
    Thank you all in advance for helping.

    Hi,
    The following articles could help you to create a custom report.
    Creating Custom Reports by Using SQL Server Views in System Center 2012 Configuration Manager
    Create Custom Reports for ConfigMgr 2012 with Report Builder
    Note: Microsoft provides third-party contact
    information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce

  • How to get total number of times excuted the report

    hi,
    Can you spend for a while.
    Requirement is when the Monthly summary report: When report executed then in the header it has to display how many times times this is executed and data has to display(this completed).
    For example out put is:
    No.of times executed:20   (means this is 20th time this report is running)
    here data has to display(This i completed).
    Thank you,
    Anu.

    Anitha Reddy wrote :
    Requirement is when the Monthly summary report: When report executed then in the header it has to display how many times times this is executed and data has to display(this completed).
    For example out put is:
    No.of times executed:20 (means this is 20th time this report is running)
    here data has to display(This i completed).
    If you completed everything then what is your problem ??

  • Counting how many number of elements in a XML

    Hi all,<br />
            I am having a requirement in ABAP-IXML ie., i need to find how many times a same element name(ComponentUsage) gets repeat in an xml.<br />
    here is the xml,<br />
    <br />
    &lt;Component mmRelease="6.30" mmVersion="2.0" mmTimestamp="1180099591892" name="Comp_three" package="sap.com" masterLanguage="en"&gt;<br />
    <br />
    &lt;Component.ComponentUsages&gt;<br />
    &lt;<u><b>ComponentUsage</b></u> lifecycleControl="createOnDemand" name="comp1"&gt;<br />
    &lt;ComponentUsage.ComponentControllerUsages&gt;<br />
    &lt;ComponentControllerUsage name="Configuration"&gt;<br />
    &lt;/ComponentControllerUsage&gt;<br />
    &lt;/ComponentUsage.ComponentControllerUsages&gt;<br />
    &lt;ComponentUsage.UsedComponent&gt;<br />
    &lt;Core.Reference package="sap.com" name="Comp_twoInterface" type="ComponentInterfaceImplementation"/&gt;<br />
    &lt;/ComponentUsage.UsedComponent&gt;<br />
    &lt;/ComponentUsage&gt;<br />
    &lt;/Component.ComponentUsages&gt;<br />
    <br />
    &lt;Component.ComponentUsages&gt;<br />
    &lt;<u><b>ComponentUsage</b></u> lifecycleControl="createOnDemand" name="comp2"&gt;<br />
    &lt;ComponentUsage.ComponentControllerUsages&gt;<br />
    &lt;ComponentControllerUsage name="Configuration"&gt;<br />
    &lt;/ComponentControllerUsage&gt;<br />
    &lt;/ComponentUsage.ComponentControllerUsages&gt;<br />
    &lt;ComponentUsage.UsedComponent&gt;<br />
    &lt;Core.Reference package="sap.com" name="Comp_twoInterface" type="ComponentInterfaceImplementation"/&gt;<br />
    &lt;/ComponentUsage.UsedComponent&gt;<br />
    &lt;/ComponentUsage&gt;<br />
    &lt;/Component.ComponentUsages&gt;<br />
    &lt;/Component&gt;<br />
    <br />
    Here as the xml is short so i manually knows tat the element "ComponentUsage" are used 2 times, but suppose if i use a big xml and the component usage element is used "N" number of times then how can i count mannually....... so is there any method or code to find how many times does "ComponentUsage" element present in an XML.<br />
    <br />
    Thanks in advance,<br />
    Vishnu<br />

    First check this Blog
    /people/r.eijpe/blog/2005/11/21/xml-dom-processing-in-abap-part-ii--convert-an-xml-file-into-an-abap-table-using-sap-dom-approach
    you can check this thread
    Upload XML to internal table and vice versa in SAP 4.6C

  • How many number of pages can be included in a single spool request

    Hi ,
    How many maximum number of pages can be included in a single spool request. can we increase or decrease these max no of pages per spool in SAP.Please advise.
    Thanks & Regards,
    Sam.

    Hi Sam,
    The spool is ultimately a file created in the database. So it can handle a large number of pages.
    By defaut it shows only first ten pages.. This can be changed from the settings in SP01.
    GOTO> DISPLAY REQUESTS> SETTINGS
    Regs,
    Sameer

Maybe you are looking for

  • Samsung SyncMaster 305T 30" external display not recognized

    after much research (apparently not enough I went with the Samsung over the Apple Cinema display. When I plug in the Samsung the Macbook flickers like it senses the external monitor, but when I tell it to detect displays, it doesn't recognize the Sam

  • Marketing calendar

    Hi all, i have 2 problem with the marketing calendar in PCUI. 1) If I were to click on the Marketing Calendar tab, I am not able to see anything except for My Favorites in the Show dropdown menu. But if I create a campaign, and then click on the Go T

  • Telnet read isuue

    Hi all First of all thanks for taking time to help me with my problem. Let me explain I have developed a telnet connection program that connects to a switch and interacts with it. But unfortunately when i try to login to the switch after sending the

  • Wsdl nested complex type

    I'm trying to create Web service that return a nested complex type. The exposed method return a Vector. Elements of vector are beans. A single bean has more attributes, one of them is a hashtable. Here my code: package pk; import java.util.Hashtable;

  • Centralized WLC Design Question

    Dears, In my scenario, i am designing CEntralized WLC deployment. I have 30 AP in Buidling X(200 Users) and 20 AP in Buidling Y(150 Users). I am planning to install HA WLC CLuster where Pimary & Secondary WLC will reside in physically different Data