WBS Element Actual Cost and 'Detailing the  Value Type ' issue

Hello BW Experts ,
I want to extract the WBS Element Actual Cost and Revenue.
I have selected the data source 0CO_OM_WBS_6 .
In this data source there is a field  Detailing the value type ' 0VTDETAIL.
As per SAP BI Help if the value of this field exists between 1 to 4 then it is actual cost of WBS ( also Key figure Category 0METYPE should be 1000 for actual cost and for revenue it is 1001).
value 4 of 0VTDETAIL means CO Activity Allocations.
When I see  the data from this data source in RSA3 , I could not get any WBS whose 0VTDETAIL is 1 to 4 and Key Firgure Category as 1000, value type = 10.
Is there any other data source I should select in order to get actual cost for WBS ?
I can see the settelment cost whose 0VTDETAIL = 5 through this data source in RSA3.
But I want to see the data for the Actual Cost whose 0VTDETAIL = 4 .
What could be the reason ?
Thanks in advance .
Amol.

Dear Oscar,
Thanks for your response,
The Actual Cost posted by our Functional Consultant is USD 250, but i am getting the Total Actual cost is ZERO (Sum of -250 +250) as i shown above.
the posted  actual cost is +250, finally we need this figure only,
if i do restriction on Sender receiver Indicater field with S than i will get Actual Cost 250, but in SAP standard RKF for Actual Cost there is no restriction on Sender receiver Indicater field (S & H)
I hope you got my point now.
Thanks
Amar Reddy

