How to bring the Cost of Depreciation to Costing

Hi,
How to bring the Depreciation Cost, Interest on Working capital to Costing.
We have created the Cost components for those mentioned items and what criteria we can bring the values to Costing.
Thanks
Prasad

It's a big topic, ahah.
Depreciation, Interest and Capitals  must be different primary cost element, right?
Maintain cost component structure TC:OKKN to make sure your cost component split is by primary cost element splitting. Assign the cost elements of depreciation, interest or capitals to relevant cost component.
Two way to define the cost bring to cost components,
1. Define splitting structure TC: OKES and assign to manufacturing cost centers TC:OKEW
2. Conduct activity type dependent planning through TC:KP06.

Similar Messages

  • How to bring the labour cost into costestimate

    Hi friends,
    How to bring the labour cost into costing run, please let us know. i have given the configuration settings but i am not able to get the accurate result. so friends please help me on this.
    where were i have to give the config settings and the   links please tell me.

    Dear,
    The cost sheet format is,
    1. Material cost,
    *2. Labour cost -
    SPRO -> Controlling -> Product Cost Controlling -> Product Cost Planning -> Basic Settings for Material Costing -> Overhead -> Costing Sheet: Components -> Define Calculation Bases*
    1. Here just check whether you have assigned the Labour cost Cost elements with Labour group or not.
    2. T Code - OKTZ : Check whether you have assigned the Cost elemnts here or not
    3. Labour cost is based on : Activity types and Cost center figures updation in KP26
    Let us know if you still need any help
    Thanks
    Edited by: nkonnipati on Feb 15, 2012 4:01 PM

  • How to bring the data from application server to presentation server

    hi,
    i have one problem,i have written the program which will open the files in the application server when we run the program in the background(sm37),the same data from application server i want to bring into presentation server in the format of (.csv),how to bring the data from application to presentation server can any body help me on this  topic.folowing is the code .
    *& Report  ZPFA_HIER_LOAD
    REPORT  ZFPA_HIER_LOAD.
    *---- Declaration of Oracle connectioN
    DATA con_name LIKE dbcon-con_name VALUE 'COMSHARE'.
    DATA: MFL1(9),MFL2(5),MFL3(9),MFL4(2),MFL5(8) TYPE c.
    DATA : mfilename type string.
    data: begin of matab1 occurs 0,
          MFL1(9) TYPE C,
          MFL2(5) TYPE C,
          MFL3(9) TYPE C,
          MFL4(2) TYPE C,
          MFL5(8) TYPE C  ,
         end of matab1 .
    data: setid(8) type c.
    data: begin of source occurs 0,
          setid(8) type c,
          end of source.
    *PARAMETERS : p_pfile LIKE filename-FILEEXTERN.
    *PARAMETERS : m_bsenty(8). " type c obligatory.
    *mfilename = P_PFILE.
    EXEC SQL.
      SET CONNECTION :con_name
    ENDEXEC.
    EXEC SQL.
      CONNECT TO :con_name
    ENDEXEC.
    EXEC SQL PERFORMING get_source.
      SELECT set_id FROM UNIT_SET INTO
      :setid
      ORDER BY SET_ID
    ENDEXEC.
    start-of-selection.
    LOOP AT SOURCE.
      REFRESH matab1. CLEAR matab1.
      EXEC SQL PERFORMING evaluate.
    SELECT TO_CHAR(MEM_ID),TRIM(TO_CHAR(MEM_PID)) FROM UNIT_TREE INTO :MFL1,
    :MFL5
    where set_id = :SOURCE-SETID ORDER BY MEM_ID
      ENDEXEC.
      if SOURCE-SETID = '80000000'.
       mfilename = '/tmp/aesorg'.
      elseif SOURCE-SETID = '80000006'.
       mfilename = '/tmp/Consolidation_Manager'.
      elseif SOURCE-SETID = '80000010'.
       mfilename = '/tmp/10org'.
      elseif SOURCE-SETID = '80000012'.
       mfilename = '/tmp/20org'.
      elseif SOURCE-SETID = '80000018'.
       mfilename = '/tmp/30org'.
      elseif SOURCE-SETID = '80000025'.
       mfilename = '/tmp/40org'.
      Endif.
      mfilename = '/usr/test.dat'.
    ************************This was i tried***********************
      open dataset mfilename for output in text mode encoding default." IN
    *TEXT MODE ENCODING DEFAULT.
    if sy-subrc <> 0.
    exit.
    endif.
    close dataset mfilename.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME         = MFILENAME
         FILETYPE         = 'ASC'
       TABLES
         data_tab         = matab1
       EXCEPTIONS
         file_write_error = 1
         invalid_type     = 2
         no_authority     = 3
         unknown_error    = 4
         OTHERS           = 10.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
      clear matab1.
    ENDLOOP.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
    close dataset mfilename.
         MFL5 = '0'.
       CLEAR MFL5.
    FORM evaluate.
      if MFL5 = -1.
        MFL5 = ''.
      ENDIF.
      concatenate MFL1 ','   into MFL1.
      concatenate MFL1 ','   into MFL3.
      matab1-MFL1 = MFL1.
      matab1-MFL2 = 'ZBUE,'.
      matab1-MFL3 = MFL3.
      matab1-MFL4 = ' ,'.
      matab1-MFL5 = MFL5.
      append matab1 .
      CLEAR MFL1.
      CLEAR MFL2.
      CLEAR MFL3.
      CLEAR MFL4.
      CLEAR MFL5.
    ENDFORM.
                     "evaluate
    *&      Form  GET_SOURCE
          text
    FORM GET_SOURCE.
      source-setid = setid.
      append source.
      clear source.
    ENDFORM.                    "GET_SOURCE

    Hi Rammohan,
    You cannot use OPEN DATASET to transfer data from application server to presentation server.
    You can do the following :
    <b>Do 1st point in BACKGROUND</b>
    1. Read the data file from application server into an internal table using OPEN DATASET
    <b>Do 2nd point in Foreground</b>
    2. Once you get the data into an internal table, then use FM GUI_DOWNLOAD to download it on presentation server
    You cannot use the above 2 point together in Background because its not possible. Hence you need program it partially in background and partially in foreground.
    Best regards,
    Prashant

  • How to bring the hyperlink in a JLabel object ?

    How to bring the hyperlink in a JLabel object ?
    I tried the following--> [ this is a sample ]
    JLabel label;
    label=new JLabel("<HTML><A HREF='file://D:/Examination/calc.exe'>Calculator</A></HTML>");Using this JLabel object in an JDialog the label comes perfectly with such a look of the hyperlink
    [ Blue coloured and underlined ] that's all !!
    It doesn't work anything that it should do.
    While all the html tags work perfectly in java then why the hyperlink in label doesn't ?
    If you have an idea then please send me the code.
    Thanks!

    see JXHyperLink at https://swingx.dev.java.net/
    Yeah, I looked at this. I agree with the other guy who said that all this does, presumably, is change the color of the text when the button is getting mousedover. That doesn't solve anything.
    As far as JEditorPane, it has its bad points and ... well, mostly bad points. However that's not really fair. JEditorPane was not designed to be on the level of an IE or FireFox.
    The BEST thing to use JEditor's web browsing facilities on is for creating your own documentation and help pages for software you are developing. Here is a list of some of the things JEditorPane does not come equiped with (as of 1.4 I haven't tried playing with it in 1.5):
    1. Form submission, PUT, and GET
    2. Download status
    3. Caching
    4. Cookies
    5. Plugins (ie Java, Flash, Quicktime)
    6. No javascript.
    Beyond that it is extremely brittle in parsing the HTML, and if the HTML is not totally well formed (and many pages are not) you won't get anything

  • Hello,how much does the iphone 4 16gb unlocked cost if i want to buy it as a gift and to use it outside USA?

    Hello,how much does the iphone 4 16gb unlocked cost if i want to buy it as a gift and to use it outside USA?

    If you're talking about buying the phone in the US, forget it. There are NO unlocked iPhones sold in the US and no US iPhone can be officially unlocked. Thus, it doesn't really matter what it costs.

  • How to calculated the with out quntity strecter cost estimate

    dera sir &mams
    how to calculated the with out quntity strecter cost estimate.
    thankes regards

    Dear Battikala,
    Please post your questions in an understandable way without any spelling mistakes.
    Regards
    Madhusekhar Gupta

  • How will effect the tax on depreciation ?

    Hi Sap Gurus,
    How will effect the tax on depreciation ?
    what is the entry...
    Thanks
    Ramakanth

    Hi,
    Treatment of tax depreciation depends on how your client wants it.
    Most client don't want tax depreciation to post to general ledger. Hence in the configuration, using transaction code OADX, the setting of tax depreciation is set to zero. This way real time tax depreciation is not posted to GL.
    Depreciation keys specific to cater tax depreciation are either created and defaulted to asset classes where tax depreciation is present. Also useful life of an asset is changed in tax depreciation area. This ensures tax depreciation to be calculated normally while posting depreciation. Later on reports can be executed to get the value of tax depreciation during the given period.
    regards
    Pawan

  • HOW TO BRING THE DEPOSITS IN SAP

    How do we bring the depostis in SAP from legacy system. If we create a customer migration g/l account, it will debit the migration g/l account and credit the customer. but can we use the same g/l migration account to bring in the open balances of customers. i think not because we don't want to use that migration g/l account for customer open balances because we will be blocking this g/l account.
    how are the deposits brought into sap from legacy system. can anyone please explain this in detail.
    Thanks

    As per my understanding the physical movement of stock is from your client to Distributor. It is in the control of Distributor of distribution  to sub-distributor (physical movement of stock from Distributor to sub-distributor and not from client to sub-distributor). If the understanding is correct, Consignment scenario will not meet the objective.
    In such cases, ideally the distributor should have SAP system, in which he carries out relevant transaction and the visibility of the same should be available to the client. It actually works in a manner such that the control will be with the client. There will be dummy company code. All Distributors will be mapped as Sales Organization & through authorization will have access to only their Sales Organization. Financial transactions are overlooked as they are at company code level, but inventory visibility can be controlled in such a manner. The reason the clients are not ready to invest in such projects is that it is a cost to them from licencing point of view and Distributors are not religious to carry out the activities in the system due to lack of interest or staffing reason.
    Reagards,
    Rajesh Banka

  • How to bring the Header value to the row ?

    Dear All,
    I am a starter in learning SDK. have developed a form having 2 tables a header and a row detailed one.
    Now i need to update a field in all the row with a header value when the header value is added. it should be like the SE name getting updated when the SE name is selected in header level in std doc.
    how to arrive it?
    kindly help me to achieve this.
    Thanks,
    Sam.

    Dear Gordon,
    May the customer enters a value to the header which they want it to be unique value for all the row detail.
    If there exists more than 50 rows they cant enter it for each and every row, for in case if the value needed to be changed for a particular row or for particular few rows they will change it manually to that row alone.
    I just want to achieve this scenario in my form.
    Do you know how to bring in ?
    As this is being a normal functionality in Std forms.
    Thank you...

  • Urgent: How to bring the same pricing procedure in reversal order??

    Hi,
    We have recently implementated CIN at our client location. For the orders present in the system before CIN implementation, when we are creating the reversal orders, system is bringing the new pricing procedure with CIN condition types?
    Can we bring the same pricing procedure in the reversal order as in the sales order? 
    Please advise urgently.
    Regards,
    Peeyoosh.

    Dear Peeyoosh
    I am unable to understand from your comments
    "For the orders present in the system before CIN implementation, when we are creating the reversal orders"
    Please let me know how do you reverse a sale order.  To my knowledge, we can reverse delivery and billing but not sale order.  Either we can close the sale order by assigning some reason for rejection or delete the sale order.
    This being the case, please let me know why you are reversing and how you are reversing.  If you want the same pricing procedure for both normal sales and returns, then maintain the same pricing procedure for both document types.
    thanks
    G.  Lakshmipathi

  • How to ignore the material with error in costing run ck40n

    Hi
    Pls, advice how to ignore parent material form costing run if the components of that material have errors. I need to run the costing run excluding erroneous parent item. Is any configuration on this..
    Pls help..
    K

    Hi Kesharika Goona... 
    If you want to exclude any material from Costing Run, there are two ways...
    1. Go to Material Master, Costing1 view, take the check box "Do Not Cost". If you opt for this check box, the system will not consider this material for costing.
    2. Where you run the standard cost estimate in CK40N, once you save you costing run with the parameters like Costing Variant etc, When you select the "Parameters" agains the Flow step of "Selection", you will be asked to give the inputs like Material Number, Plant etc.
    There, against the Material Number, on the extrem right side, you will see a arrow, press that arrow, and there you can see a tab "Exclude Single Values". There you have to give the material number which you want to exclude from the costing run press "Execute" icon on the botoom-left corner of that pop-up window..
    If you still face problem, pls revert back
    Srikanth Munnaluri

  • How to upload the RM and PM budjeted cost in sap.

    Dear sap guru's,
                 Could you please suggest me , how to upload the 2008 budjeted cost(RM/PM)  in sap, One way i can upload the budjet Through  materi master( costing2 tab) ie planed price1 or 2 , Please suggest me is there any other way to upload the Budjeted cost of (RM/PM), or if i upload in planed price 2 is there any effect in future. Kindly suggest me to this  example ,
    BUDJETED OCST                                              ACTUAL COST                 VARIANCE
                                                                                    FG  COST  IS       -:  5 Rs            FG  COST  IS            : 4 RS                FG  COST  IS            :1 RS
    Two materials under FG                  Two materials under FG
                             Budjeted Price                                       MAP
    1)  RM cost              ;-  2 Rs              RM cost              ;-  1 Rs                 RM cost              ;-  1 Rs
    2)  PM cost              :-  3 Rs.             PM cost             :-  2 Rs                   PM cost             :-  1 Rs
    Please suggest me is there any report to view Total budjeted ocst , actual cost and variance report for Each FG wise and RM AND PM wise.
               Kindly consider this issue as an high priority one, pls guide me, my client is very much urgent.
    Thanks & Regards,
    Kumar.

    . TCode : LSMW.
    2. Enter Project name, sub project name and object name.
    Execute.
    3. Maintain object attributes.
    Execute
    select Batch Input recording
    goto->Recording overview
    create
    recording name.
    enter transaction code.
    start recording
    do recording as per ur choice.
    save + back.
    enter recording name in lsmw screen.
    save + back
    Now there will be 14 steps.
    2. MAINTAIN SOURCE STRUCTURES.
    Here you have to enter the name of internal table.
    display change
    create
    save + back
    3. MAINTAIN SOURCE FIELDS.
    display change
    select structure
    source_fields->copy fields.
    a dialogue window will come .
    select -> from data file
    apply source fields
    enter No. of fields
    length of fields
    attach file
    save + back
    4. MAINTAIN STRUCTURE RELATIONS
    display change
    save + back
    5. MAINTAN FIELD MAPPING & CONVERSION RULE
    display change
    click on source field, select exact field from structue and enter
    repeat these steps for all fields.
    save+back
    6. MAINTAIN FIXED VALUES, TRANSACTION, USER DEFINED
    execute
    save + back
    7. SPECIFY FILES.
    display change
    click on legacy data
    attah flat file
    give description
    select tabulatore
    enter
    save + back
    8. ASSIGN FILE
    execute
    display change
    save + back
    9. IMPORT DATA.
    execute
    display change
    save + back
    10. DISPLAY IMPORTED DATA
    enter ok, it willl show records only.
    back
    11. CONVERT DATA
    execute
    display change
    save + back
    12. DISPLAY CONVERTED DATA
    execute
    display change
    save + back
    13. CREATE BATCH INPUT SESSION
    tick keep batch input folder
    F8
    back
    14. RUN BATCH INPUT SESSION.
    sm35 will come
    Object name will be shown here
    select object & process
    inputs given by KAPIL

  • How to change the accumulated (uploaded) depreciation

    Hi Experts,
    At the time of data transfer from legacy system to SAP, we had transferred assets also with their gross values and accumulated depreciation till 29.02.2008. Now while doing so there was errors in some 10 assets where the gross value as well as accumulated depreciation which was uploaded was less. We now have to increase the asset gross value as well as uploaded accumulated depreciation value also. I have tride AS92 but this allows me to change only gross value. But this alone would not solve my problem. I also have to change the accumulated (uploaded) depreciation. If I use transaction ABAA than system would pass and expense entry also which is also not correct as the expenses was already booked and has been uploaded seperately. Thus if I do ABAA then I would be posting double depreciation (expenses). We have still not do "production" for assets. We have also run depreciation for the period 12 i.e. March 2008 and there after for three periods i.e. 1 to 3 for year 2008 for all the assets. Kindly let us know how to get the rectification done in system.

    Hello Nikki,
    this sounds a bit strange, normally the cumulated depreciation can be edited too. Check oayf whether "calculate accumulated depreciation" is active. If depreciation has been posted: the system carries out correction postings in current period.
    If this does not work: Did you use a SAP standardtool for legacy data transfer? What is your  fiscal year, the transfer date and last posted period in the system?
    Best regards
      Horst

  • How to populate the sales order as a cost object in cost element posting

    When posting sales to a cost element the error comes up stating Account ******** requires an assignment to a CO object.
    This comes from the sales (repair) order and I would like to pass the sales order and line as a cost object.
    Could someone please tell me where I would make the configuration to pass that into the accounting document?
    Thank you,
    Sergiy

    Snavaneetha,
    unfortunatelly I don't have access to any CO consultants that could help me on this one. We are a small company so I am an unofficial CO consultant for time being
    Anyway, maybe I should post this one on the CO forum as well.
    I looked at the material master and I don't see the field for the GL account or cost element anywhere like you said. I do see the account assignment group and that's where my account determination procedure determines the right one to use, and it is trying to post to the account I need it to post but I get the above error, for some reason the sales order that I am billing for does not get passed at a cost object to this cost element account during billing.
    Sergiy
    Edited by: Sergiy Mysyk on Jul 26, 2010 3:25 PM

  • How to bring the non-mandatory selection field in Portal

    Hi Expert,
                   I have created an query in Bex. when i run it one selection field is coming like Material,
    vendor etc, but in this selection field  all are option, non of them is mandatory.
    My problem is that when i am creating iview on that query  in 7.0 flow and executing/preview
    that iview it directly bring the output. it is not bring the selection paremeter like material, vendor,
    etc. But same case is not happened with ivew for which query has mandatory field
    I want that en spite of running directly it ask the optional selection parameter.
    Thanks and Regards
    Lalit Kumar

    Hi
    Check it in SPRO- sap img- material management- logistics invoice verification- incoming invoice- activate direct posting to g/l accounts.then save. It will work.
    Regards,
    Raman

