How to capture HFM statistics

Hi,
I would like to capture the following stats from HFM:
- Consolidation time
- Database Growth
- Active Users which use the application
(we may have more users which have access to the application compred to the actual number of user who use the application)
Can anyone help on how to capture the above stats. If the information exists in any table in the HFM application,
what table and how to query them?
Thanks.

The easiest way I always used is to look to transaction sm50 and display the CPU usage of each process (click on one of the little toolbar icons). The dispatcher always tries to send user requests to the first process. If that process is busy, it tries the second process ... and so on. For that reason the first dialog process has always the highest CPU usage and the last one (or multiple ones) the lowest usage or zero CPU usage. The highest ranking dialog process with some CPU usage indicates the peak process use since system start-up. The same holds for any other process type. Hope this helps.
- Joerg

Similar Messages

  • Why canu0092t I enable capture of statistics performance data?

    Hi,
    Following some documents suggested here, I tried to enable capture of statistics performance data.
    This is what I did:
    rsa1,
    Tools (from menu)
    Settings for BI statistics
    Then I selected the Infoprovider tab; Under the “statistics” column, it looked like:
    Default Value    X
    Cube1               D
    Cube2               D
    Cube3               D
    I tried to change the “D”s to X, and the options were:
    X   – On
    D   – Default
         -- Off
    But when I switched to X, the "check mark" to save from X to D remains gray and I am unable to turn on the statistics for the cubes Cube1, Cube2, Cube3, etc.
    What could be the reason why I can’t seem to turn on the statistics on our BI7 development and quality environment?
    Thanks

    Hi,
    Refer.
    How to Set up BW Statistics
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5401ab90-0201-0010-b394-99ffdb15235b
    Activating Data Transfers for BW Statistics 
    http://help.sap.com/saphelp_nw04s/helpdata/en/e5/2d1e3bd129be04e10000000a114084/frameset.htm
    Installing BW Statistics
    http://help.sap.com/saphelp_nw04/helpdata/en/8c/131e3b9f10b904e10000000a114084/frameset.htm
    Monitoring BI Statistics
    http://help.sap.com/saphelp_nw70/helpdata/en/46/f9bd5b0d40537de10000000a1553f6/frameset.htm
    Hope this helps.
    Thanks,
    JituK

  • WLC2006 - How to clear client statistics

    Hi,
    I have a few questions about the WLC2006 CLI:
    1 - Client statistics can be displayed on the WLC2006 with the command "show client detail <MAC addr>". I don't find in the documentation how to clear these statistics.
    2 - Comments are generally welcome in capture files. What is the "!" IOS equivalent?
    3 - Is it possible to suppress the "more" with a command such as "terminal length 0"?
    Any link is welcome. Thanks by advance.
    Best Regards,
    Alain-Claude

    The show client detail command output depends on the clients that are presently associated with the LAP. Once the clients get disconnected from the network, the stats should get cleared automatically.
    We presently do not have a equivalent command for terminal length 0.

  • How to capture show layer and hide layer event in photoshop through a plugin???

    How to capture show layer and hide layer event in photoshop through a plugin???for mac

    Use the Listener plug-in found in the SDK to see how you can monitor the show/hide layer event. You can also use the Getter plug-in to show what information you can find out about the current state of Photoshop.

  • How to capture the excise duty on free material purchasing?

    Scenario is like this if we purchase a lot of material then vendor gives free on some qty. then we make a purchase order for free material with tax code zero. Vendor supply that free material with excise duty. Now we do GRN & take part1 entry. How to capture part II entry. This is capital item.

    If you are following J1IEX route , then Tick MRP indicator & enter Excise duty values & take Part2.
    It is assumed that all other master data like chapter heading etc are set.
    Hope this will help.
    Regards,
    AK

  • How to capture an image from my usb camera and display on my front panel

    How to capture an image from my usb camera and display on my front panel

    Install NI Vision Acquisition Software and NI IMAQ for USB and open an example.
    Christian

  • How to capture tax

    Dear all
    While procuring material from lacal vendor( who is importing for example SEIMENS),
    How to capture all taxes BED14%,EC2%,SEC1% and ADDL DUTY 4%,
    Because, for local vendor we are using LOCAL PRICING PROCUDURE in which there is no 4% ADDL DUTY as in case of IMPORT PO PRICING PROCEDURE
    Problem is
    After procuring from above vendor, we need to sell this material to our customer through DEPO SALES( In which we are passing CENVAT benifit ). Our customer is asking that 4% addl duty also along with 1421%
    How to capture this 4% addl duty paid by us to our vendor to pass on the same benifit to our customer
    Please guide me the scenario

    Dear
    Vendor is local.We are using LOCAL PRICING PROCEDURE(IN WHICH THERE IS NO ADDL DUTY COND TYPE)
    The problem is we need to capture the 4% addl duty paid by our vendor while importing
    Purpose is passing over this benifit to our customer through DEPO SALES PROCESS
    Question is how to capture condition type ( 4% addl duty) in our LOCAL PRICING PROCEDURE. SO that we can pass on to our customer

  • How to capture graphical outputs from other programs

    Does anyone know how we capture the graphical outputs from the other programs and show them
    on the swing?
    I'd like to use a java program to run gnuplot, capture the outputs, and show them using swing.

    Depends on what you mean by "graphic outputs".
    Taking a quick glance at the gnuplot homepage, it looks as if you can output to PNG files, so just run the app, and load the png file.

  • How to capture changed data at ALV screen

    Hi ALV Experts,
    I am using Following method for ALV display :-
      CALL METHOD g_alv_grid_0200->set_table_for_first_display
        EXPORTING
          i_bypassing_buffer            = 'X'
          is_layout                          =
          it_toolbar_excluding          =
        CHANGING
          it_outtab                          =
          it_fieldcatalog                   =
      CALL METHOD g_alv_grid_0200->set_ready_for_input
        EXPORTING
          i_ready_for_input = '1'.
    Now I am changing few values in ALV screen and capturing through following Method :-
      CALL METHOD g_alv_grid_0200->check_changed_data
        IMPORTING
          e_valid = l_valid.
    THIS ABOVE METHOD STRANGELY CAPTURES CHANGES IN QUANTITY AND DATE FIELDS ONLY AND NOT IN CHARATER FIELDS.
    Can somebody suggest how to capture changes of character fields also.
    Thanks in Advance,
    Chandan

    Hi,
    Check whether the following logic helps.
    p_er_data_changed TYPE REF TO cl_alv_changed_data_protocol.
    DATA :
        lwa_mod_cell TYPE lvc_s_modi,
        lwa_mod      TYPE ty_mod.
    LOOP AT p_er_data_changed->mt_good_cells INTO lwa_mod_cell.
        lwa_mod-row  = lwa_mod_cell-row_id.
        APPEND lwa_mod TO i_mod.
    ENDLOOP.
    Regards,
    Lohitha

  • How to capture a parameter value in SQL QUERY of scale marker using GO URL

    Hi,
    Can any one please tell me how to capture the parameter value from go url inside Where clause of Scale Marker.
    I am trying to sift the position of scale marker based on SQL Query.
    Thanks-Bhaskar Gouda.
    Edited by: 961171 on Sep 25, 2012 12:33 AM

    Since this is a synchronous interface, where source is a soap(proxy) call and target is JDBC in the first mapping both of them are request scenarios.
    Source Structure:
    RootNode
        Request             1...unbounded
           No_of_Days   1.1 String
    Target Structure:
    RootNode
       Statement
         TableName
             Action mapped to SQL_QUERY
            Access -  SELECT DISTINCT AL.EC_NO,DP.DATE_TO_FORMAL FROM T_APPLICATION_LIST AL,(SELECT DE.EC_NO AS "EC_NO", DE.PACKAGE_NO AS "PACKAGE_NO",PC.DATE_TO_FORMAL AS "DATE_TO_FORMAL" FROM DAICYO_ECNO DE,PACKAGECTL PC WHERE DE.PACKAGE_NO = PC.PACKAGE_NO AND PC.DATE_TO_FORMAL > (TRUNC(SYSDATE) - to_number('$No_Of_DAYS$'))) DP WHERE AL.EC_NO IN  (SELECT EC_NO FROM DAICYO_ECNO WHERE PACKAGE_NO IN (SELECT PACKAGE_NO FROM PACKAGECTL WHERE DATE_TO_FORMAL > (TRUNC(SYSDATE) - to_number('$No_Of_DAYS$')))) AND (AL.FAMILY = ''  or  '' is null and AL.FAMILY is not null ) and DP.EC_NO = AL.EC_NO ORDER BY DATE_TO_FORMAL
         Key
          No_Of_Days   1..1 String
    In Return I am expecting a JDBC response from the Oracle Database as:
    Source Structure:
    RootNode
      STATEMENT_response   1...unbounded
         row                               0...undbounded
           EC_NO                        1..1   String
    Target Structure:
    RootNode
      RESPONSE
        row
         EC_NO                     1..1     String

  • How to capture error message in a FM call during exception

    Hi,
    The FM i'm trying to call is giving an exception and don't have the built in mechanism to pass on the error message that occured during processing.
    However, if i see the job log in SM37, I'm able to see the corresponding error message.
    Please let  me know on how to capture this error message with in my program.
    Thanks,
    Vijay.

    Hi,
    add the exceptions...ERROR_MESSAGE to capture the error message..raised in the function module.
             EXCEPTIONS
                  ERROR_MESSAGE = 1.
    Thanks
    Naren

  • How to capture selected value from drop down by index

    Dear friends,
    i want to capture the value of select value from drop down by index, for eg if  select air france, how to capture , could any one please let me know
    Thanks
    Vijaya

    Hi Vijaya,
    You can get the value of selected from drop down as below
    Check out the event handler method attached to Onselect event of the ui element drop down by index , if no event is associated, then create an event and attach to the drop down list
    Now you will be having the CONTEXT_ELEMENT in the WDEVENT parameter
                   data lo_element type ref to if_wd_context_element.
                   lo_element = wdevent->get_context_element( name = 'CONTEXT_ELEMENT').
    Now, you can get the static attribute value of selected  drop down value & let us say your drop down list values are populated from context node 'ND_DRP_DOWN'
                   data ls_data type wd_this->element_nd_drp_down.
                             lo_element->get_static_attributes(
                                       importing
                                       static_attributes = ls_data ).
    Hope this helps you.
    Regards,
    Rama

  • How to capture date and userdi in the alert mail

    Hi,
      In the alert mail I want to capture the userid, date and time. In the container I can define these variables but I was unable to caputre the values. Iam not using any BPM scenario. Can any body help me in this regard how to capture these values. Thanks in advance.
    Thanks & Regards,
    Mallikarjun.M

    Hi,
      Iam using the correct dict type as you mentioned in the above mail. But in my mail it shows that the container elements ZDATE of type SWFXST_DATE, ZTIME of type SWFXST_TIME as not found. I hope this will be solved.
    Thanks,
    Mallikarjun.M

  • How to capture System Error in XI?

    Hello All,
    1. Can any one tell me , How to capture the system error , Adapter Error and send the alert to make sure the guarenteed delivery from Source to Target via XI ?
    2.I have done the configuration for to capture the mapping error in transaction ALRTCATDEF .But still i am not able to see any messages in my Alert Inbox???
    I have checked with the two weblogs Alert step by step and Alert Trouble shooting guide.but still i am not getting any messages in Alert inbox .Any one can tell me how to fix this?
    Thanks!

    Hi,
      You wrote:
    <i>How to capture the system error , Adapter Error </i>
    Errors are captures in many ways and at different stages,
    like alert, sld errors or even sxmb_moni or even with visual administrator trace, I am not sure of your requirement but if you want a centrlished point to access all these error you may refer a good example as,
    /people/michal.krawczyk2/blog/2005/09/07/xi-why-dont-start-searching-for-all-errors-from-one-place
    <i>have checked with the two weblogs Alert step by step and Alert Trouble shooting guide.but still i am not getting any messages in Alert inbox .Any one can tell me how to fix this?</i>
    The two weblogs are my favourite and best resources but still if you are missing, please elaborate if you are getting any errors or other fesible traces as to why your alerts are not coming in inbox.
    Regards,
    Anirban.

  • How to capture the values given in SSC1 transcation?

    Hello All,
    Can anyone suggest me, how to capture the values given in SSC1 transaction?

    Hello Clemens Li,
    Requirement: Integration of SAP Appointment Calendar with Gmail Calendar
    If I create an appointment in SSC1 transaction, it will appear in SAP Appointment calendar. The same thing should get updated in Gmail calendar of SAP user and also in the guest Gmail calendar if exists in appointment.
    So, I have to capture the input values given in SSC1 transaction while creating an appointment in SAP and try to export those values to web services using some function module.  Sending those values to web services completes my task.
    Means, if I create an appointment in SAP, at the same time, the values which I gave must get exported to some object. So that I can send them to web services.
    But my actual problem is with capturing the input values given to SSC1 transaction.
    How can I get those values out to some internal table?
    Another one is, I did not found any BADI to enhance SSC1 transaction so that I can include my code there.
    If you know any enhancements in SSC1, please let me know.
    If you want any more clarification, please let me know.
    Thanks for the response
    DNR Varma

Maybe you are looking for

  • Advantages of using Final Cut Pro for animation

    Is there anyone out there using Final Cut Pro 6 that could tell me what they feel are the advantages of using FCP 6 for animation as compared to Final Cut Express 3.5?

  • Paste does not work in Safari browser to enter copied content into text box

    For example when I go to copy a URL Sosa to paste it into a text box on a local newspaper comment section, it won't paste in. Same goes for any pasting into the text box. I highlight what I want to copy (or cut) and the go to paste it into the text b

  • How can I copy the titles from a project volume one use them for the rest?

    I'm editing a four DVD set, and would like to use the same opening titles and credits for each. How can I copy the titles from volume one and use them for the rest? Thank you.

  • Resource Update in OIM

    All, I need to update the OrgName for a bunch of AD users. I need to write a schedule task to do this. Should I use the UpdateITResourceInstance() from ITResourceInstanceOperationsInterface. I also wasn't sure what the metadata is. Please Help Thanks

  • Error in Forecasting

    Hi Guys We are facing problem while carrying out forecasting in production system . Forecasting is giving dump . These are the details for analysis done . Any pointer regarding the resolution will be highly appriciated , we need to get this resolved