Query to show which are not used till Jan 2011

Hi Friends !
Need to make a BeX query to know which all queries are used till Jan 2011. Which Stats Cube we need to use? "0BWTC_C05"? Please advise how to make this report. We need this report to clean up our BI Prod system.
With Regards
Rekha

use the info provider -- >0TCT_DS02 or 0TCT_DS01
Check the below query and the MP -- which provides query runtimes.
Query Runtime- 0BWTC_C10_Q014
Average Time per Query (0BWTC_C10_Q021)
Average Time per Query (0BWTC_C10_Q507)
Which are Based on InfoCube: BW statistics MultiProvider (0BWTC_C10)
or you can use the table RSDDSTAT_OLAP in BI7.0 or RSDDSTAT  in BW3.x version.
based on the table you can get the requeired inforamtion wht u r looking for.
Regards
KP

Similar Messages

  • TS1368 I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.

    I want to delete a lot of things childrens stories, albums which are not used which that are on my ipad. However when I go through Itunes it wont show me most of the stuff in my library. it takes ages to delete one at a time.
    Can you help please?

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • Identify tables which are not used in any access seq.

    Hi
    Need to identify those tables (A500 - A999) which are NOT used in any access sequence (table T682I).
    Not sure how to do this.
    Thanks for the help

    Hi Karen,
    if you don't want to use SE11 and see it on one glance, you could use the following coding:
    DATA: it_t682i TYPE TABLE OF t682i,
          wa_t682i TYPE t682i,
          it_missing TYPE TABLE OF t682i,
          wa_count TYPE kotabnr VALUE 499.
    SELECT * FROM t682i INTO TABLE it_t682i
                  WHERE kvewe = 'A'
                  AND  kotabnr BETWEEN 500 AND 999.
    DO.
      ADD 1 TO wa_count.
      READ TABLE it_t682i INTO wa_t682i
                 WITH KEY kotabnr = wa_count.
      IF sy-subrc <> 0.
        CLEAR wa_t682i.
        MOVE wa_count TO wa_t682i-kotabnr.
        APPEND wa_t682i TO it_missing.
      ENDIF.
      IF wa_count = 999.
        EXIT.
      ENDIF.
    ENDDO.
    BREAK 'your user'.
    The table it_missing is just a quicky solution, you could use a table with just one field or use write to print the result.
    Hope that helps!
    Regards
    Nicola

  • How to find aggregates which are not used.

    Hi ,
    There are lot of aggregates in my system , so i should deactivate the aggregates which  are not used from long back. so how to find out all those , can u plz guide me ,

    You can also check the usage column of the aggregates. If usage value is high then the aggregate is used very frequently.
    If there is no value at the last used then the aggreagete is not used at all.
    Hope it helps
    Regards
    Sadeesh

  • MM-Report to see the materials which is not used from last 3 months

    Dear All,
    I want to find out the materials which are not used from last 3 months.Is there any report?
    Thanks
    Vishal

    Hi
    check MB5B
    give material and plant there
    select valuates stock radio button and NON-Hierarchical representation layout  on selection screen
    give last three month duration period on selection screen and execute report
    and see total  Goods receipt and total goods issue for material
    Regards
    kailas ugale

  • How can I find the profiles which are not in a role

    Hi all,
    how can I find all profiles which are not used in a role. Its important for a security check.

    Hi Stefan,
    you do one thing use the transaction SUIM
    SUIM>>Profile>>By Roles
    give all the role name and execute you will get roles with profiles
    and extract to excel sheet
    to get only profiles
    suim>>profile>>by profile name or text give * and execute
    and extract in excel sheet no compate profile coloumns get the profiles which does not there in any roles
    hope ds helps
    thanks
    kishore

  • SQL Query to find Receipt No.s which are not matched to AP Invoices

    Hi
    Please help me to frame a query to find list of Receipt No.s which are not matched with AP Invoices.
    Please refer to the below query .
    SELECT
    poh.segment1 "PO No.",
    aps.vendor_name "Supplier Name",
    pol.item_description "Item Description",
    rcvh.receipt_num "GRV No.s",
    rcvl.quantity_received "Quantity",
    pol.unit_price "Rate/Unit",
    rcvtl.tax_name||' - '||initcap(rcvtl.tax_type) "Tax",
    (rcvl.quantity_received * pol.unit_price) + nvl(rcvtl.tax_amount,0) "Amount"
    FROM
    po_headers_all poh,
    po_lines_all pol,
    po_distributions_all pod,
    ap_suppliers aps,
    rcv_shipment_headers rcvh,
    rcv_shipment_lines rcvl,
    rcv_transactions rcvt,
    jai_rcv_line_taxes rcvtl
    WHERE
    poh.po_header_id = pol.po_header_id
    AND poh.po_header_id = pod.po_header_id
    AND pol.po_line_id = pod.po_line_id
    AND aps.vendor_id = poh.vendor_id
    AND aps.vendor_id = rcvh.vendor_id
    AND rcvh.shipment_header_id = rcvl.shipment_header_id
    AND poh.po_header_id = rcvl.po_header_id
    AND pol.po_line_id = rcvl.po_line_id
    AND rcvh.shipment_header_id = rcvt.shipment_header_id
    AND rcvl.shipment_line_id = rcvt.shipment_line_id
    AND poh.po_header_id = rcvt.po_header_id
    AND pol.po_line_id = rcvt.po_line_id
    AND aps.vendor_id = rcvt.vendor_id
    AND rcvh.shipment_header_id = rcvtl.shipment_header_id
    AND rcvl.shipment_line_id = rcvtl.shipment_line_id
    AND rcvt.transaction_id = rcvtl.transaction_id
    AND aps.vendor_id = rcvtl.vendor_id
    AND rcvt.transaction_type = 'RECEIVE'
    AND poh.authorization_status = 'APPROVED'
    AND poh.segment1 = '210001079'
    I have'nt included the Invoice Tables in the above query.
    Please help me in that area.
    This is bit urgent.
    Please help me.
    Regards
    Nakul Venkatraman

    I am using ORACLE 11gR2 If you're licensed for Diangnostics pack then you might want to look at the AWR tables, e.g. DBA_HIST_SQLSTAT and cross-reference with DBA_HIST_SNAPSHOT.
    By this will i get the top 5 consumed queries of DEV user in the whole session or its just the top 5 queries at that particular time. The "executions" columns in this query, does it mean that the no. of. times the query has executed... This will get you a random 5 queries that were first parsed by DEV. Depending on your application code/structure, it may well be that all code (except for system-recursive sql) executed by DEV is parsed by DEV, and all code parsed by DEV is executed by DEV but this isn't true for all.
    In terms of top N queries, you need to ORDER BY and then restrict by ROWNUM at an outer level to the ROWNUM otherwise the ROWNUM filter is applied before the ORDER BY.
    i.e.
    SELECT *
    FROM
    (SELECT ...
    FROM ...
    WHERE
    ORDER BY...)
    WHERE ROWNUM <= ....
    The "executions" columns in this query, does it mean that the no. of. times the query has executedYes.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e25513/dynviews_3064.htm#REFRN30259
    Edited by: Dom Brooks on Oct 24, 2011 9:45 AM

  • How can I detect workbooks which are not longer in use?

    Hello togehter,
    I am looking for a way to detect BEX Workbooks which are not longer in use. Is there something in the BC which I can use for that?
    Best would be some query with the information of when and by whom a workbook gets called up last time.
    Thanks!
    Andreas

    Hi Edward,
    there is no key figure providing this information.
    First of all you got convert the 0CALDAY from Date to Number, therefore you got to configure a new variable (by replacement path) and put it into a formula.
    Use the result of this formula as a column and create a new TOP 1 condition on it.
    Now you will only get one row per Workbook/Query (or whatever you have chosen) with the date of the last use of it.
    Regards,
    Andreas

  • Problem with Signing in itunes with my id. After signing in it does Not Show the Apple id and they are asking 3 Times if i wanna download Songs I have already bought but which are not on this iphone

    Dear community, I'm experiencing a problem since 2 days, that if I sign in in my iTunes account with my Apple ID on my iPhone it doesn't show at the end if scrolling down the ID details and credit anymore. If I try to download songs I bought once but which are not on this device anymore, it asks me 3 times for the ID and password. I fill it in but at the end nothing happens. I see only in the middle a moving symbol.
    What can I do? Apple ID and password are correct . I canceled all settings but same as before.
    Many thanks in advance.

    AJ Green wrote:
    My wifi only iPad 2 has GPS, and a compass/accelaerometer to determine which direction I am facing.  You need to enable location services.
    Your wifi-only iPad does not have GPS. Read the specs for your device.

  • I've got a Mac Book Pro 17" 2008 with FCS 2. Compressor 3 only gives me MOV-1 which are no use so I've bought Compressor 4 from the App store: it says the graphic card is not compatible. Can I install a new card on my mbp? If so which is best? Thanks John

    I've got a 17" Mac Book Pro with Snow Leopard and Final Cut Studio 2 . Compressor 3 is only giving MOV-1 which are no use to me. So I've bought Compressor 4 from the App store which it says isn't compatible with the graphics card on my 2008 mbp. Can I
    Install a new graphics card on my computer if so which one? If not can I solve the MOV-1 problem ?
    Thanks in anticipation
    John Lawrence

    Ask here:
    https://discussions.apple.com/community/professional_applications/final_cut_stud io

  • My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    My HD TV has two HDMI inputs which are being used by a home theater system and my RCN cable box. i want to be able to use my appleTV as well as those but do not have another HDMI input. How can i connect it so that i can use any 1 of the 3 at any time?

    Get an HDMI switcher. Plug in the ATV directly to the TV and then use the switcher on the other input.
    Example
    http://www.amazon.com/Ultra-High-Performance-Switcher-Switch/dp/B0015YWKYY/ref=s r_1_1?ie=UTF8&qid=1316918064&sr=8-1

  • I'm in India and use Indian iTune store. But there are certain books which are not avaiable in Indian store but are there in US store. How can i get those books?

    I'm in India and use Indian iTune store. But there are certain books which are not avaiable in Indian store but are there in US store. How can i get those books?

    Hi Jai Shree Hari,
    Yeah, I don't see why you shouldn't be able to sign your friend's iTunes sign-on into iTunes, and then use that to download the books. You may need to also authorize your computer in iTunes with that ID in order to be able to re-download them to your device if you ever need to (not sure if this is absolutely required since most things live in the cloud now, but better to be safe than sorry.... ).
    Best of luck!
    Cheers,
    GB

  • I am using my iphone 4s here in dubai.Do i have to install any application to use siri..?? Coz i tried using them and i alwayz get ans which are not relevant.Please advise.

    I am using my iphone 4s here in dubai.Do i have to install any application to use siri..?? Coz i tried using them and i alwayz get ans which are not relevant.Please advise.

    No Siri is preinstalled.  Check you have enabled Siri correctly in Settings>General>Siri>ON and ensure you have completed the My Info correctly.  Siri uses the information in your My Info which is taken from your contact card to respond. Also Siri is still in beta and currently uses limited languages i.e.
    English (United States, United Kingdom, Australia)
    French (France)
    German (Germany)
    Finally just check your restrictions in Settings>General>Restrictions>Siri>ON

  • Help! Error "...'[Filename].indd' uses one or more plug-ins which are not currently available..." Wh

    Hello guys,
    I called Adobe for help on this, but they said my version of InDesign was too old for them to help me, which was really discouraging. I am getting an error when I try to open my InDesign files, which up until a couple weeks ago, opened fine. I am getting the error below:
    Error "...'[Filename].indd' uses one or more plug-ins which are not  currently available..." When Opening an InDesign 2.0.x Document
    And it lists the following unfound plugins:
    WorldReady.InDesignPlugin
    LILO.InDesignPlugin
    CellStyles.rpIn.InDesignPlugin
    Conditional Text.InDesignPlugin
    If I click okay to try to go past it anyway, I get the following error:
    Error "...Cannot open '[Filename].indd'. Please upgrade your plug-ins to their latest versions, or upgrade to the latest version of Adobe InDesign.
    And it lists the following unfound items:
    AppFramework.framework
    Image.framework
    Table Model.framework
    Spread.framework
    Transparency.framework
    CJKGrid.framework
    Links.framework
    Workgroup.framework
    Assignments.framework
    Print.framework
    Graphics.framework
    Linguistics.framework
    Indexing.framework
    Tet Attributes.framework
    Open Place.framework
    Layer.framework
    Generic Page.framework
    Hyperlinks.framework
    XML.framework
    Path Type.framework
    Master Page.framework
    BNCore.framework
    Text.framework
    Text Wrap.framework
    Package and Preflight.framework
    Document Framework.framework
    CJK Text Attributes.framework
    TOC.framework
    XMedia UI.framework
    Image Filters.framework
    Utilities.framework
    Color Management.framework
    I tried to follow the post http://kb2.adobe.com/cps/327/327956.html, but I'm told I am "not authorized to view the content" on the partners page, so can't complete the instructions.
    I've tried deleting and reinstalling CS2. I've tried removing my preferences. Neither have worked.  I am close to just resorting to Apple's Pages for my layout design.  If anyone can give some fixes here, I would really appreciate it.
    Thank you!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    bryanmcclure12 wrote:
    I've tried deleting and reinstalling CS2. I've tried removing my preferences.
    Verify that you are running ID CS2, InDesign version 4.x.  What level are you patched to from the InDesign>About InDesign drop down splash screen?
    The message alerts to files being version 2.0.x? that is 2 versions back, are these old files?
    Can you create, open, edit, save new files?

  • Properties that are updateable and which ones not using epma batch client

    Can anyone provide list of properties (HFM/Essbase etc.) that are updateable and which ones not using epma batch client?

    This will be documented in the batch client and related documentation on the EPM documentation portal