Maybe you are looking for

  • Using Time Machine to backup a production file server

    Does anyone have any recommendations for using Time Machine to back up a production file server? Right now we have an Xserve G5 with two internal 750GB drives in a RAID1 as our main file share to about 25 users, and a large external FW800 Guardian MA

  • Bionic. post-ICS update. front facing camera pixelated/artifacts

    Hello, After I updated to ICS, the front facing camera began showing weird pixelation/lines.  this did not happen before the update. I reset my phone to factory settings and the camera till showed the following lines. any ideas?  Verizon, please help

  • SATA Boot as Removable Drive ?

    Recently a buddy installed a new ASUS board with SATA boot via onboard SATA. SATA drives showed up as removable. Didn't like that so we installed a SATA PCI card and they functioned normally. Then we freshened up an MSI MS-6788 board using the onboar

  • Time for importing the framework

    Hi, I am imporing the sap frame work to identity center. However it is taking lot of time for importing, the application is showing the message as import in progress, but this is going on for almost 3hrs. Is this is the normal long running process? D

  • Iphone 3G audio player skipping beats in between songs

    Hi, I have been using iphone 3G for over 6 months.Since the time I updated to 3.1(and 3.1.2 now),I have a strange audio problem.While playing songs,the ipod moves to a different point of the song(for 1-2 secs) and returns to the original point.This m