Scrap Value in Order

Hi,
I want report which can give me Scrap value in Production order as follows,
Production Order     Material     Yield Quantity      Scrap Quantity    Yield Value     Scrap Value   Reason for Variance
How I can get this Report from SAP?
Lalit Phegade

Hi,
If its a one time requirement then export to excel & do the maths in excel, if its a regular need, then go for a Z report.
Read the data from AFKO, AUFK, AFRU tables & price of material from MBEW table. Then you can display as per your need.
Regards,
Vivek
Added
You can also evaluate with your technical person to add a few custom fields into the BADi - WORKORDER_INFOSYSTEM, where this processing can be done.
Edited by: Vivek on Aug 7, 2009 3:55 PM

Similar Messages

  • SCRAP QUANTITY IN ORDER CONFIRMATION

    Hi,
        When i confirm an order there is a field called scrap quantity. Supposse there is an order for 10 qty. Now while confirming the order i give in the yield field as 10 & 10 in scrap quantity where will it effect...
    Will it effect costing of the order.
    Can i do like this because my order is for 10 quantity & i am confirming & scarping the same quantity.
    Please guide as i want to use the same field..
    I am in go live satge.Please help.
    regards
    jimmy

    Hi JIMMY 
    As per your question smiltensly you can't book both as yield and scrap with same order quantity.Either you book 10 in yield or in scrap or total of this yield and scrap is equal to production order quantity.That means if order quantity is 10 then you may book 6as yield and 4as scrap.Once you have entered scrap in CO11N no material movements are automatically posted in the system. By confirming scrap you are only reducing the balance confirmable qty in the order. The order costs would increase since you would have posted goods issue for input material without goods receipt for finished goods.
    Now  you want to realize the value of the scrap produced then you would have to do a goods receipt of the scrap as a by-product using movt type 531 in MB1C for the scrap material number.
    It can also automate posting of this if a percentage scrap is know. You can do this in BoM by specifing a negative qty against the scrap material number. Then if the backlash is activated every time confirmation is done the 531 movement line will come automatically in goods movements screen. If no scrap arises then you have to delete that line and post the confirmation.
    Hope this helps ...if so reward points and close this thread.
    regards
    Rajesh

  • Depreciation Value calculate on the basis of Scrap Value

    Hi! Experts,
    My client requirements are:
    (A)
    1)     Suppose Asset purchased Value is Rs. 100000 and its useful life is 5 years.
    2)     Now after 5 years sold the asset on Rs. 20000 .
    3)     The depreciation should calculate on the 80000  
    (B)
    1)     A new Machinery purchased its use life is 10 Year estimated.
    2)     After 2 years depreciation run, Engineer said machine life will be 12 years or 6 years.
    3)     Can we change the machine useful life after 2 years.
    With regards
    Rajesh

    Hi,
    A) depr. Key LINR, useful liefe 5 years
    1. 10.000
    2.  8.000
    3.  6.000
    4.  4.000
    5.  2.000
    (If you want Scrap value 2.000)
    B) You can change the useful liefe in AS02. This is no peroblem. The depr. will be new calculated for open fiscal years.
    regards Bernhard

  • Any SAP standard report on Asset scrap values?

    Dear All,
    Do you know of any Standard SAP report for asset scrap values? A customer needs to have the scrap values reported and would like the same in summary (asset class level) and detail (individual asset level).
    Help appreciated.
    Thanks and Regards,
    Sameer Aroskar

    Hi Sameer,
    I am sending you the list of all standard reports in SAP for Asset accounting
    Menu Path                                                                  Report
    Asset Balances -> Balance Lists -> Asset                       Balance List
    Balances
    Asset Balances -> Inventory Lists -> Physical                  Inventory List
    Inventory List
    Notes to Financial Statements -> International                 Asset History Sheet
    Explanations for P&L -> International                              Total Depreciation, Ordinary Depreciation,
                                                                                    Special Depreciation, Unplanned Depreciation,
                                                                                    Transfer of Reserves
    DepreciationExplanations for P&L -> International            Write-Ups, Depreciation Comparison, Manual
                                                                                    Depreciation
    Cost Accounting                                                         Depreciation and Interest
    Depreciation Forecast                                                   Depreciation on Capitalized Assets (Depreciation
                                                                                    Simulation)
    Preparations for Closing -> International                         Gain for Transfer of Reserves, Changes to Asset
                                                                                    Master Records
    Day-to-Day Activities -> International                             Asset Transactions, Asset Acquisitions, Asset
                                                                                    Retirements, Intracompany Asset Transfers,
                                                                                    Directory of Unposted Assets , List of Origins Of                                                                              Asset Debits, List of origin of cost elements
    I Hope this will help.
    Award points if of any use.

  • How to clear asset scrap value from the asset

    Hi,
    An asset has been partially retired in 2007 and transfered the balance to other asset. There is a scrap value in the same asset and still appearing in scrap value field of asset explorer. This is giving an error in asset year end closing. Please give a solution to solve this issue. The scrap value is visible in the asset under Planned values tab and there is zero net book value.
    Regards
    Paroy

    Dear Markus,
    I dont mean somebody would search for me. I replied to your query to get inputs from various people. Someone might have faced a similar issue, they may have a solution or someone might have known and implemented a Note.
    I think the main purpose of these forums is knowledge sharing and quick solution to an issue which a person in question could not figure out.
    Regards
    Paroy

  • Scrap Values in Variable Selection Screen

    Hi,
    When the end user is trying to select a filter value for the characteristic in a workbook, the selection value screen displays a lot of scrap values, when he closes the selection screen and tries again to select a filter value then it displays the correct values. Can anyone please let me know how i can avoid the scrap values to be displayed or how i can remove the scrap values that are displayed.
    Thanks,
    AM

    Hi,
    Your Master data values might contain the junk values. That is the reason showing junk values in variable screen.
    At filter value selection you might have in the option 'Only Posted values for Navigation' option in InfoObject Properties->Business Explorer Properties.
    Cheers,
    With awards.

  • Is it possible to sort dimension values in order different from alphabetic?

    Is it possible to sort dimension values in order different from alphabetic. То use this sorting in BI Beans. In 10g r2 with awm 10.2.0.2. I try to add attribute like it was show in this forum, but nothing changes.

    Could be usefull if you use java AW api... here's the java code I'm using to create the sort_order attribute
    Dimension myDim = yourAW.findDimension("DIMNAME");
    Attribute myAttr = myDim.createAttribute();
    myAttr.setName("freename");
    myAttr.setClassification("DEFAULT_ORDER");
    myAttr.setIsDefaultOrder(true); // TO NOT FORGET
    myAttr.setDataType("INTEGER");
    myAttr.Create(AWConnection);
    globalAW.Commit(AWConnection);
    It creates a variable - integer - that defines the default order of the dim values. I'm viewing it with AWM and BIBeans. The order is respected with Level-based and Value-based hierarchy but my hierarchies are really simple and unique for all the dimensions.
    BUT !!!! Be carefull, if you don't have any hierarchy in your dimension, you must have at least one level - the default NONE level. Otherwise, it won't work ???

  • Numeric value in order by

    please highlight me the significance of numeric value in order by clause.
    or can we use numeric values in order by clause?

    Obviously if you have a union/union all, you have to specify the column_numberAre you sure ?
    SQL> select 'Oracle' col1 from dual
      2  union
      3  select 'DB2' col2 from dual
      4  order by col1;
    COL1
    DB2
    OracleNicolas.

  • Automatically value pick order value for a GL account

    Dear All
    I have a requirment, I have assighned the Internal order value on GL account master, my requirment is when user use (FB60)and use that GL account its Automatically pick the Order value in Order field, how would I achieved the particular scenario.
    Thanks & Regards

    Dear All
    I have a requirment, I have assighned the Internal order value on GL account master, my requirment is when user use (FB60)and use that GL account its Automatically pick the Order value in Order field, how would I achieved the particular scenario.
    Thanks & Regards

  • Update COPA characteristic values during order settlement -  KO88

    Hi,
    We need to update some COPA characteristic values during order settlement using T-code KO88.
    Looked for options in KEDR transaction, did not find any exits.
    Could some one help us to resolve this issue.
    Thanks
    Vikram

    Hello and thanks for your response.
    We have actually created the new characteristic (WWCRE) and we are populating it in the user exit.  I think the issue is that the characteristic may be 05012010 at the time of the sales order, but it is 04012010 at the time of billing.
    Unfortunately, the PAOBJNR in the billing doc is the same as the order and the user exit doesn't seem to accept the changed value or create a new entry in the CE tables.
    For example, if I change the sales order to cause a new WWCRE value, the system automatically generates a new PAOBJNR but at the time of billing, regardless of changes to the values, it simply keeps the old PAOBJNR from the sales order and doesn't reflect the changes.
    I hope that makes some sense.  Please let me know if you have any other suggestions.
    >Ray

  • Zero value sales order creation

    Dear Gurus,
    Can any one tell me how to do a zero value sales order - as in free sample only the excise value has to come and the net value without excise it must be Zero.
    if you have screen shot sent it regarding the configuration to [email protected]
    very urgent,
    regards,
    Reshmi

    Hi Reshmi,
    you want to do sales order zero do some back end settings
    Go to T-Code VOV7 and select your item category and click details tab.From there pricing tab click F4 slect <b>no pricing</b> then save it
    this result you can do sales order zero valu.
    Hope this can helps you
    Prem

  • Scrap Value posting using T-code AS91

    Hello All,
    I am working on LSMW to to create assets for legacy data using the T-code AS91. I need to pass the scrap value for the Depreciation area 40 but I could not find the _field and screen_  to pass the scrap value in the AS91.
    Please help me to find the field and Screen (Tab) in AS91.
    Table     ANLB     
    Field      SCHRW     
    Thanks,
    Srini

    Double click on depreciation area for which you want to put scrap value in AS91. you will find that field at the bottom.
    if you still do not find scrap value field there, then check screen layout for dep. area in AO21.
    is LSMW really required? use std. BAPI for legacy asset upload.. BAPI_FIXEDASSET_OVRTAKE_CREATE.
    Regards,
    Sayujya

  • AS01: "scrap value % required"

    Hi All,
    creating an asset, SAP gives me the message that is required an entry for the field "scrap valu %"
    What does it depend on?
    Thanks

    In the screen layout for relevant depreciation area in configuration  transaction AO21 it is specified whether scrap value percentage is a required ,optional or suppressed field.Based on this you get error message in depreciation areas tab in AS01.
    Thanks and regards
    Kedar

  • Scrap Value not correct in S_ALR_87011963 (Assets balance by Asset Number)

    Hi Friends,
    For Depreciation area 01, we have maintained the scrap value as 1 INR in (ANLB-SCHRW). When I check the individual Assets by going to AS03 and Dep Area 01, I can see INR 1.
    But when I run the report S_ALR_87011963, it shows me INR 0.01. I am unable to see the reason. Is there any layout for showing the currency in this report?
    what else could be the reason.
    Regards
    VK

    Hi,
    Note 335065 is relevant in this case:    
    This note describes how to include user-defined or additional fields in 
    Asset Accounting reports.                                               
    Restriction: When you include the field using a sort version, the system
    cannot process the formats of the date, quantity and currency fields.   
    This is the reason for the behaviour.
    This note also gives the specific example of field SCHRW ( Asset scrap  value)  in Point 3 and explains how to show field SCHRW in report RABEST_ALV01 by updating structure  CI_REPRABEST as per note 335065.                      
    Regards Bernhard
    Edited by: Bernhard Kirchner on Nov 4, 2010 8:42 AM

  • Make scrap value individually

    hi experts~
    my company use memo value in a given depreciation area
    but situation has been changed
    so we have to set scrap value each asset
    if it's possible plz share your knowledge
    thanks in advance

    Hi,
    The function of Scrap Value, memo Value and Cut off Value are similar only. So now you want to remove the Memo value which means that system will always have that much value in the asset which is kept in the Memo Value. Whereas Scrap Value means for each Asset you can define different Scrap Value. So in this case I dont know the purpose for such change as well as you can make the changes in the Asset through BDC recording of AS02 T-Code.
    Regards,
    Malhar.

Maybe you are looking for

  • How can I transfer photos from my ipod to my MacBook

    I lost everything on my MacBook (its about 5/6 years old.) Like an idiot ~ I did not back anything up. I thought that I had lost everything, until I remembered that I have a lot my photos on my IPod (classic) . Is there any way to transfer those phot

  • My time Machine is no longer backing up my HD.

    2 Days ago I installed a new wireless Canon MX 892 multifunction printer, with help from a Canon tech.  Wireless printing works fine, I have access to the internet, and emails are coming and going.  But my Time Capsule will not auto back up now, and

  • GT70 Dominator Occasional Short Lag (Gameplay Continues But Sound Stops?)

    Hello. Just wanted to say that this is a great laptop overall. But soemthing's been bugging me. Every so often, games seem to have trouble loading certain things. When I play Payday 2, for example, the computer seems to wait a few seconds before actu

  • Spry Dataset XML Import Blank (Where's the problem?)

    I have a weird predicament I've worked myself into and need to figure out a way to clean up this process. Background: I am working within the constraints of a content management system that doesn't have full content management capabilities, switching

  • Can I send group e-mails from an IPad?

    Can I send group e-mails from an IPad?