Similar Messages

  • Actual costs and Planned Costs

    HI Friends
      I want to know the Main Tables from which i can get the <b>Actual costs and Planned    Costs</b>     for the given Cost element or object number
         I tried with table COEP and i got actual costs up to all cost elements in the given controlling area and in given cost center , but for some cost elements, this tables does not have any entries...
    So is there any other way to get these Actual costs and
    from where i can find the Planned Costs
    Reagrds Rk

    Hi
      I already checked these tables but i didn't get the exact data
      for actual costs i checked COEP but some costs are missing there
      and i could n't find the field BENKZ in coep table
         I am comparing these values with the standard transaction <b>S_ALR_87013611 </b>
      but not getting exact details  in my program
    can you please help me in this regard..
    Does anybody worked on this transaction <b>S_ALR_87013611 </b>, then please explain me the logic how it is getting the actual and planned costs
    Regards Rk
    Message was edited by:
            Rk Pasupuleti

  • WBS elements for Customers and Vendor, Bank  entries....

    Hi SAP Guru's,
    For revenues and Costs we can trace them  thru WBS elements entry in FI at the time of actaul amount sepent.
    But for making the Advance payments to Customers and vendors or for any other Capital purpose, How to track the payments projects wise?
    in f-29 for f-48, there is no option of giving the WBS elements. Pls help How to  the WBS elemts filed  Mandotory in FI Documents for all the entries posted in FI for vendor, customer, Banks accounts also?

    Hi,
    This is possible if you configure posting down payment in CO. You do it via OKEP transaction. The, after checking that you have configured number ranges (KANK), you can reconstruct your down payments in WBS via OKBG. You can see this customization steps under: Project Systems - Costs - Actual Costs - Update Down Payments.
    Regards,
    Eli

  • Project POC to determine actual cost and actual revenue

    Dear all experts,
    please help me on the following issue.
    i am working on a project for sales.
    the project actual cost and actual revenue will be determined by the project POC.
    i have read the SAP help about project progress.
    but it confused me.
    my first question is how can i caculated the actual POC?
    is there a standard predefined way to solve it?
    please give me some hints or suggestions.
    thanks a lot.
    Judy

    Hi,
    Can anyone detail the steps involved in carrying out RA with Valuation Method 7 with progressive value analysis. Here, we can give a percentage of POC into the system as certified by the Engineers unlike Valuation method 3 where the POC is calculated on the basis of actual costs incurred.
    In the case of valuation method 3, only revenue is analysed by the system with reference to the POC and necessary entries are posted as Revenue surplus or Revenue in excess of billings. Whereas in the case of valuation method 7, both the revenue and costs are analysed and necessary provisions are made both for revenue and costs.
    Regards,
    Judy

  • Mutator to compute set and return the value

    Hi
    I am having trouble working out how to do a mutator that does all three
    compute a value set the value and then return it this is what i have so far
    this example calculates and returns the value but does it set the value of totalSlices ???? this is the best option so far
    public int totalSlices (){
    int total = meatSlices + vegSlices;
    return (int) total;
    this one seems more likely to me but unsure is this a set method as well
    public insert (int fiveC)
    fiveCentCoin += fiveC;
    returne fiveCentCoin;
    this is the final example i have come up with but dont know if it sets the value as well
    public int calculateCost () {
    double cost;
    if (age==0) {
    age = 0.1;
    if (neutered) {
    cost = (100/age) + (stay * 3) + SHOTS + TAGS;
    } else {
    cost = (100/age) + (stay * 3) + SHOTS + TAGS + NEUTER;
    return (int) Math.round (cost);
    the problem i face i am not sure of how to combine a mutator calculation, set method and return it all in one i havnt done that before and cannot find an example
    thanks

    I think you're trying to take a hollistic approach to programming. That won't work.
    You need to go back and get a good understanding of exactly what each element of Java does.
    Sylvia.

  • Bind Variable in SELECT statement and get the value  in PL/SQL block

    Hi All,
    I would like  pass bind variable in SELECT statement and get the value of the column in Dynamic SQL
    Please seee below
    I want to get the below value
    Expected result:
    select  distinct empno ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    100, HR
    select  distinct ename ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    TEST, HR
    select  distinct loc ,pr.dept   from emp pr, dept ps where   ps.dept like '%IT'  and pr.empno =100
    NYC, HR
    Using the below block I am getting column names only not the value of the column. I need to pass that value(TEST,NYC..) into l_col_val variable
    Please suggest
    ----- TABLE LIST
    CREATE TABLE EMP(
    EMPNO NUMBER,
    ENAME VARCHAR2(255),
    DEPT VARCHAR2(255),
    LOC    VARCHAR2(255)
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (100,'TEST','HR','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (200,'TEST1','IT','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (300,'TEST2','MR','NYC');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (400,'TEST3','HR','DTR');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (500,'TEST4','HR','DAL');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (600,'TEST5','IT','ATL');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (700,'TEST6','IT','BOS');
    INSERT INTO EMP (EMPNO,ENAME,DEPT,LOC) VALUES (800,'TEST7','HR','NYC');
    COMMIT;
    CREATE TABLE COLUMNAMES(
    COLUMNAME VARCHAR2(255)
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('EMPNO');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('ENAME');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('DEPT');
    INSERT INTO COLUMNAMES(COLUMNAME) VALUES ('LOC');
    COMMIT;
    CREATE TABLE DEPT(
    DEPT VARCHAR2(255),
    DNAME VARCHAR2(255)
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('IT','INFORMATION TECH');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('HR','HUMAN RESOURCE');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('MR','MARKETING');
    INSERT INTO DEPT(DEPT,DNAME) VALUES ('IT','INFORMATION TECH');
    COMMIT;
    PL/SQL BLOCK
    DECLARE
      TYPE EMPCurTyp  IS REF CURSOR;
      v_EMP_cursor    EMPCurTyp;
      l_col_val           EMP.ENAME%type;
      l_ENAME_val       EMP.ENAME%type;
    l_col_ddl varchar2(4000);
    l_col_name varchar2(60);
    l_tab_name varchar2(60);
    l_empno number ;
    b_l_col_name VARCHAR2(255);
    b_l_empno NUMBER;
    begin
    for rec00 in (
    select EMPNO aa from  EMP
    loop
    l_empno := rec00.aa;
    for rec in (select COLUMNAME as column_name  from  columnames
    loop
    l_col_name := rec.column_name;
    begin
      l_col_val :=null;
       l_col_ddl := 'select  distinct :b_l_col_name ,pr.dept ' ||'  from emp pr, dept ps where   ps.dept like ''%IT'' '||' and pr.empno =:b_l_empno';
       dbms_output.put_line('DDL ...'||l_col_ddl);
       OPEN v_EMP_cursor FOR l_col_ddl USING l_col_name, l_empno;
    LOOP
        l_col_val :=null;
        FETCH v_EMP_cursor INTO l_col_val,l_ename_val;
        EXIT WHEN v_EMP_cursor%NOTFOUND;
          dbms_output.put_line('l_col_name='||l_col_name ||'  empno ='||l_empno);
       END LOOP;
    CLOSE v_EMP_cursor;
    END;
    END LOOP;
    END LOOP;
    END;

    user1758353 wrote:
    Thanks Billy, Would you be able to suggest any other faster method to load the data into table. Thanks,
    As Mark responded - it all depends on the actual data to load, structure and source/origin. On my busiest database, I am loading on average 30,000 rows every second from data in external files.
    However, the data structures are just that - structured. Logical.
    Having a data structure with 100's of fields (columns in a SQL table), raise all kinds of questions about how sane that structure is, and what impact it will have on a physical data model implementation.
    There is a gross misunderstanding by many when it comes to performance and scalability. The prime factor that determines performance is not how well you code, what tools/language you use, the h/w your c ode runs on, or anything like that. The prime factor that determines perform is the design of the data model - as it determines the complexity/ease to use the data model, and the amount of I/O (the slowest of all db operations) needed to effectively use the data model.

  • WBS Element in customer and Vendor invoices

    Hi Gurus,
    Is it possible to have wbs element in customer and vendor invoices, which will allow to see project wise invoices in FI reports?? If yes, how? And if no, what is the general business process for such scenario???
    Thank You

    Hi Mohit
    I Believe this is possible yet not practical for the reasons there is no one to one match between WBS and Customers / Vendors. You can have multiple WBS for a single customer invoice / Vendor invoice.
    Expert advice will follow soon
    Regards
    Mustafa

  • How to retrieve the procedure value and pass the value to a form field

    How to retrieve the procedure value and pass the value to a form field?

    Set property for the field and the value is the actual procedure/function.
    Cheers

  • WBS Element as Sender and Receiver in New GL Allocation

    Dear Experts,
    Please need your advice how to configure WBS Element as Sender and Receiver in New GL Allocation, since this field is not activated in New GL Allocation (FAGLGA11 - General Ledger: Create Act. Assessmt) ?
    We already tried to activate this field, but the system forced to include this field also in the total table ( FAGLFLEXT). And since we can't add the WBS Element as PSP_PS_NR, we add as ZZPSP_PS_NR to the total table. But the issue come up, since the transaction(FAGLFLEX) cant detect this field, and show error as below "Field FAGLFLEXT-PS_PSP_PNR is not defined in the ABAP Dictionary"
    Please kindly advise. Many thanks for your valuable inputs

    Hi,
    I believe you have added the field in these 2 places:
    1. Add field 'ZZPS_PSP_PNR' (WBS element) to FAGLFLEXT table in configuration (menu SPRO   > Financial accounting (new)   > Financial accounting global settings (new)   > Ledgers   > customer fields   > Include fields in Totals table) and activated the same.
    2. And, added this field in 'Assign scenarios and customer fields' to your leading ledger.
    WBS element data gets populated by assigning ZZPS_PSP_PNR to the ledger itself (IMG: Assign Scenarios and Customer Fields to Ledgers -> select ledger -> "custom fields"). Necessary field mapping logic is generated by this customizing for the system to populate ZZPS_PSP_PNR in FAGLFLEXT and FAGLFLEXA.
    Afterwards, please regenerate GLU1 structure by running report RGZZGLUX while no posting is being made in the system.
    I believe this will help you.
    Best Regards,
    Vanessa.

  • Service Order Actual costs and revenue

    Hi,
    Can you please let me know how to find actual costs and revenue related to service orders?
    what tables to go to?
    We are planning on going back to a service order from the billing document and get the actual labor costs.
    Thanks,
    MS

    Hi Mahesh,
    Thank you very much for that quick response.
    EKKO is for purchasing documents. Can you please let me know how to use it for my service order?
    Thanks,
    Maulik Shah

  • I am trying to build a basic TCL skeleton script that reads a remote SNMP OID and displays the value on the screen.

    I am trying to build a basic TCL skeleton script that reads a remote SNMP OID and displays the value on the screen.
    I don't want it to be an EEM Event, I just want to run it from the (tcl)# prompt.
    So I guess I'm asking if you can use cli_exec and other commands in the "namespace import ::cisco::eem::*" in a normal non-EEM script - can I do that?
    This is the error I get:
    OTN.159(tcl)#source flash:TCL_SNMP_Remote_Read.tcl
    invalid command name "::cisco::eem::event_register_none"             ^
    % Invalid input detected at '^' marker.
    What am I missing?
    =================  TCL_SNMP_Remote_Read.tcl  ==============================
    ::cisco::eem::event_register_none
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    if [catch {cli_open} RESULT]
        { error $RESULT $errorInfo }
        else { array set cli1 $RESULT }
    if [catch {cli_exec $cli1(fd) "snmp get v2c 192.168.1.100 public timeout 1 oid 1.3.6.1.2.1.1.1.0" } RESULT]
           { error $RESULT $errorInfo  }
           else { set SnmpSysDesc $RESULT }
    if [catch {cli_close $cli1(fd) $cli1(tty_id)} RESULT] {
                error $RESULT $errorInfo
    puts $SnmpSysDesc
    =========================================================================
    In the sho-run config I have:
    event manager directory user policy "flash:/"
    event manager session cli username "cisco"
    Any help to get me started would be greatly appreciated!
    Tim

    If you don't want an EEM policy, then don't use any of the EEM constructs.  Instead, all you need is this:
    set output [exec "snmp get v2c 192.168.1.100 public timeout 1 oid 1.3.6.1.2.1.1.1.0"]puts $output

  • How do I click on a cell in a table control, and display the value in a string?

    What I would like to do is to click on a cell in a table control, and have the value of the cell be displayed in a string indicator. What ever cell I click on, I would like the value to be displayed in the indicator.
    Thank you!
    Solved!
    Go to Solution.

    ... or
    Event >>> ouse down for table.
    Use Coords" to feed invoke node "point To Row Column" and returned "Cell Postion" can be unbundled to produce the row and column tht can be used to index out the value.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • UDF for reading a particular line and storing the value in a variable

    Hi Experts,
    I am reading entire file content in single feild in source data type.I want to write a UDF to seach for a particular pattern(say :25: and store the value after it i.e  34535764778 detination for further use).
    EX: My  sample file and its  has feilds like
    point assured
    Thanks

    Hi since u are using a single field only then u dont need to use any advanced function
    Wel because if u see the formation of the queue u wil find the the whole data is under one context.. and there are not more context changes
    Convert the string to an array and progressively u can check for the four checks if the a<i>=:
    then a[i+]=2 then a[i]=5 and a[i+] =: and then substring the next 7-8 chrac.. hope u understand
    If this also doesnt work wel then u will have to use the Pattern class in Java
    By the way remember that the substring value cant be retained for the next instance of mapping
    Hope u have that in mind...
    Rgds
    Aditya

  • How to read and update the value of property file

    Hi,
    I am not able read the values from property file.
    Please tell me how to read and update the values from property file using Properties class
    This is my property file : - Config.properties its located in D:\newfolder
    Values
    SMTP = localhost
    Now i need to change the value of the SMTP
    New value :
    SMTP =10.60.1.9
    Pls Help me
    Thanks
    Merlin Rosina,

    Post a small (<1 page) example program that forum members can copy and run that demonstrates your problem.

  • Call  RFC from ECC and display the values in  AET

    Hi ALL,
    I had an RFC in ECC ( Z_CRM_SPEC_DATA) this should be called into my AET Fields in getter method.
    In getter method of tat AET field what code should i write?
    Plz help me on this.

    HI,
    1) Call the  RFC(Z_CRM_SPEC_DATA) from ECC and display the values as mentioned in below AET fields.
    AET FIELDS :    zzfld00000M    zzfld00000N
    Description  :    Budget Quan    Forecast Quan
    values         :    (--5.0)(6.0--
    2) (Fetch Budget and Forecast data from ECC ),you would need to pass Material Number(MATNR) as well as Ship to party info to fetch the budget and forecast data as one material may be assigned to 2 or more SH with specific budget and forecast data for each.
    Edited by: venkatabharathv on May 23, 2011 2:44 PM
    Edited by: venkatabharathv on May 23, 2011 2:49 PM

Maybe you are looking for

  • How can I save voice memos from my iPhone 4 to my MAC?

    I recently updated to the 4s, but really need to save the memos because they are mostly of my deceased Father. I am very concerned that I will lose these memos. Thanks.

  • Invoking ODI Scenario from a BPEL process - Resolved

    I new to Oracle products. I am exploring Oracle Data Integrator tool. I would like to call ODI scenario from a BPEL process. I created a scenario in ODI, I have SOA suite10.1.3.3 installed in my machine. In some portal I have read that, we need to de

  • I am getting error message that my apple mobile device service is not started

    I am locked out of my phone with voiceover control and now I cannot connect to itunes to turn off voiceover because an error message says that my apple mobile device service is not started...help locked out of phone and itunes

  • How gray out the fields in selection screen with parameters

    Hi, Can any one help me how to gray out the selection screen fields Start-of-selection---- Parameters : p_status TYPE edids-status MODIF ID xyz DEFAULT co_51. End-of-selection---- i want to grayed out the field p_status. except At selection-screeen o

  • Alternative reconcilation account

    hi gurus i know how to make two reconciliation accounts for a single vendor but now my query is how to use it how  can i change g/l account at time of gr plz help points will be rewarded regards kunal