Aggregate Usage Value

Hi,
Will the Aggregate Usage Value keep increasing as we use it in the query??I used it many times,it only shows the usage value as 1.

RSRT is the best bet here. This will answer you following things:
It allows to Execute & Trace queries in a debug mode with several   parameters -
Don’t use Aggregates
Don’t use buffer
OLAP use
Display SQL etc.
Which Aggregates are being used?
OLAP Cache usage?
Which Statistics is generated?
Hope this helps

Similar Messages

  • How to reset the military usage value in GTS Business partner

    Hello Experts,
    Does anyone know how to reset the Military usage value='2' to blank on the Business partner within GTS?
    I tried putting a blank there, clicking on the accept entries button followed by  saving the Business partner.
    It does not seem to work this way.
    Does anyone know if it's SAP bug for not having blank as one of the allowable values for the usage except when it's that way while newly created?
    The GTS implementation details are as follows:
    Any help with regard to this will be much appreciated......
    Thanks,
    Prashant.

    Prashant,
    As I already informed you, it is not possible to re-set the indicator to <blank>.
    From the program code, I can see that the usage indicator is only transferred from the feeder system during the creation of a customer partner.  The value in GTS is set either to '1' or '2' during creation, and cannot be changed by any subsequent data transfer from the feeder system.
    I think that logic is related to the fact that usage records may be created for multiple Legal Regulations, and those records may then be changed individually by the user in GTS.  On that basis, it would not be reasonable to over-write the values by re-transferring the customer from the feeder system.
    Regards,
    Dave

  • How to calculate usage value through measuring document.

    Hi,
    While creating Sales Order with reference to a Contract i need to update the usgae value in the Order Quantity ( RV45A-KWMENG ) field (at line item level).
    Can you help me calculate usage value through measuring documents for equipment over a period of time.
    Is there any function module for the same?
    Thanks.

    Hi,
    To determine the usage value of a an equipment I had followed the following.
    From table STPO, check if the material receipted belongs to a standard BOM (STLTY='S')
    If yes, record the BOM (STLNR)  and the BOM item node number (STLKN)
    From PLMZ table, select the task list type (PLNTY), the key for task list group (PLNNR), the group counter (PLNAL), the task list node number for operation (PLNKN),   if the record is not flagged for deletion (LOEZ)
    From PLFH table, select the object type of the CIM resource (OBJTY), the object id of the resource (OBJID), the usage value (EWVGW) if the record is not flagged for deletion (LOEZ)
    From CRVE_A table, select the equipment number (EQUNR)
    The result of this selection will be all the tools which can be used for the production of the material receipted.
    The measuring point for this or these equipment(s) will be selected from equipment number and EQUI table
    The result of this selection will be all the measuring point to update.
    Create new measurement document for the selected measurement point (transaction IK11)
    Technically go as follows:-
    MAT = material receipted
    Select STLY, STLNR, STLKN from STPO table where IDNRK='MAT' and STLTY='S'
    If results exist
    Select STLTY, PLNNR, PLNAL, PLNKN from PLMZ where PLMZ.STLTY=STPO.STLTY and PLMZ.STLNR=STPO.STLNR and PLMZ.STLKN=STPO.STLKN
    And PLMZ.LOEZ<>'X'
    Select EWVGW, OBJTY, OBJID from PLFH twhere PLFH.STLTY=PLMZ.STLTY and PLFH.PLNNR=PLMZ.PLNNR and PLFH.PLNAL=PLMZ.PLNAL and PLFH.PLNKN=PLFH.PLNKN and PLFH.LOEKZ<>'X'
    USAGE=PLFH.EWVGW
    Select EQUNR from CRVE_A where CRVE_A.OBJTY=PLFH.OBJTY and CRVE_A.OJBID=PLFH.OBJID
    All the equipment number selected at this moment will be called EQUIP in the next steps
    EQUIP= Equipment number previously selected
    Select OBJNR from EQUI where EQUNR=EQUIP
    Select PARNR from IHPA where OBJNR=EQUI.OBJNR
    If PARNR = Vend then
    Select IMRC_POINT from equi where equnr=equip
    All the measuring points  selected at this moment will be called MEASP  in the next steps
    For each MEASP
    Insert into IMRG the new increment value  (USAGExMAT) in field CDIFF
    Remark: the field CDIFF is managed in floating point number, accurate to 8 bytes.
    I hope this is useful for you.
    Regards,
    Ankur Parab

  • MC44: material usage value affected by factory calendar

    Hi Gurus,
    I've got the following problem: on my 4.6c R3 production instance factory calendar had been setup as 7 working days a week but recently the need was to change it to 5 working days a week due to the introduction of route calculation to determine correct dates for the sales orders.
    We changed the factory calendar (which did deliver the correct result for the sales orders) only to discover that the "Usage" value determined for the materials by MC44 got totally wrong (usage with the 5 working days calendar was approximately 30 to 50% LESS than with the 7 days working calendar !!)
    As soon as we did restore factory calendar back to 7 working days a week MC44 was again fine (obviously sales orders date got wrong...).
    My impression is that everything is based on the way data from table MVER is determined depending on the factory calendar (which is apparently driven by function module DATE_CONVERT_TO_FACTORY_DATE).
    I guess I could change from customizing the calendar for the shipping point: in that case my expectation is that sales orders date should be fine as well as results from MC44 but I'm not totally sure about that.
    Any idea ?  Do you know which is the way table MVER is populated based on the calendar settings ?
    Many thanks in advance for your help.
    Enrico

    Hi Jurgen,
    from the logical point of view sounds reasonable but....
    1) even if I didn't fully debug the program (otherwise I guess I would know the answer   )  looks like MVER is the only one considered in terms of usage
    2) even if you forget point 1 (I could obviously be wrong) you're missing one information that I didn't mention: our usage (or consumption if you prefer) is 98% done from Monday to Friday; sometimes we do something on Saturday but this is kind of an exception.
    Based on the above, despite the factory calendar is setup on 7 working days a week, our material usage is basically done on 5 working days a week.  Described this way you'll immediately understand that, even if the program reads the data based on the number of working days, changing the calendar from 7 to 5 should cause a decrease of only 2-3%, in our case changing the factory calendar from 7 to 5 working days is causing a decrease of 30% to 50%.
    I believe the program is reading the table in a different way based on the factory calendar, I'll try to give you an example:
          Day     Usage
    01   Mon       10
    02   Tue        20
    03   Wed      30
    04   Thu        40
    05   Fri          50     ---> total week 1 far 150
    06   Sat         2
    07   Sun        0      -
    > total of the weekend 2
    08   Mon       100
    09   Tue        200
    10   Wed        300
    11   Thu       400
    12   Fri        500     -
    > total week 2 1500
    13   Sat        6
    14   Sun       0        -
    > total of the weekend 6
    For the 2 weeks, factory calendar 7 working days a week, total usage would be 1658.
    In your case, switching to 5 working days a week, it should deliver usage only for Monday to Friday, which is 1658 - (2+6)=1650    (i.e. difference is peanuts)
    As I said, I couldn't get to the end of the debug, but my impression was that, switching to 5 working days a week (based on the above example) the program would read 10 "days" so from Monday 01 to Wednesday 10, in that case the total would be 1658 - (4005006) = 752  (now difference is huge...).
    So......  maybe main question could be: which is the way MVER is populated ?
    Best regards,
    Enrico

  • Document Evaluations - Usage value MC45

    Hi
    We are on R/3 Enterprise 470 and I am trying to get the Usage Value MC45 to give me valid results as we are using MC40 ABC to drive cycle counting.
    We seem to have OMJJ set up correctly against each movement type so as to update data for Document evaluations.
    Is there anywhere else to look for config regarding this or are there any OSS notes that may not have been included in our release.  BTW how do I check if the fix identified in an OSS note is included in our version ??
    Any guidance or info appreciated.
    Regards
    Daniel

    Answered

  • Usage value not getting calculated for equipment PRTs in production order

    Dear PP Gurus,
    I have assigned a PRT equipment to pouring production routing.
    I have assigned the followings:
              1. control key as "1" in the operation.
              2. usage value as 1 ea in standard value in the operation
              3. Formula maintained in the operation as ZAPF02= SAP_09 * SAP_16
                              SAP_09 (Operation quantity) -> general operation value , field name- MGVRG
                              SAP_16(PRT std value) -->  Value from PRT allocation , field name- EWVGW
    The production order is calculating the planned consumption of PRT usage, but when I confirm the operation, it is not calculating the actual usage usage value. Actual usage value should be number of moulds confirmed in the molding operation confirmation.
    Kindly help me urgently.
    Regards
    Amar

    Hi,
    I got the issue.
    In IE02- equipment measuring point change, we need to assign the same in the PRT screen also.
    But now a new error coming-
    Document 3 already entered for the measurement time specified
    Message no. IR027
    Diagnosis
    You are trying to enter a measurement document for a measuring point that has been defined as a counter.
    However, a measurement document that has not been reversed already exists at the measurement time you have entered.
    The system must be able to determine a unique sequence for the measurement documents to be able to recalculate the counter readings if necessary.
    System Response
    The system will not allow the existence of two measurement documents for a measuring point where the measurement times are the same to the exact second. The system must be able to order the measurement documents in a sequence if it has to to recalculate the counter readings.
    Procedure
    Check your entry.

  • Aggregates usage

    gurus
    i have to evaluate all my aggregates in production and get rid of few of them.
    questions what i have is
    when was the last time any query actually accessed my aggregate?
    what are the queries which actually use this aggregate?
    we do have statistics cubes active. i used the standard Aggregate usage query but i am not convienced with the data. it actually shows only one query has used my aggregate
    i am trying to get information from RSDDSTAT and RSDDSTATAGGR tables but i am able to understand which of the available fields will answer my question
    can anyone help me out please. would be great if you can be more specific
    thanks

    Are your queries on multiproviders?  I believe some of what gets captured for multiproviders has changed over versions and SPs, but not all aggregate usage gets logged in RSDDSTAT.  At one point MultiProvider queries that ran in parallel did not log the aggregate, and before that, a MP couldn't use an aggregate.  I'm not 100% certain what scenarios get logged, but if you think about it, a MP query could be hitting the multiple aggregates - both aggregates from the different underlying cubes and in some cases, different aggregates on the same cube for different Restricted KF.  Since BW is only logging to RSDDSTAT a single entry for that query navigation, it can't possibly reflect the use of multiple aggregates. I believe I saw a while back that indicated that in this case, no aggregate would be included on the record written to RSDDSTAT. 
    An easy way to confirm this would be to look at the usage counts and last used date/time in the Maintenance for Aggregate window.  That will tell you how many times an aggregate has actually been used and the last time it was used.  These should give you a confirmation about which ones are being used the most.  This, unfortunately, is a total for the aggregate and is not at the query level.
    You can compare the usage counts shown in the Maintenance of Aggregate screen (count is from the aggregate's creation/last change) with what you get from RSDDSTAT for the same timeframe.  I'll bet that for Multiproviders RSDDSTAT is too low.

  • Does the Airport extreme provide any sort of usage reporting? Either per user or aggregate usage of the broadband port

    Does the Airport extreme provide any sort of usage reporting?  Either per user or aggregate usage of the broadband port

    No. You may be able to retrieve that information from your ISP.

  • Regarding Aggregates usage

    Hello experts
    I have created a aggregate on a infocube,(using proposal from query) but how do i check whether the
    aggregate is being used or not ??
    when i check the usage tab in the 'maintaince of aggregate ' it displays 0.
    Rgds
    Priyanka

    Hi
    If you have created an aggregate for an InfoCube, activated it and entered data for it, the OLAP processor can access these aggregates automatically when the query is being executed.
    If the aggregates are being used, you can see the Usage counter in aggregate maintenance incremented as and when the respective aggregate is used.
    Also check the Help link below for more details
    http://help.sap.com/saphelp_nw70/helpdata/EN/7d/eb683cc5e8ca68e10000000a114084/frameset.htm
    Hope this helps
    Regards
    Gaurav

  • Aggregate usage log

    Hi,
    i'm searching for the table with the information how often a aggregate of an cube is used, like it's displayed
    in the RSA1 -> Manage Infocube -> Rollup -> Aggregates.
    For all aggregates I get the information like "Last used"; "Usage".
    Is this information stored in a table?
    Kind regards
    Lars

    Hi,
    The stats table for aggregates are
    RSDDSTATAGGR
    RSDDSTATAGGRDEF
    You can also check them.
    Regards,
    Shyam.

  • Aggregate Usage

    Hi Guys,
    I had created an aggregate couple of days back.
    The roll up is happening every day. I can find also find when it was last used in the aggregate maintainence screen.
    However usage is displaying -ve. That means the aggregates is not effectively used. How can I use this effectively so that it will display the usage +ve.
    The aggregate and report granularity is exactly same then why the usage is not +ve.
    Please let me know.
    Regards

    Hi,
    Can you be more precise ?
    On what cube have you created your agregate ? Standard (business content) or custom one ?
    How the agrregate is built. What characteristics it contain ?
    Did you use expert mode while creating it ? If yes - it's possible that it works very fast despite low valuation. Some of my aggregates that are low valuated works very fast (I used expert mode while creating it).
    Regards, Leszek  

  • Aggregates Usage? How can we find out?

    Hi all,
    I would like to know which are all the cubes using the built aggregates.
    These should be seen in one place.
    At the same time, I would like to know whether the built aggregate is used by any cube or not.
    not in maintain aggregates. Other than that.
    not in RSRT also, there we can select Display aggregate found & can be checked whether the report is fetching the data from Aggr or Cube.
    Do we have any reports for this purpose or any Tcodes?

    Hi,
    If you want to check which all cubes have aggregates then go to RSDDAGGRDIR - Directory of Aggregates. The usage can be find for a particular aggregate can be find by going into that aggregate, there you will find a column Usage. You can check the usage there.
    Hope it helps you...
    Assign Points if it helps..
    Regards,
    Gattu

  • When more than two tabs are open (no matter the content), FireFox (3.6 and 4.0) slows down and the CPU usage value on the Task Manager shoots up to 100%.

    The Memory usage also shoots up to about 475k MB. This has happened over two computers, the first being a stock Dell Inspiron 1620 with Windows XP and this one being a stock HP G72 with Windows 7. I used a data transfer cable to transfer all settings from the first computer to this computer. The problem persisted through 2 updates (3.5>3.6>4.0). The only FF add-ons I have downloaded are NoScript and AdBlocker; I also have several unused toolbars downloaded from various other applications (Yahoo, Norton, and AVG) and frequently use the Google toolbar, which in an unrelated matter stopped saving my searches or suggesting searches while typing at the 4.0 upgrade. If you need any more information, I'd be happy to post it.

    Try a new Profile in Firefox 4 and see how it is. <br />
    http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows

  • BW Statistics for aggregate usage

    Hello experts,
    can some one guide me on how the BW Statistics cube can be used to count
    1> the "No. of times an aggregate was used by the
    queries" .
    2> The % of the query users who hit a particular
    aggregate in a month
    A query on the cube '0BWTC_C02' with
    0TCTIFCUBE(InfoCube) in rows and
    0TCTSTAUIK(Frequency ) in coulumns doesn't yield the correct result for my aggregate.
    Is this the right way of getting the "No. of times an aggregate was used by the queries" or is there any other option.
    I'm aware that i can indirectly get these details from RSDDSTAT, but not sure how to use BW Statistics cube for getting this information.
    Please help
    Best Regards,
    Sanjay

    I don't see where the aggregate cube name is even captured in this cube. Personally, I think the whole BW Statistics thing comes up a little short of what it needs to be.
    RSDDSTAT is the only place I am aware of being able to get what you are looking for.  Haven't tried it, but you should be able to setup an Infoset on it for Bex reporting, or just download the data to Excel or Access as you probably have been doing. Or create your own statistics ODS/Cube that does capture what you need.
    Keep in mind, an InfoCube with multiple aggregates could have more than one aggregate used by a user query but only one aggregate will be captured in RSDDSTAT.
    Message was edited by: Pizzaman

  • Change output format of  MC45,key usage value report to ALV format?

    Can someone please help me to change the change the Output of MC45 report to ALV format?
    Please help!!!
    Thanks!!!
    Owais

    I know i have to create a copy of MC45 to some z program but afterwards I am not sure where to look for to change the output format.
    Our ababper is extremely busy so i wanted to do litle bit of chnages by myself. I do have couple of years of java experience several years back, I thought i could help our abaper and learn myself little bit also.
    Thanks!!!
    Owais

Maybe you are looking for

  • Error while accessing discver report

    Hi, I am getting error while accessing a shared report from my colleague. 1)Item "Project Overview Project Type" used by the workbook is missing. Would you like to continue 2)Item dependency "not found in the EUL. Attempt to open workbook failed. Cou

  • Delete template from server

    Hi experts, It is a simple question... how can delete a template from server? Thanks in advance, Regards,

  • How to sort documents on a single page?

    I'm trying to create a page within my website that has documents that can be sorted/filtered so tht only certain documents display according to the sort term.  Honestly, I feel I must be missing something obvious but I can't seem to find anything via

  • HT201250 how to restore using time machine backup

    What is the procedure to restore using time machine

  • Third party application for C7 images

    How can i use a third party application to read the exif data of a C7 image stored on my computer? How to get the suitable third party application in the first place?