Need to find out wether aggregates are using or not

Hi ,
In My BW System Aggregates are build on two cubes say Cube 'X' and Cube 'Y'.
In Sap Early watch Report , they have suggested to De-activate or remove aggregates which are not used .
1)I need to find out which aggregates are using and which are not using from a period of time (take one month).
2)I need to find out which queries are using which aggregates.
Please let me know how to find the above information.

Hi Lakshmi,
   Welcome to SDN.
Please go through these links.
You can find out efficient/inefficient aggregates from BW statistics.
Performance Tuning for Queries with Aggregates
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cbd2d390-0201-0010-8eab-a8a9269a23c2
http://www.asug.com/client_files/Calendar/Upload/ASUG%205-mar-2004%20BW%20Performance%20PDF.pdf#search=%22BW%20statistics%20pdf%22
Business Intelligence Performance Tuning [original link is broken]
Hope it Helps
Srini

Similar Messages

  • How to find out which BADIs are used

    Hi Experts,
    Is there any tcode where I can give the transaction or program name and find out which BADIs are used in that transaction.
    thanks
    sankar

    Dear Sankar,
    You can first check available BAdis and then go to SE19 to see what all have been implemented.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • How to find out which users are using SharePoint Designer to make changes in SharePoint 2010 site?

    Hi there,
    How to find out which users are using SharePoint Designer to make changes in SharePoint 2010 site?
    Thanks.

    You need to enable auditing on SharePoint server and it will let you know, if someone makes any critical changes for the same.
    Please walk through this informative KB to enable auditing on SharePoint :https://support.office.com/en-za/article/Configure-audit-settings-for-a-site-collection-f5a346d0-ee0f-4412-a5e6-d9b5abaa1012
    Here is one more resource :
    https://support.office.com/en-in/article/View-audit-log-reports-4293e8d5-4e7d-4201-b8ac-c8e63a100131
    Moreover, if you wish to audit such critical changes automatically, you may consider on this comprehensive application (http://www.sharepointauditing.com/) that helps to track every changes on SharePoint into
    real time and provides the captured data at granular level.

  • How can I find out whitch table are used in whitch document?

    How can I find out whitch table are used in whitch document?
    In the table EUL5_DOCUMENTS are stored the Documents and in the table EUL5_OBJS are stored the tables. How can I query these tables together?
    Are there other possiblities?
    Thanks

    Hi Dierk
    Please take a look at this thread: Re: An EUL query to list out All the Columns  (Fileds) for each Workbook
    I think you may well find what you are looking for in the answer that I gave there.
    Best wishes
    Michael

  • How do I find out which instruments are used by software instrument loops?

    This isn't so much a problem, it's just something that's been bugging me - how do I find out which instruments are used by the software instrument loops?
    Usually clicking on a track will bring up the instrument name in the track info pane, but if I do this after importing a software instrument loop into my song it doesn't show anything. Any ideas?
    PS I have used the search function so I apologise in advance if there's an obvious answer.

    in track info, under details, the instrument being used is displayed in the generator popUp menu

  • I purchased Adobe Creative Suite 3 Master Collection Design Across Media Upgrade for Windows at a business closing.  What do I need to find out before I can use it?

    I purchased Adobe Creative Suite 3 Master Collection Design Across Media Upgrade for Windows at a business closing.  What do I need to find out before I can use it?

    I couldn't tell you what you purchased, and it might even be difficult for an Adobe employee to do so.  The business could have a few options as far as what they might have purchased.
    Your best bet, considering what little you paid, will be to hand it over to someone you might sell it to and let them try it out.  If it works, then it works.

  • 11.1.2- Need to find out what reports are being executed by a user

    Hi,
    We have financial reports executed from workspace.In essbase session , only the user id is displayed and the Request type- mdxreport is displayed. We also tried searching the log for Financial report didnt find anything relevant.
    Is there a way to find out what reports are being executed by the user.
    Thanks in advance.
    Regards,
    Saumya

    STAT will give you the information for a limited period of time and is limited to the server which you are logged onto yourself. Beyond 24 hours it is of even less use even if you change the selection screen values.
    If you want it for a period way back into the past, then you need to use ST03N.
    There are at least 2 dependencies and 1 confusion:
    1 dependency) The length of period is determined by the size (length) of the file. You can change this in ST03N (default 50MB) via the menu settings.
    2 dependency) The stat collector jobs need to be scheduled to write the information to ST03N (once per hour is a legal requirement in some non-banana republic countries).
    1 confusion) There is an obscure function which converts a report submit to a transaction name (there is not much difference anyway) and an even more obsure one which filters what ST03N will record and therefore whether you can read it. You can (un)filter these things away if you search the SAP Marketplace for the term "MONI".
    What is of particular value from this control is that you can even detect a submission of an abap which only existed temporarily.
    Also note that having this information is potentially very powerfull with respect to the users (some of them are human too), so you should expose and use it responsibly.
    You should also ensure that only responsible users / auditors have access to S_TOOLS_EX.

  • How to find out which lists are using email enabled feature in my SP 2010? Any script? Anything else?

    Hi there,
    How to find out which lists are email enabled in my SP 2010?
    Any script? Anything else?
    Thank you.

    Hi frob,
    check this script that is stated on this link
    $SPwebApp = Get-SPWebApplication "http://migration.Company.com"
    <# If it is MOSS 2007, You can use:
    $SPWebApp = [Microsoft.SharePoint.Administration.SPWebApplication]::Lookup(http://sharepoint.com)
    To get SPWebApplication Object
    #>
    #create a CSV file
    "E-Mail,List,Site" > "EMail-Enabled.txt" #Write the Headers in to a text file
    foreach ($SPsite in $SPwebApp.Sites) # get the collection of site collections
    foreach($SPweb in $SPsite.AllWebs) # get the collection of sub sites
    foreach ($SPList list in $SPweb.Lists)
    if ( ($splist.CanReceiveEmail) -and ($SPlist.EmailAlias) )
    # WRITE-HOST "E-Mail -" $SPList.EmailAlias "is configured for the list "$SPlist.Title "in "$SPweb.Url
    $SPList.EmailAlias + "," + $SPlist.Title +"," + $SPweb.Url >> EMail-Enabled.txt #append the data
    http://www.sharepointdiary.com/2011/06/find-all-incoming-email-enabled-lists.html
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation. Please remember to mark the reply as answer if it helps.

  • Tring to find out which fields are used in workbooks

    I just tried importing the eul5.eex into a production db. The import seemed to work fine except for a message saying the EUL5 user is not available.
    When I try to go in and run the workbooks that were also imported I am having a lot of issues. The EUL Access workbook gives me an invalid function error and will not open. The other workbooks are similar. Any help ?

    Hi,
    I found this excellent post by Nilesh Jethwa on "How to find item, folder or Business Area in Discoverer".
    http://www.appsbi.com/2007/02/01/how-to-find-item-folder-or-business-area-in-discoverer/
    "First find out which EUL you want to query against. There are multiple EUL owners so we need to determine which one. The following query shows us all the available EUL owners
    select owner from all_tables where table_name = ‘EUL5_OBJS’;
    Replace the “eul5_us” with the appropriate owner value in your case. Now lets say we need to find out where “Invoice Date” is located then we would modify the query as shown below and execute it
    select i.exp_name item_name,f.obj_name folder_name,b.ba_name
    from euladm.EUL5_expressions i, euladm.EUL5_objs f, euladm.EUL5_ba_obj_links l, euladm.EUL5_bas b
    where f.obj_id= i.it_obj_id
    and f.obj_id= l.bol_obj_id
    and b.ba_id= l.bol_ba_id
    and upper(i.exp_name) like upper('%')
    and upper(b.ba_name) like upper('%')
    and upper(f.obj_name) like upper('%')
    order by b.ba_name,f.obj_name,i.exp_name
    Vlad

  • Find out which users are using Discoverer

    Hi
    Is there a way to find out via sql, which users are currently logged into the database via Discoverer?
    Many thanks
    Martin

    Something like this will tell you who is logged in currently. You may need to alter for your current version of Discoverer. (EUL5 versus EUL4). I was only looking for desktop users.
    SELECT UPPER (a.program) program, a.username,
    a.status, a.schemaname, a.osuser, a.terminal,
    a.TYPE, a.logon_time
    FROM v$session a, v$process b
    WHERE ( (a.username IS NOT NULL)
    AND (NVL (a.osuser, 'x') <> 'SYSTEM')
    AND (a.TYPE <> 'BACKGROUND')
    AND b.addr(+) = a.paddr
         and UPPER(A.program) = 'DIS51USR.EXE'
    ORDER BY "PROGRAM", ownerid

  • How to find out wether I am using AZ.H?

    We are doing Apps db export/import from HPTru64 to SunSolaris as described in metalink Note#362205.1.
    In This note Section#3, Step#3 says as follwos...
    How can we findout wether I am using AZ.H or NOT?
    =============
    Back up AZ table data (conditional)
    If you are using AZ.H, upgrade to AZ.H.DELTA.1. See document 403092.1 on OracleMetaLink for instructions.
    10.2 datapump does not allow tables with XML type columns to be migrated. Perform step 2 of document 402785.1 on OracleMetaLink to back up the data within XML type columns.
    Grant privilege to source system schema
    ===========

    should I execute the step as described in SECTION 3 STEP#3?Yes, upgrade to AZ.H.DELTA.1 first (though it is conditional, I would strongly recommend it).
    Please note that 11i.AZ.H.Delta.1 can be applied only to an existing Oracle Apps 11.5.10 (or above) that has 11i.AZ.H (5140723) applied to it.

  • Photos-App: How do I find out which photos are used in a Shared Photo Stream?

    Hi folks,
    I just ecountered a “problem“ using a Shared Photo Stream.
    FYI: I have circa 1.200 images stored in Photos-App. About 360 of them are used in a Shared Photo Stream.
    Now I'd like to delete all the fotos NOT used in said Stream.
    Since the images in said Stream are not in the same order as they were originally taken, there are also many images between the ones used.
    So now I am confronted with the time-consuming task of comparing and deleting the photos, switching between Stream and Album/webview all the time.
    And do it all by hand. Naaaaaaaah! ):
    Any ideas on how to speed up this whole process?
    (I already wrote Apple to maybe add a label or icon to the photos used in a Stream (when in any other view) so it gets easier to identify the right ones.)
    Greets, Tim

    Incorrect. Photos added to the Camera Roll are automatically uploaded to Photo Stream. Photos deleted from the Camera Roll are not automatically deleted from Photo Stream.

  • How can I find out if there are any masters (not referenced) in my library?

    Hi!
    I've been using Aperture for a while (most masters are on different hard drives, but maybe some are in my library by mistake when I imported them), now want to consolidate all my photo-masters on a separate "photo" hard drive and leave in my Aperture Library only the previews and the adjustments.
    I have some projects in my library, and my library is 12 GB. Is there a quick way to find out if any of my masters are in the library so I can "take them out" and put them on my separate HD?
    If there was a way to sort by "badge" and see the ones not referenced that would be nice.
    In the future I will be more careful when importing to make sure my photos are always in the right place and referenced.
    Thanks for any help!

    Easy. Add Rule "File Status" = "Managed".
    Make a Smart Album, store it in your top level Smart Albums folder (I put all my Library administration Albums there), and check it before doing a full back-up, or regularly. I keep recent shots on my MBP internal drive so I can work on them wherever I am. After a month or so I relocate the Masters to my big external drive.
    Note that Managed Masters/Versions are likely already differentiated by badge. Referenced images have a "link arrow" badge. Managed images do not.

  • How to find out what modules are used

    In /etc/rc.conf there are a lot of modules that are loaded that don't need to be, like modules related to OSS. Is there some command that'll show me what modules are being used at the moment and/or what they do?

    Yes Thinkpad FTW! Back on topic; so there are three columns: Module, Size and Used By. In the used by column what do the different numbers mean?
    I ran "lsmod | less" to be able to view each individual one. (That "| less" part is really useful)
    Last edited by jordanwb (2008-08-07 01:59:15)

  • HT204053 How can I find out what devices are using my AppleID and the history of purchased items with my AppleID?

    I have used my appeID to load some games to my son's friends iPod's and have found that the iTunes gift cards that were loaded under my ID have been used very quickly ($100 in 2 months) when I have not been downloading things.  I have been told that the friend has been downloading games/music after I had put in my password to load something else.

    We are fellow users on here and not Apple employees so have no account access.
    You can see iTunes and app store purchases by going to the store for each and clicking Purchases on the right side.
    You might want to consider contacting the store support staff at http://www.apple.com/emea/support/itunes/contact.html and request your account be locked for a period of time.  You need to stop allowing uncontrolled access and that may be he bet way.

Maybe you are looking for

  • HP 23xi IPS monitor calibration help

    Hi All, So I have a HP 23xi 23" monitor i've been using for less than a year. Suddenly today my hyperlinks became very hard to discern from dark blue and seems almost black as if it's just regular text.  I have not had this problem until today when I

  • Dowloading purchases from iTunes on a laptop

    I Purchased an album on iTunes on my iPad and when I tried to download that album from my purchased music in iTunes on my laptop running windows 8 it only downloaded 4 of the songs from the album.  How can I get the other songs?

  • Crystal Report XI – MultiThread failed - PEOpenEngineEx Error:512

    In Crystal Report XI u2013 Multi Thread - function PEOpenEngineEx failed. Reason: Report engine not opened Hi I am using Crystal report XI with Delphi 7 OS: Windows XP. Delphi 7 CR Version: Crystal Report XI In Crystal Report XI While calling PEOpenE

  • Modifying a template

    I have a project with 200 forms more or less. Now I need to modify a template, and I know I would open all the fmbs and save them. How can I optimize this process ? I use Project Builder and think that It can help me with a Macro, but not sure. Any s

  • Nokia 6300 - charger in UK

    I have a Nokia 6300 purchased in Toronto, Canada, and will be visiting England next week. My question is: do I need to buy a charger in the UK to charge the phone; or can I just use the North American charger I have and just use a plug adapter?