Maybe you are looking for

  • Stored procedure for checking Invoice value if more than R 15 000

    Hi All I have a problem with my stored procedure below, i want to check the doctotal if it above R 15 000 , if it is then it checks if the supplier has a tax clearance cert. IF @transaction_type = 'A' AND @object_type = '22' BEGIN If exists (SELECT T

  • How to increase on(press) movie Clip value

    I have a variable at frame 1, var a=0; i have a movie clip and i am writing a code on it on(press){ a=a+1; trace(a); bt the tracing value is showing NaN, how can i increase that value ?? even if i am doing the same thing with button then its working

  • How to replace TLB order in APO (/sapapo/snptlb) with external number

    Hi All, I am trying to replace TLB order (ex. APO-0001) created in transaction /sapapo/snptlb with an external number generated by me (ex. test-123). Can anyone suggest an FM or anymethod or process for the same. Win full points by answering this sim

  • Photoshop CS5 constantly changing my cursor

    Photoshop CS5 is constantly changing my standard Windows cursor from a normal arrow to a very big arrow. This is really driving me nuts, because I have to change that over and over again. No other program does this. BTW. I`m also using an Intuos 2, i

  • Lumia 620 contacts

    Hello! I think I'm missing some important features on WP8 Lumia 620, I can't copy my contacts to my SIM, I can't have contacts only in the phone memory without sync to external servers, mainly microsoft live. Am I correct? When are they going to fix