Report GRR2 lib 6P2- activity quantity Hours in column,project def in row

Hi expert,
i have created a Report in lyb 6P2.
i have proj definition "6PPSPID" in the row and i wolud like to have quantityof the hours of the activity type spent at project definition level, i mean i need a total of the hours spent on all the WbE that belong to the project definition that is in the row.
I have tryed with different "Basic key figure"  but it doesn't work, i have insert in column :
version 0
Value Type 4 inact i need actual
Who knows how should i do to have hours in column for each project definition that is in row.
thanks

What is WbE?

Similar Messages

  • REPORT S_ALR_87013558 - NOT ABLE TO USE SPECIAL CHAR(*,+) IN PROJECT DEF

    Hi to all,
    when using standard report S_ALR_87013558 , i don't manage to use special characters such as * or + . Do i need to apply a note or set something in customizing?
    Thanks for your help.
    Ciao, Carlo

    Hi Carlo,
    The customizing for using special characters is found in OPSK tcode. It is called "Define Special Characters for Project".
    Ciao,
    Dave

  • What is the activity quantity in KSII and how is it arrived

    Hi,
                Could any body help me to understand what is the activity quantity in KSII. How will we arrive at the figure we get when we run KSII.
    I know the that we would be giving theplanned cost in KP06, planned activity quantity in KP26 and then when we run the price calculation in KSPI we get the total price for the cost center and the activity type. This is what is the planned total price for a period.
    I am unable to understand the differece between the planned and the standard cost. Please help me with an example.
    Standard cost is planned cost * actual hours,  correct me if I am wrong.
    Please assist,
    Regards,
    Shilpa.

    Hi Shipla ,
    You have two questions :-
    1. How to get activity quantity in KSII
    KSII is actual price calculation . Actual Price = Actual Cost/ Actual Qty..
    Actual quantty is derived from quantity confirmed in production/process order and direct activity allocation done to the cost center . If you see a Cost Center Plan/Actual variance report.. you can see the actual quantity booked in a process Order . Actual Cost is the cost booked into the cost centers ..from FI/CO /IO settlement etc ..
    During Actual costing , activity costs are generally booked at plan rate ( KP26). In KSII , actual price is computed and the difference is allocated to the cost centers.
    2. Standard cost is planned cost * actual hours
    No , plan cost is the cost you have planned for the year . You can use the plan cost to create a cost estimate . This cost estimate can be used as standard cost or for any anaylsis purpose..
    Always remeber that purpose of product cost planning is to compute product cost estimate . This estimate may be used as standard costs.
    Hope it clarifies..
    Regards
    Sarada

  • Actual Activity Quantity

    Hi
    Somebody please explain how the actual activity quantity is confirmed on the production order ?

    Hi!
    Different activity types like labor, Machine, Factory Overhead etc.. are defined in the system for different resources (Sterilising, Mixing, Grinding, Packing.....) in the production line.
    Standard Activity rates are defined in KP26 with the combination of Activity type and Cost Center (generally different for each PP Resource - Work Center). Also the same are defined in Master Recipe with standard one.
    When you create production order, system will catch standard rates for machine hour and labor hour which are charged at a predetermined standard rate to be derived. Now when you confirm the PP Order through COR6N, you will put all activity type in actual...say 40  labor hours and 50 machine hours..so based on standard rate defined in KP26 and master recipe, system will calculate actual activity rates.
    Also for some of activity type like factiry overheads or others which are dependent on machine hours or labor hours, for that you have to define formula in your resource based on which system will calculate actual activity rates.
    Hope it will clear to you. Pls get back for further query.
    Thanks & Regards,
    Taral Patel

  • Report to track configurator activity

    Hello,
    I am trying to configure 2 reports to track 'CONFIGURATOR' activity
    1. When has the CONFIGURATOR logged in (date)
    2. If he has logged in at all what did he do
    Can somebody tell me on which report configuration will be the most appropriate for this?
    Thanks in advance for your help.

    Hello,
    I am trying to configure 2 reports to track 'CONFIGURATOR' activity
    1. When has the CONFIGURATOR logged in (date)
    2. If he has logged in at all what did he do
    Can somebody tell me on which report configuration will be the most appropriate for this?
    Thanks in advance for your help.

  • Report for showing pending (ageing) quantity according to store location w

    dear ABAP Gurus,
    I have made a roport for showing pending (ageiing) quantity acc to location wise.
    and i m sending here the code i made for same.Tell me if sme amendments required.
    Report for showing pending (ageing) quantity according to store location wise:   
    1.     Fields on selection screen (input screen) : Plant code From to , Material code From to , Current date, Numbers of days(for display the ageing(pending) balance for a given period,Storage locations from to.
    2.     Field in the output List : Material code , Material descriptions, Balance quantiy,Balance value ,Consumptions date. 
    the code is:
    REPORT  ZAGEIN_SUDHA.
    TABLES: mara,mseg,makt.
    TYPES: BEGIN OF t_mara,
    matnr LIKE mara-matnr,           "material number
    maktx LIKE makt-maktx,           "material description
    ersda LIKE mara-ersda,           "material creation date
    lgort like mseg-lgort,           "storage location
    bwart like mseg-bwart,           "goods received or issued
    menge like mseg-menge,           "value at movement type
    werks like mseg-werks,           "plant
    END OF t_mara.
    DATA: i_mara TYPE STANDARD TABLE OF t_mara with header line,
          itab type standard table of mara with header line,
    *wa_mara TYPE t_mara,
    v_date TYPE i,                      "age in days
    GI type mseg-menge,                 "goods issued
    GR type mseg-menge,                 "goods received
    bal type mseg-menge,                "balance
    total type i,
    grace type i,
    g_quan type mseg-menge.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: p_matnr FOR mara-matnr.
    select-options: p_werks for mseg-werks.
    select-options: p_lgort for mseg-lgort.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
    REFRESH i_mara.
    SELECT mr~matnr                        "mara-matnr
    mk~maktx                               "makt-maktx
    mr~ersda                               "mara-ersda
    mg~lgort                               "mseg-lgort
    mg~bwart                               "mseg-bwart
    mg~menge                               "mseg-menge
    INTO corresponding fields of table i_mara
    FROM mara AS mr INNER JOIN
    makt AS mk
    ON mrmatnr = mkmatnr INNER JOIN mseg AS mg on mkmatnr = mgmatnr
    WHERE mrmatnr IN p_matnr and mgwerks IN p_werks and mg~lgort IN
    p_lgort.
    total = 0.
    IF sy-subrc = 0.
    *CLEAR wa_mara.
    LOOP AT i_mara.
    if i_mara-bwart = '101' .
    GR = total + i_mara-menge.
    total = GR.
    elseif
    i_mara-bwart = '102' or i_mara-bwart = '122'.
    GR = GR - i_mara-menge.
    endif.
    if i_mara-bwart = '261'.
    GI = total + i_mara-menge.
    elseif i_mara-bwart = '262'.
    GR = GR + i_mara-menge.
    endif.
    bal = GR - GI.
    if bal GE  GR.
    grace = 30.
    else.
    grace = 10.
    endif.
    g_quan = bal - GR.
    v_date = sy-datum - i_mara-ersda.
    endloop.
    WRITE: / i_mara-matnr ,i_mara-maktx,' is ',v_date,' ,days old  and
    stored at' ,i_mara-lgort ,   ' with balance =', bal ,'the grace time is
    ', grace, 'and' ,'grace quantity is ' ,g_quan.
    *ENDLOOP.

    Hi,
    That sounds like a nice report.  What about it?!
    Gareth.

  • Report for showing pending (ageing) quantity according to store location wi

    Report for showing pending (ageing) quantity according to store location wise:   
    Fields on selection screen (input screen) : Plant code From to , Material code From to , Current date, Numbers of days(for display the ageing(pending) balance for a given period,Storage locations from to.
    Field in the output List : Material code , Material descriptions, Balance quantiy,Balance value ,Consumptions date.

    Hi,
    That sounds like a nice report.  What about it?!
    Gareth.

  • Activity Quantity & Value is Zero in CK11n

    Dear Experts,
    When i run the ck11n, the activity quantity it is showing as Zero and correspondingly the value.
    1) I have maintained the price in KP26 against the cost center which is assigned to the work center.
    2) I have enabled the check box for costing in the control key.
    3) I gave the operation quantity and base quantity in Routing in the same UoM that of the finished good material.
    Please guide me to solve this.
    Suresh

    Dear All,
    The issue is resolved and thanks a lot for the inputs.
    The problem was with standard value key in work center. Earlier we copied the sap std and created a new one and used the same. We changed it and used the sap std and its working fine.
    The strange thing is we created another one with the sap std and when we gave that its working fine. So, effectively dont know the exact reason but the issue is solved.
    Thanks again for the replies
    suresh

  • Standard report for invoices against a quantity contract

    dear experts,
    is there any standard report for how much invoices(billing) should be made against a quantity contract.
    my requirement is suppose if  i enter a quantity contract number then it will display all the invoices against that contract with
    invoice values.if any please let me know so that we make make our process much better.
    regards,
    amar.

    Dear Amar,
    In SAP, this contract to Invoice their is not standard report.
    Report
    If you enter a quantity contract number, to get a list of invoices with qty and invoice amt
    Prepare a SQVI REPORT
    USING TABLES
    VBRK for Invoice qty amt
    VBRP for Invoice number, dates...
    VBFA to get the intial document number
    VBAK - to get the contract number
    VBAP - to get the material.
    Its worth spending little time to create the report.
    Ensure standard SAP contract to Invoice is like compartments
    Regards,
    Mani

  • Report is executing more than one hour

    Hi All,
    I have an issue with my report,its taking more than one hour for execution.
    This report is called through an package,in package there are cursors which retrive data and sends to mail.The problem is with this select statement in cursor,its taking a lot of time to retrive the data.
    In my cursor select statement i am using the following tables
    HZ_PARTY_SITES HPS,
    HZ_CUST_ACCOUNTS CUST,
    HZ_CUST_ACCT_SITES_ALL HCASA,
    HZ_CUST_SITE_USES_ALL HCSUA,
    HZ_LOCATIONS HL,
    OE_ORDER_HEADERS_ALL OOH,
    OE_TRANSACTION_TYPES_TL OT,
    OE_AUDIT_ATTR_DESC_V AADV
    when i use OE_AUDIT_ATTR_DESC_V ,its taking a lot of time to retrive.So any one can help me out in this issue,how to add this view to other tables
    Regards,
    RR

    RR,
    Before you add any indexes to the listed tables, check with Oracle support to ensure you will be violating your Oracle Enterprise Business Suite agreement. Oracle has specific rules on modifying EMS tables. Additionally, any EBS patch or update that gets applied will likely drop any custom changes to these tables. It might be better for you to open a Service Request with Oracle Support and have them tell you how to improve the performance of your query since all of your tables are EBS tables.
    Craig...
    Message was edited by:
    CraigB
    RR, you may also want to check with your DBA(s) to see when the Statistics were last gathered on these tables.

  • Table for production order Activity Quantity

    Hi Experts,
    Can anybody please tell me the name of table where Production order planned and Actual activity quantity with reference to production order number gets saved ?
    Thanks in advance.
    Regards,
    Bijay

    Hi bhatiya,
    when ever you want to see the table or field name u just click F1 where the data entred field and click on technical button which is screwdriver type icon and u can find out the table name and field names.
    if it is useful to you please assign points.
    regards,
    Gopi.

  • I want Activity quantity in disbale mode in  CJ20N

    Dear friends,
                        I want activity quantity field in project builder screen. Transaction code is cj20n . if any body knows about this requirement plz help me
    S.Murali naidu

    Dear srinivas,
    In project builder screen ( CJ20N) , in  activites choose external activities . In this screen i am getting activity qty field in display mode. But i want this field in inactive mode. How can i do it.
    Other wise send ur mail id . I will send the screen shot.
    S.Muralli Naidu

  • P6 Report - Filter based on activity dates

    Good morning,
    I'm working on a report that should include all the activities in a project that respect the following condition:
    Finish date > BL1 finish date + 3 months
    As i can see I can compare a date with a standard date variable (Earliest project start, Latest project finish etc...) but i can't compare two date attributes.
    Is it possible to define new date variables?
    Thank you very much for your help

    Why avg here?
    What columns you want to show in the report?
    for a employee for given date if he have 2 rows then you may sum up hours right?
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    Hours

  • Activity Quantity Planning Layout

    Hi,
    I have created a new activity quantity planning layout which shows the activity quantity per month.  I loaded the 12 months data without error but when I checked KP26, it is showing the activity quantities up to 4th month only.  Can someone advise and help to enable me to load the full 12-month periods?
    Best regards,
    Thess

    Thanks, Bjoern;  Sorry for the late reply.
    The activity qty layout is:
    cost center activity type   apr   may   jun   jul   aug   sep   oct   nov    dec   jan   feb   mar
    Is this possible in excel upload?  As much as possible I don't want to do this in LSMW.
    Thanks to advise.
    Best regards,
    Thess

  • LTP and activity quantity by month

    Dear all,
    fur budgeting purposes I'm running long term planning (enter production volume by months), after I'm trying to get the activity quantity related with this production but instead of 12 months system collects all activity quantities in 1 month only. It seems that KSPP transaction is not distributing activity quantities by months. How I can see activity quantities by months?
    Like:        Jan    Feb    March
    Production: 100   200   300
    Activity :   50     100   150
    Steps that I have run: MD61->MS01->KSPP

    hi
    you can use t-code:kp26, it will plan activity for month
    Regards,
    sreekanth

Maybe you are looking for

  • Separate Queries, Separate Group By's w/ Wizard

    I used the wizard to create a report w/ two queries. Using the wizard, I set the first query to designate a specific field as a group field. When I added the second query via the wizard, the step to set a field as a group field was skipped over. I ne

  • Bursting and Distributing a Report Error

    Dear All, Following the example of bursting and distribution in below document as similar case is required in my production environment. [http://download-west.oracle.com/docs/html/B10602_01/orbr_dist.htm] i have followed the entire sequence as mentio

  • Issue with lookup query OIM9.1

    Guys, I am trying to set lookup query for my object form, but its giving me error "Required property not set". I have ran the query in sql client and its working perfectly fine. Thanks in advance. Thanks.

  • How can I fix my network problems?

    Recently, I've been having some network problems. To be a little more detailed, I'll start from what usually happens. Every now and then, my network connection will stop responding, or lag quite a bit. Sometimes when I'm playing World of Warcraft, I'

  • Yosemite 10.10.3 crashing daily

    I got a Macbook Pro 13" mid-2012. After updating to 10.10.3 I started getting kernel panics daily. Usually the system crashes while browsing the web. Check my two logs out and let me know what might be causing the crashes, please. Fri Apr 17 11:41:52