Defaulting Estimated Cost in IW32

Hi gurus
In transaction IW32, tab Costs, sub-tab Costs, there is a field for Estimated Cost.
Is it possible to default the value of the PLANNED costs to the ESTIMATED costs when the Order is released?
I read in another forum that there is a user exit, but I can't seem to find it.
Any kind of help is much appreciated.
Thanks
Nicholas

Nicholas,
I haven't tried it, but it may be possible in user-exit IWO10009 (at save) using function module CO_IH_SET_HEADER.
Be warned - this option is not recommended. If you must use this option don't change too much data or you can seriously screw-up you orders. Also ensure you test thoroughly...
PeteA

Similar Messages

  • Estimated costs from PM order in PS report

    Hi,
    In PS we have configured a reports stating. budget (wbs), planned cost (PM order), actual (Pm order). Due to the fact that the PM order is linked to the WBS code, we can see all values. Some are on WBS level, some on PM order level.
    A user is requesting to have another collum stating the estimated costs that can be entered in a PM order (header level). In CJE5 you can configure the report, but can anyone of you tell me how i can configure a collum showing estimated costs on the PM order.
    Thanks in advance for your help.
    Kind regards,
    Peter

    Hi,
    If you do an F1 on the estimated costs field in the order it says that this cannot be evaluated in reports and also the availability control is also not possible. So not sure whetehr you can bring this in CJE5. On the other hand the value in this fields is stored in AUFK table. So if you are using any custom reports, then you can think of pulling in this data there.
    Regards
    Sreekanth

  • Displying wrong data after entering estimated cost while creating travel request.

    Hi Team,
    We are facing an issue while creating travel request from portal.
    When we are entering estimated cost and after clicking on save and send button we are getting data is saved as correct.But after clicking on display form button the data is showing as different.
    But after clicking on display form it is showing as 298900(adding two zeros at end for every cost).
    Please help on this.
    Thanks & Regards,
    Kumar.

    Hi Shankar,
    Thanks For the reply. Can you please let me know what settings need to be there in SU3. This issue is effecting for all the users belongs to that country. Can you please suggest me!!
    Thanks in advance.
    BR,
    Kumar.

  • Defaulting a Cost Center during PR/PO creation for Indirect Materials

    Dear Gurus,
    When creating a PR or PO for indirect materials (No Material Master/Numer), is there a way to default a Cost Center (maybe based on the Material Group) in the PR/PO during creation ?
    I know that there is a way to default the GL Account Code via Entry Aids. Is there something similiar for Cost Center ?
    Thanks

    I don;t think it is possible via config but you can do it with User exit where you can insert the logic for account assignment category and Material group combination and material number is blank than insert the particular cost center into the cost center field.
    use PR item level user exit for PR and same way for PO.

  • Add estimated cost in PM Service order after release of order.

    I have released the PM service order. Now I need to add the estimated cost in service order. . Please tell me a way to do so. I have only released the order and no other transaction has been done.

    ANIMESH KUMAR,
    AS standard you cannot change the estimated cost value after release (REL).
    However, I have seen two work arounds:
    - Copy the field onto the Enhancement tab via user-exit IWO10018
    - A bespoke TCode/program to directly update the AUFK-USER4 field
    PeteA

  • Anyone has print out the iPhoto album book by apple after finish editing? May I check is the quality good? I have compiled my photo album book , choosen hard cover option , 100 pages , estimated cost is US150. Not sure worth to print out or not?

    Anyone has print out the iPhoto album book by apple after finish editing? May I check is the quality good? I have compiled my photo album book , choosen hard cover option , 100 pages , estimated cost is US150. Not sure worth to print out or not?

    All I can say is the books I've created as gifts to my children for their children were received with absolute joy and appreciation (each book chronicled in pictures  the first year of each grandchild's life). Granted the sentimental factor had a lot to do with the recipient's enjoyment of the book but they were spetacular. The book with its glossy dust cover is a very impressinve way to present your photos. 
    As Larry has pointed out so many have posted here that they were very satisfried with their book and Apple is very good about correcting problems. 
    To make sure there are no errors in the book before you order preview the book as described in this Apple document: iPhoto '11: Preview a book, card, or calendar before you order or print it. If the PDF file shows no errors, either in text typos (my biggest problem) or in missing photos, etc., the printed book will be error free.
    OT

  • Estimated Cost and Actual Cost

    Hi Friends,
               Can someone tell me, which MM tables(logically database) has these fields stored?? Estimated cost and Actual cost??
    Note : Where and How can I find the logical data base??
    Thanks alot in advance,

    Yes thank so much for your quick help.
    I see here we can get 1- Plan cots , 4 Actual cost, But in PMCO, how can we get the estimated cost, I see that WRTTP = 1 also contain the value for estimated cost but not plan cost . Please help me.
    Thanks

  • Release Strategy-estimation cost and po cost

    Hi
    Client issu like...in RS
    We are maintain our estimation cost in Ztable(Zdev).Purchase order net value is Actual Cost.
    My Purchase order cost is less then Estimation cost .NO Problem. We config the RS some Level.
    But My PO cost is Greater then Estimaton Cost ,that time client wants some RS in purchase order.
    How will i configure Release Starategy Negative Deviation occur in comparison Statement?
    Example estimation is RS 10000 (ztable)
    Actual PO cost is RS 13000(Ekko)
    Now Run Zreport (ZComp) The system Will give 3000 is negative deviation
    Nagative dev  RS 3000
    Above The RS 3000 ,How will i configure Release Strategy In PO?
    Rds
    Kavi

    Hi kavi,
    can you please eloberate your issue,
    as i under stood you are setting the releasestrategy for PO price.

  • PM/CS Order:Copying Planned Cost to Estimated Cost

    Hi All,
    There is a requirement to copy all the planned costs to estimated costs while releasing a PM/CS order.
    Any ideas how to implement this?
    We have tried all the possible user exits , but we could not find anything helpful.
    Harmeet.

    Hi,
         We had a similar functionality  ...I have checked the code in our system and we have used user Exit :IW010009 and below is the code :
    The code was something as below :
    the following function selects all the costs that have to do with the
    work order. All costs in each line.
      CALL FUNCTION 'PM_WORKORDER_COSTS_LIST'
           EXPORTING
                LIST_CURRENCY  = caufvd_imp-waers
                PMCO_DETAIL    = 'X'
                ALL_CURRENCIES = 'X'
                EXTERNAL_CALL  = 'X'
           TABLES
                LIST_AUFK      = i_caufvd_imp
                LIST_PMCO      = i_list_pmco
                COMP_PMCO      = i_comp_pmco
           EXCEPTIONS
                NO_ORDERS      = 1
                NO_CURRENCY    = 2
                NO_COSTS_FOUND = 3
                OTHERS         = 4.
      IF SY-SUBRC EQ 0.
    We will import the totals information
        READ TABLE i_list_pmco INTO wa_list_pmco INDEX 1.
        caufvd_imp-user4 = wa_list_pmco-pkosten.
    Hope the above would be helpful for you ,,
    regards
    pushpa

  • IW31 - Copy planned cost to estimated cost cost - user exit/BADI

    Hi all,
    My requiremnt is such. While creating an order via IW31:
    - the user clicks on the release button directly and saves.
    - the user does not click on the cost calculate button.
    The value of planned cost in the cost tab should be copied to estimated cost.
    I have tried using exit IWO10009 but I am somehow not able to achieve this.
    Can anyone help me regarding this!
    Regards.

    Hi,
         We had a similar functionality  ...I have checked the code in our system and we have used user Exit :IW010009 and below is the code :
    The code was something as below :
    the following function selects all the costs that have to do with the
    work order. All costs in each line.
      CALL FUNCTION 'PM_WORKORDER_COSTS_LIST'
           EXPORTING
                LIST_CURRENCY  = caufvd_imp-waers
                PMCO_DETAIL    = 'X'
                ALL_CURRENCIES = 'X'
                EXTERNAL_CALL  = 'X'
           TABLES
                LIST_AUFK      = i_caufvd_imp
                LIST_PMCO      = i_list_pmco
                COMP_PMCO      = i_comp_pmco
           EXCEPTIONS
                NO_ORDERS      = 1
                NO_CURRENCY    = 2
                NO_COSTS_FOUND = 3
                OTHERS         = 4.
      IF SY-SUBRC EQ 0.
    We will import the totals information
        READ TABLE i_list_pmco INTO wa_list_pmco INDEX 1.
        caufvd_imp-user4 = wa_list_pmco-pkosten.
    Hope the above would be helpful for you ,,
    regards
    pushpa

  • No expense type for estimated costs has been defined

    Hi SAP guru,
    My client wanna check budget from travel request. Check budget through Funds Management already available when post travel expense before posting to FI however they need on the travel request.
    I read the documentation, it could be happen when approval the travel request. The problem is travel request used the activity, and try to enter the estimated cost as value.
    When we enter the estimated cost, system refused with error message:
    No expense type for estimated costs has been defined. Cannot save
    Message no. PTRA_WEB_INTERFACE174
    How to link the expense type to estimated cost?
    or how is the scenario in order we can check budget from travel request?
    any kind help will be appreciate,
    dewi

    Hello Dewi,
    If you have the funds management active, you need to go to        
    maintainance view V_T706B1 and create an expense type for which   
    you choose out of the 'special use' drop down box the value       
    'estimated cost, no reimbursement'.                               
    Background: When saving a travle request we build up a commitment 
    for the estimated cost. This is new functionality.
    Regards,
    Raynard

  • Trying to default a cost plan for PS from a CRM contract?

    I am trying to default a cost plan (akin to a budget maintained in IM) onto CJ40.
    This cost plan will be defaulted via a CRM table maintained especially for the appropriation/budget.
    Has anyone defaulted a cost plan onto CJ40 and if so how?
    Thanks in Advance,
    -SR

    Hi,
    The message is because your position has the historical record flag (HRP1000-HISTO) set to u2018Xu2019. From SAP help:
    Allows you to mark infotype records as historical records. Historical records are permanently stored on the database, so that you can report on the information at a later point in time.
    NOTE: You cannot change records once they are marked as historical. As a result, you should not mark records as historical unless you no longer require them for processing.
    Typically, the flag is set if a user has delimited an object through PP01. Youu2019d see the historical flag in the window that pops up.
    To remove the flag, execute report RHHISTO0, enter the relevant details in the selection and execute. The next screen ill show you which record has the flag set. Select that row and click u201Cremove historical recordu201D button on top. You should then be able to remove cost center from the position.
    Hope this helps.
    Donnie

  • ESS Travel Request  - Estimated Cost

    Hi,
    We are using ECC 6.0 with EHP4, ESS & MSS Business Package 1.41
    When we create Travel Request under ESS/TRavel & Expenses, we can see the Estimated Cost in the "General Trip Data".
    However, when we enter the estimated cost and click the Review button it doesn't appear on the Summary.
    Thanks,
    Rajnikanth

    Funs Management should be active
    Please check the note 1544628
    For this I suggest you to check the documentation in
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/1c/be4941bfb4de2be1000000
    0a1550b0/frameset.htm
    and
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/f0/ca3fec260211d28a430000
    e829fbbd/frameset.htm

  • How to determine estimated cost of dynamic SQL queries before execution?

    Hi Performance Gurus,
    Does anybody need know of a function module or program which can give me an estimated cost for a given SQL query. SQL query is a dynamic query and we need to know the estimated cost before we execute it.
    Cheers
    Jiby
    Moderator message: subject corrected, in the future please use one that describes your problem better.
    Edited by: Thomas Zloch on Aug 24, 2010 12:56 PM

    Hi,
    The mentioned function module does not give you the cost but the plan.
    On DB2 e.g.
    U Explanation of query block number: 1   step: 1
    D Query block type is SELECT
    S Performance appears to be bad
    S No index is used. Sequential tablespace scan
    E Method:
    D           access new table.
    D           data pages are read in advance
    D           pure sequential prefetch is used
    D           new table:
    D                       SAPD8M.DD02L
    D                       table space locked in mode:  N
    D           Accesstype: sequential tablespace scan.
    I think there is some information that could be used as well (cost figure transformed to text)
    S Performance appears to be bad
    S No index is used. Sequential tablespace scan
    But as already said: the whole requirement is quite strange...
    I'm not aware of any other options, sorry.
    Kind regards,
    Hermann

  • What is meant by estimated costs and estimated rows in SQL explain (ST05)?

    Hi
    I was just wondering if someone could explain/clarify exactly what is meant by estimated costs and estimated rows in the 'explain' / execution path functionality of ST05.
    For example, we could see a SQL statement was very inefficient accessing a table:
    Estimated Costs = 6.006.615 , Estimated #Rows = 0
    Does this literally mean that for 6 million costs / reads / effort, 0 results were returned??
    Is this a ratio of efficiency?
    We built an appropriate index and now we have:
    Estimated Costs = 2 , Estimated #Rows = 1
    A lot better! The job was taking 40+ hours and being cancelled; now it takes 5 minutes. So a 3 million times improvement sounds realistic...
    However, we had another instance where the explain showed:
    ( Estim. Costs = 195.077 , Estim. #Rows = 538.660 )
    and we built an index, and now the explain is:
    ( Estimated Costs = 41.867 , Estimated #Rows = 538.660 )
    What exactly does this mean - as the costs has been reduced, but the rows is the same?
    Thanks
    Ross

    Hi Ross,
    >I was just wondering if someone could explain/clarify exactly what is meant by estimated costs and estimated rows in the >'explain' / execution path functionality of ST05
    Take a look at note 766349, point 20.
    >An EXPLAIN displays "Estimated Costs" and "Estimated Rows", which
    >are simply the CBO's calculation results (refer to Note 7550631).
    >Since these results are based upon a number of assumptions (column
    >values are distributed equally, statistics), and depend upon the
    >database parameter settings, the calculated costs and rows are
    >useful only within a margin for error. High "Estimated Costs" and
    >"Estimated Rows" are therefore neither a satisfactory nor a
    >necessary indication of an expensive SQL statement. Also, the
    >calculated costs have no actual effect upon the performance - the
    >deciding costs are always the actual ones, in the form of BUFFER
    >GETs, DISK READs, or processed rows.
    So the costs and rows are values conjured up by the cost optimizer when calculating the access path that is most likely to be efficient. THEY ARE ESTIMATES!!!
    >Does this literally mean that for 6 million costs / reads / effort, 0 results were returned??
    As per the above, no. The costs and rows are estimated before the rows are fetched so there are no actual results yet.
    >What exactly does this mean - as the costs has been reduced, but the rows is the same?
    An efficient database access is exactly that; reads only the blocks that contain the rows it needs and nothing else. If the access is inefficient it will spend time accessing blocks that contain no data that is eventually contained in the result set.
    This question would be better placed in the Oracle forum...
    Regards,
    Peter

Maybe you are looking for