Results analysis: any way to exclude certain cost element from calculation?

Hi everyone!
We are implementing Results Analysis for projects. But the client is asking if there is a way to exclude some cost elements of the results analysis calculation. We are using method 07, POC based in the project milestones.
This is why they need this. They say that very often they they have costs higher to what they should be according to the month's billing. So they need to send the corresponding part to a WIP account. But not all the costs. They have internal costs (like the hours of internal resources) and external costs (like materials procurement or external services contracts). They only want to send to WIP the exceeding external costs. But leave all the internal costs in a cost account. So to do this we need to exclude these kind of cost elements (secondary cost elements) from the results analysis calculation. Is there any way to do this? Any ideas?
Thanks in advance!
Regards,
Thalos.

Hi,
In OKG4, next to Line ID there is a field where you can set "N" which means not to include. Make this settinng for required cost elements / Line ID's and then test the changes.
Regards
Sreekanth

Similar Messages

  • Results analysis for POC method with statistical cost element

    Hi,
    We are testing ETO (engineering-to-order) scenario With valuated
    project stock and cost based POC RA method.
    Inventory is updated during external procurement and we have used
    statistical cost elements (Cost element category - 90) for inventory G/L.We want to use a
    Result analysis method which considers this statistical cost elements
    for calculating POC.For this purpose we have implemented SAP Notes
    616960, 616869 and 78420.
    In short, as per SAP note 616869, we created a customer enhancement
    project for customer enhancement 5 of the results analysis (see Note
    H78420). We copied the source code for customer enhancement 5 of the
    correction instructions of note 616869 and then implemented SAP note
    616960 to read the statistical actual costs.
    Then we included the statistical cost as actual costs - Category K in
    OKG4.
    The system is doing POC and revenue in excess of billing calculation
    correctly after taking into consideration the posted statistical cost.
    During settlement of RA (CJ88), system is not giving effect to
    inventory value. On settlement of RA, revenue should be recognized but
    at the sametime the inventory represented by statistical posting should
    be consumed(COS). The system should post a P&L posting which reduces
    the inventory (representing statistical cost) and updates the actual
    costs on settlement.
    In our example, Statistical actual
    posting is of USD 57150, planned revenue USD 100000 and POC is 70.27%.
    Revenue in excess of billing comes to USD 70265.60. Recognisation of
    revenue of USD 70265.60 is not correct as actual consumption is yet to
    happen. The correct posting in FI should be revenue of USD 70265.60
    along with COS of USD 57150.
    Please suggest why on settlement the system is not posting the COS
    along with revenue recognised?
    Thanks,
    BK

    Hi Bijay,
    We are in a similar situation in one project.  Did you get any solution to the problem you posted here? If you can share it, please.
    Regards,
    Gireesh

  • Is there a way to exclude certain groups from my contacts so those birthdays don't show up in my calendar?

    I like the birthday button in iCal, but it is pulling in birthdays from every contact that I have a birthday for in my addressbook.  I have a sub-group that all have birthdays, but I don't want to see those birthdays in my calendar as they are not a group of people I have to deal with on a regular basis.  I don't want to delete those birthdays and lose the data, but I don't want to see their birthdays in my calendar (over 400 people).  Is there any way to exclude certain people's birthdays from my address book?

    The birthday calendar lists all contacts that have a birthday listed in the birthday field.  You would have to do something like cut and paste this data into the notes field of the contacts you wanted to exclude from the birthday calendar in order to keep this data without showing them in your birthday calendar.

  • What is the best way to make  certain cost centers as REQUIRING an internal

    Hello,
    What is the best way to make  certain cost centers as REQUIRING an internal order (when entering invoices in the accounts payable module u2013 transaction code FB60). At the present, if a cost center requires an internal order, and the employee who is  is entering the invoice in FB60 forgets to include the Internal Order, the invoice is incorrectly costed.
    Regards,
    Saeed

    Hai !!!
    The below method can solve your problem
    1.Create Internal order for each cost center from transaction code KO01 - Create and  enter the cost center under Requesting  CCtr
    2. Enter internal order or costcenter / while user post the transaction
        Example Fb60
    Regards
    shamul heq

  • Is there any way to block PDF files sharing from iPad to any another device or cloud? We need to have certain PDFs visible and readable only from iPad.

    Is there any way to block PDF files sharing from iPad to any another device or cloud? We need to have certain PDFs visible and readable only from iPad.

    There are "container" apps emerging for the iPad.  Enough searching & I suspect there would be one for your needs. 
    All in one Application that emphasize security
    Good Collaboration Suite  Secure mobile app-to-app collaboration.
    The Good Collaboration Suite includes Good for Enterprise, Good Share and Good Connect secure mobile apps, simplifying access to email, calendar, contacts, tasks, instant messaging, browsing and document sharing. These apps are built using Good’s next-gen containerization   that includes secure data sharing between any Good secured app as well as app-level encryption independent of the device used."
    http://www1.good.com/applications/

  • Exclude cost elements from settlements

    Hi,
    we are trying to run a settlement from WBS to AuC. When running the settlement we receive error KD503 ( 'Complete allocation structure &'). We have postings on the WBS of which some are relevant for capitalization and some are not. We excluded the cost elements not relevant for capitalization from the allocation structure.
    Is there any way to run a summary settlement and to exclude specific cost elements?
    regards, simon

    Hi Simonderine,
    Check all the debited cost elements on WBSE are included or not for capitalizing and for settlemenet to Cost center as per your Allocation structure mentioned in the settlement profile.
    Make sure that all cost elements should be included in the allocation structure.
    This error is mainly occurs, if any one of the cost element with debit entry at WBS Element level is not included in the allocation structure, whether it may be settled to AUC or CC as per your business requirement.
    Hope this helps you !!
    Br
    Hari.

  • Is there any way to collect the file list from UTL_FILE_DIR.

    I expect the use "Oracle supplied package UTL_FILE" to import our customer order shipments to table by XML format files. I already did the procedure to import one XML file into Table by DBMS_XMLSave.insertXML and UTL_FILE. GET_LINE. And it did work.
    My question is :
    Is there any way to collect the file list from UTL_FILE_DIR. (I put all import XML files into `/usr/tmp?, I want to get all file names from this folder and feed them into UTL_FILE.FOPEN.)
    Thanks in advance

    UTL_FILE_DIR is a very dangerous and deprecated parameter. Oracle very specifically recommends not using it. You should be using directory objects instead.
    As for doing a directory listing, you can use Java stored proc. External procs/functions are not required.
    The following sample shows how to use such a Java stored proc to insert the result of a directory listing into a session temporary table:
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )

  • Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files?

    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    For instance I have 1200 photos on my iPhone Camera Roll. Some of these are shots, that I've taken multiple times, some good, some bad. I just want to clean up my Camera Roll, but going through the pictures on the iPhone's small screen is tedious. I'd much rather look at the camera roll's photo's on my Mac, and then decide which files I'd like to keep, and which to delete.
    I don't want to import the files, as when I import the files, and delete them from Camera Roll, now the Photo's are not on my phone, and the only way to get them back on my Phone is to Import them back in using iTunes, and then they go into the Picture Library and not the Camera Roll.
    In the same way as I can view Pics from my digital camera's SD card on a Mac without having to actually copy them to my computer, is there any app out there that will let me view my iPhone pics without importing them.

    gsharp01 wrote:
    Is there any way I can view / remove pictures from Camera Roll on the iPhone, on a Mac, without actually importing the files? I just want to view / delete files without importing them.
    The short answer is yes.
    Connect your iPhone to your computer.
    Open Image Capture application.
    Click on the 4 little squares at bottom to view them as photos, not a list.
    Select the photos them click the No Entry icon at bottom to delete.

  • Is there any way to export IT Resource data from OIM using the export tool?

    Hello,
    we are trying to migrate an OIM development environment to a preproduction environment and we need to migrate more than 400 IT Resources. We have exported some IT Resources and when we imported them in the preproduction environment their data was not migrated. Is there any way to export IT Resource data from OIM using the export tool? Or is there any other way to do this without doing it by hand?
    Thank you for your help
    Kind Regards

    Well , OIM doesnot provide any such facility to export ITResource data along with ITResource .
    Directly updating the DB could be an option ..
    Thanks

  • Is there any way to work on one Catalog from two computers simultaenously?

    Is there any way to work on one Catalog from two computers simultaenously?
    I have a catalog with 7000 images we have to process / crop / etc. and I was trying to find a way that two of us could work on the images at the same time.
    Thanks!

    No, the LR catalog is not multi user capable (and cannot reside on a network share without tricks). What you could do is
    export part of the catalog (a subset of all images) into a separate catalog ("Export as Catalog", without exporting the negatives)
    work on different images in the two catalogs at the same time
    re-import ("Import from Catalog") the exported work after adjustments on it is finished
    Beat

  • Is there any way to prevent my SSIS Tasks from reformatting themselves when I want to change the Name

    So all my tasks are nicely laid out in my SSIS Package. Now I want to go add a blurb to the Name to make it a little more descriptive. When I do that, Microsoft Visual Studio just automatically re-sizes the task so the entire description, name fits. When
    I make it the right size, my scripting name is wrapping and that's the way I want it to look within my Package. Is there any way to stop Microsoft Visual Studio from automagically adjusting the size of my task when I click on the Name to edit?
    Thanks for your review and am hopeful for a reply.

    There is no way. The designer canvas received improvements in SSIS ver 2012, but this specific aspect remain unchanged.
    What I do I simply use the Format -> Autolayout -> Diagram or you can also/instead Ctrl-A to select all and choose "make same size"
    Arthur
    MyBlog
    Twitter

  • Is there any way to prevent opening the lid from waking my MBP?

    Hi,
    I have a problem with my screen on my MBP such that when the computer is asleep in its case the lid often comes ajar, wakes the computer, and drains the battery. Is there any way to prevent the lid opening from waking the computer?
    Thanks for any ideas on how to fix this.

    Option 3: Open Applications > Terminal and type sudo pmset lidwake 0 (you'll be prompted to enter your admin password). To revert to wake on lid open, use the Terminal command sudo pmset lidwake 1.

  • Is there any way to recover my itunes library from a damaged iPod Touch?

    Is there any way to recover my itunes library from a damaged iPod Touch?

    Your itunes library should be on your computer and should be included in your regular backup copy of your computer.

  • My laptop computer was stolen six months ago. I had over 100 purchases from itunes on that laptop. I recently got a new laptop. Is there any way I can recover my purchases from itunes on to my new laptop?

    My laptop computer was stolen six months ago. I had over 100 purchases from itunes on that laptop. I recently got a new laptop. Is there any way I can recover my purchases from itunes on to my new laptop?

    I would ask here
    https://discussions.apple.com/community/itunes
    when you buy stuff it's connected to the appleID not the computer
    nor the appletv which have no storage so there is no option to get it from the atv

  • My itunes was deleted off of my computer. Is there any way I can get my music from my Ipod back onto my computer?

    Most of my music is from CDs that I don't have anymore. I've got over a thousand songs and most of them were deleted when my computer crashed. Is there any way I can get my music from my ipod back onto my computer? Any sort of program you can buy? Thanks for any help, I really appreciate it!

    Recover media from iPod
    See this post from forum regular Zevoneer for options on moving your iPod data back to your computer.
    tt2

Maybe you are looking for

  • Software issues with lumia 1520 since wp8.1 update

    Hello, I have Lumia 1520 which I bought in may 2014. Last month I have updated to wp8.1. Initially it was doing fine but since last 10-15 days I have been facing a series of issues with my mobile. I suspect 8.1 update to be the reason as I never face

  • Two different file icons in different folders for my php files??

    Hi, I try to move a copy of my running website to my localhost. (MAMP+MacBook Pro) I have problems getting to my local domain. Therefore I tried to install a clean Prestashop installation to see if that worked, which seems to work neatly. Comparing t

  • Progress indicator as clock in BSP.

    Hi All, How can we show the progress indicator as a clock or as the circle with loading effect as we have in EP , in a BSP page? I have seen the phtmlb:progressIndicator and xhtmlb:protectdoublesubmit but thats not what i am looking for. Thanks, Anub

  • Dock crashes constantly

    Hello, Since yesterday my dock is crashing every 5 seconds or so. This happens accross all accounts in Lion 10.7.5 including newly created administration accounts and in Safe Mode. I have -repaired permissions -deleted all com.apple.dock.plist files

  • Please point me in the right direction regarding forms that email to me

    I really want to learn how to program a basic form - Name, email, and message. I know how to create the webpage that has the boxes you type in using dreamweaver. But i need a little direction to get past that point. Here are my questions: 1) What pro