Carry forward accumulated depreciation

I have one old asset in SAP with capitalization date : 2004.2.11.  useful life 15 years, APC value 3000, accumulated depreciation: 1600 (rounding), net book value:1400. we already retired this asset
Now I try to create a new asset with APC value 3000(already using F-90), how to bring over the accumulated depreciation 1600 USD? so my planed deprecition in the future of new asset will be same as old asset
now is oct. what should be my new asset, 2004.2 or 2011.10 ? what should be new asset useful lives? thanks

Hi,
It is not very clear what exactly you are trying to do in F-90. This transaction is used to post APC value to your asset, but that is not putting accumulated depreciation onto the asset as such.
Is it that you want to create a new legacy data asset? Have you tried to create an asset with AS91 for example, here you can then enter accumulated APC and depreciation value. Please check out the functionality of creating legacy data assets, there is plenty of documentation in the SAP Library.
Else, if you wanted to swich the values from one asset to another, then you should look into the option of a transfer posting.
There are the options of a gross or net transfer for example. Again, you can find information about transfers in IMG Documentation or in our SAP Library.
I hope this helps you further.
Kind regards,
Brigitte

Similar Messages

  • Balance Carry Forward for Depreciation GL's

    Hi,
    i found that the balances of previous year were not carry forwarded to next fiscal year only for Depreciation GL Accounts.
    please explain why it was not carry forwarded only for Depreciation GL's ?
    regards,
    Shekar.

    Hi,
    T-Code OBA5: for the depr. account craay forward you are missing, is there an account assignment defined (the carrying forward account)?
    Best regards, Christian

  • Error in Asset Value carry forward to next year

    As a regular periodic process of Month/Year closing activities in SAP, Asset Year 2015 was opened and then closes the year 2014 and carried forward the Asset values to the year 2015. But unfortunately some of the Asset value had not been transferred to the year 2015. As a result, Depreciation had not been charged for those Asset for the year 2015. Need to transfer the Asset value to the current year immediately. Can any one help me regarding the problem ? The APC Start value is showing in the year 2014 but its not showing in 2015.
    The Closing value of Current APC of year 2014 does not match with the Opening value of the APC Start, so what should be the possible reasons for that ?

    Hi Erika,
    I did that on last January 2015. First i use the T-code: AJRW for the Fiscal Year Change and then T-code: AJAB - for Year end-closing Asset Accounting as i did that for last 4 years. Though there was as error message indicating error in depreciation calculation, our consultant assured me that that will not create any problem. The Error was like below:
    600981       0    Secretariat Table                              2014 Error in dep. calculation

  • Carry forward AR spl and asset error

    when I use year end balance carry forward for AP/AR, it pops the message saying company code still in year 2010, do we need to do vendor/customer  open item clearing and finish the dec month closing, then we can use f07 to carry forward and no such warning message will apear? which report I should compare so I can make sure F07 the figure is correct and is really carried forward to new year? can we run( actual run )for f07 several times? is there any accounting doc posted?
    in asset closing, we have run depreciation run for dec, can we run ajrw before ajab?
    in special ledger carry forward, we found the error: KR23 820000 record not carried forward since no account defined-->check account, but we don't have fs00 record for 820000, this is not gl account, how can we check? how to make sure balance sheet account and retained earning account carried forward is correct figure, for example, I chose company code KR23 in the selction screen of gvtr, but the retained earning account shows both company code KR01 and KR25, thus my reained earning account transaction currency for these company codes is 4mil, why system shows so many company code, I want only KR23, how to do? Thanks

    Hi,
    Generally, you will want to call these business rules from a BPC Data Manager package.  Similar to how you call a script logic package.  In fact, you'll have to use the DM package to call a basic script that then executes the program.  See the instructions in the online help:
    [http://help.sap.com/saphelp_bpc75_nw/helpdata/en/bpc_nw_index.htm]
    Here is the code they describe to run the CarryForward Rule:
    *RUN_PROGRAM COPYOPENING
    CATEGORY = %C_CATEGORY_SET%
    CURRENCY = %GROUPS_SET%
    TID_RA = %TIME_SET%
    *ENDRUN_PROGRAM

  • Carried forward of  total in sapscript

    Hi Expert:
    For a multiple-page invoice, I want to print the current total as carry forward amount or subtotal on the current page and on the subsequent page.
    Please note down I am talking about SAPSCRIPT only.
    Eventhough I tried to do it by using summing  but it gives short dump .
    Appreciation for your urgent reply and thanks in advance.
    Regards
    Shashi

    hi shashi,
    just check this ..
    Summing a Program Symbol: SUMMING The SUMMING command is used for accumulating a total value for a program symbol. The command should be specified just once. Then, each time the specified program symbol is formatted, its current value is added into the total symbol. Several program symbols may all be added into a single total symbol. Syntax: /: SUMMING program_symbol INTO total_symbol SAPscript cannot create the field for the total dynamically. The symbol used must be defined in a TABLES structure in the calling program.
    For details on summing and carrying forward, see Summing and Carrying Forward is Incorrect. 6.21.1 Summing and Carrying Forward is Incorrect Assume that for a multiple-page invoice, you want to print the current total as carry forward amount or subtotal on the current page and on the subsequent page. However, the carry forward amount is incorrect or missing. The following causes are possible: • You do not use program symbols with Dictionary reference for totalling. • You place the carry forward amount into the BOTTOM area. SAPscript processes the BOTTOM area at the beginning of a page; therefore it is not suited for carry forward amounts. • If you place the carry forwards amount into the TOP area of the main window on the subsequent page, the carry forward amount may be higher than it should be: This happens if the last part of text of the previous page does not fit onto the page, but the text is held together, for example, by a PROTECT command. In this case, a local text symbol must receive the carry forward amount. You must place the carry forward amount on the current page into a window of type VAR. On the subsequent page, use a local text symbol to print the amount in the TOP area of the main window: 1. At the beginning of the form main text (before printing the first text element), define the amount variable and the total variable (both must be program symbols or Dictionary amount fields). In the example below, we use the SUMMING command to determine that for each output of &SUMTAB-AMOUNT& the system automatically sums up the amount in the total variable &SUMTAB-TOTAL&. At the end of the page, &SUMTAB-TOTAL& contains the carry forward amount of the current page or the grand total, respectively. In this example, we also define a local symbol &LASTPAGE& to print the grand total on the last page.
    /: SUMMING &SUMTAB-AMOUNT& INTO &SUMTAB-TOTAL& /: DEFINE &LASTPAGE& = ‘ ‘
    2. At the end of the form main text (when printing the last text element of the main window), set the local textsymbol &LASTPAGE& to a different value, such as ‘X’:
    /: DEFINE &LASTPAGE& = ‘X’
    3. To print the carry forward amount in the TOP area of the subsequent page including the pre-text 'Carry forward' and a tab, we use the local text symbol &CARRY. The corresponding text element is also defined in the main window:
    /E CARRY
    &’Carry forward:,,’CARRY&
    (CALL FUNCTION WRITE_FORM EXPORTING ELEMENT = ‘CARRY’ TYPE = ‘TOP’) 4. Define the carry forward window on the current page as type VAR and position it at the end of the main window of the page. Print the carry forward amount there and define the local text symbol &CARRY& to print the amount again in the TOP area of the subsequent page. Use the local text symbol &LASTPAGE& to print the grand total on the last page. The carry forward window then contains the following text (define it as paragraph T1 with tab):
    /: IF &LASTPAGE& = ‘X’ T1 <H>Grand total:,,&SUMTAB-TOTAL&</> /: ELSE T1 <H>Carry forward:,,&SUMTAB-TOTAL&</> /: DEFINE &CARRY& = &SUMTAB-TOTAL& /: ENDIF
    hope this helps
    regards,
    vijay

  • Time Management: Carry Forward.

    Hi Experts,
    Fine below the issue i have in TM
    There is a configuration for the max number of days carried forward to the next year, 2012 as 6 days.
    HR have made an exception this year, due to many employees not having taken most of their leave.
    they would like the full balance of leave accumulated in 2011 to be carried forward to 2012, January and must be consumed by March 31st 2012 (end of our financial year)
    This applies only to Annual Leave earned at the rate of 2.5 days per month so 30Days by end of December in any calendar year.
    Appreciate your response.
    Regards
    Rajesh.N.S

    In this case use Quota corrections better As you told Exception only not changing business process right..
    If changes in total business you can change configuration or any PCR already writen...Exceptional case you have to use Quota corrections (IT2013) only...

  • Vendor Carry Forward Balances

    Hi Gurus,
    We are trying to do Vendor Carry forward to the new fiscal year.
    When checked in Vendor Balance using FK10N, there are already some items are carried forwarded.
    F.07 Carry forward was done before, what are the other activities, which could have triggered this.
    Thanks in Advance
    Saba

    Hi Sap Junior,
    Thanks for the feedback.
    We found out from the documents, It was NOT from the documents we posted in the new fiscal year (with old year posting date)
    Any other possibilities... Like Asset Depreciations....
    regards
    Saba

  • Carry-forward CALC-070 ERROR

    Hi,
    We've set up a simple account transformation that transfers an INC account from F_CLO to an equity account account on F_INJ (a FLOW member in the AcctDetail dimension). Source and target use the same "INPUT" datasource but the target applies to YTD.
    At run-time, it fails to transform the first period but start accumulating properly on following periods. In the log file, it throws this error message: Warning: CALC-070 No DATA Extract From FACT Table - 20090300
    As a matter of fact, the prior period on the target account and target flow is empty but I don't understand why it would cause a problem.
    Has anyone got an idea?
    Thanks,
    Regis

    I made some progress on this issue. There cannot be two members with the same combination of YEAR and MONTHNUM property value even if they have two different KEY. This combination has to be unique.
    However, the CARRY FORWARD rule still does not work. This time, it seems to complete successfully but it does not produce any result. The format of my time members has changed to PLAN.2009, PLAN.2010...
    For these members, I set the YEAR property to PLAN and the PERIOD property to 2009, 2010... The MONTHNUM goes incremental from 1 to 40 (I have 40 years in my long-term plan).
    Now, does the YEAR property needs to be numeric? Does the TIME member KEY has to be YYYY.xxx where YYYY is a 4-digit number?
    Thanks,
    Regis

  • Carry forward of variable value in cross-tab charts

    Hi Experts,
    I have a cross-tab which calculates the inventory of items (based on count). For a particular date range (quarterly here), if i have to generate the cross-tab, i set the inventory count to zero for the first quarter, and from the next quarter, i add to the inventory count, the new inventory items. At the end of each quarter this value gets accumulated and gets carried forward to the next quarter. From the next quarter, it just is the sum of count of the new items. Now, i have this cross-tab calculate the values at WhilePrintingRecords evaluation time.
    When i have created a chart out of this cross-tab, the chart doesnt reflect the values that are observed in cross-tab.
    Is there any way i can get these calculated values to get reflected on the chart?
    Your help is greatly appreciated.
    Thanks,
    Roshan.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly

  • Accumulated Depreciation and Depreciation @ FY start is having value difference

    Dear Team,
    I am facing one issue in production. My client's depreciation @ F.Y end 31-12-2013 is 79,952.872 OMR.
    When carry forwarded to next year beginning itself the value is getting changed to 79,968.382 OMR.
    I run AFAR T-code ie re-calculate depreciation not getting any difference. Any suggestions on how to find out the difference. Your help is much appreciated on this issue.
    Thanks & regards,
    Geo George

    Dear all,
    Thanks for the suggestions and recommendations. I found out which asset caused the issue.
    Net book value for the asset was 169.383 @ Fiscal Year start
    It got changed to 153.873-. There by causing a difference of 15.510.
    I also found out that legacy data transfer has happened for this asset for 15.510 on period 5 of 2013 and got posted on period 12 of 2013.
    Please let me know how to proceed further.
    Thanks & regards,
    Geo George

  • GL : Carry Forward Receivables/Payables &  GL Balances

    Hi SAP Guru's
      my project now is the confiration level , we config all FI and CO also, now we have to run MONTH END PROCESS, so how to run monthend process and what aspects i have full fill in this stage more ove i have  to Carry Forward Receivables/Payables &  GL Balances also or wht
    please guide me

    Hello
    Check these steps
    Following are the month end and year end operations.
    1. Open and Close Period
    2. Close period in MM module.
    3. GR/IR Clearing
    4. Foreign Currency revaluation.
    5. Balance Sheet Adjustment
    6. Balance Carry forward
    7. Asset Fiscal Year Close
    8. Asset Fiscal Year Open.
    9. Settle Production Order
    10 Depreciation Posting.
    11 Settle Assets under construction.
    12.Post Accruals and Deferrals.
    13 Release Standard Cost estimate.
    Not all steps may be mandatory, unless implemented.
    Reg

  • Gl Balances Carry Forward FY New

    Hi Expert,
    We are going to carry Forward for GL Balances for Last Fiscal Year 2013 , now we are open and carry forward for the same from 2013 to 2014, kindly let me know, there is any Precaution for that before going to carry Forward the Gl balances. as well Vendor and Customer.
    Kind regards
    Pranav Kr. Gupta
    SAP FICO Consultant

    Hi Ajay sir,
    AJAB then AJRW or coz two days before same thing getting error Fiscal year not open for Asset i did same thing AJAB the AJRW, simententiously, then problem has been resolved, if m nt wrong,
    now next month for we will go for Deperication posting for FY 2013, we are following April to March Financial Year. and we are not doing periodically once in a Year .
    so at the time of Depreciation system will thorw any error.. coz till now we ve nt try even in Test Run as well.
    note : but sir, my Question is if i RUN AFAB for Depreciation for Fiscal Year 2013, the balance of GL will reduce from asset . and we have done GL Balances Forward for FY 2013 to 2014, after posting GL balance will not suppose to show.. in this wht should i do. if m wrong to telling , kindly correct me.
    Thanks
    pranav Kr. Gupta

  • Carry forward of Balances

    Dear friends,
    I would like to carry forward the balances to fiscal year 2006.I have closed the posting period and the run the T.code FAGLGVTR-Carry forward Gl accounts. When I do F.07 C/f of drs and crs, it shows no items are selected. I would like to see the vendors balances of previous years in the FBL1n in the Line items selection-ALL items  - posting data-1/4/2006. What should I do?
    Thanks in advance
    Uma

    Hi Uma,
    I would suggest you check your selection criteria. Specify the <b>company code</b>, the new <b>fiscal year</b> (in your case, this would be <b>2006</b>), tick the boxes "<b>Select Customers</b>" and "<b>Select Vendors</b>", "<b>Test Run</b>" and "<b>Detail Log</b>". The would show you the figures that would be carried forward. If you're satisfied with this, then go ahead and <b>untick</b> the "<b>Test Run</b>" and re-execute to run in Productive mode.
    Below is a full explanation of what would happen.
    <u><b>Carry Forward Receivables/Payables</b></u>
    Description
    This program calculates the balance carried forward for customers and/or vendors.
    The balances of the previous year are carried forward to the new year. If the account has not yet been posted in the new year and no balance carried forward has been carried out for this account, the account is opened inthe new year with the 1st balance carried forward; otherwise, the balance carried forward of the account is stored in the new year if changes result.
    When posting into a previous year, the system carries forward the balance automatically. This is independent of whether the program has already run or not. "posting to a previous year" means that the posting date of the document has an earlier year than the entry date. This automatic carrying forward also occurs accumulatively over several years that means a posting in January 1993 with the posting date December 1991 changes the balance carried forward for 1992 and 1993.
    SAP recommends that the program is run at the beginning of the new fiscal year. If the program is already run at the end of the last fiscal year, postings which are posted after this to the last fiscal year, do not result in automatic adjustment of the balance carried forward because it is not a "posting to a previous year". In such a case, it is necessary t let the program run again after these postings to carry forward the postings entered later.
    <b>The program can be started as often as desired.</b>
    Nevertheless, you can post to the new year if the program has not yet run. When posting, the accounts, however, with a balance carried forward of greater than zero are opened. Postings in the previous year do increase this balance carried forward, but do not carry forward the total of the items already posted in the old year to the new year; the balance carried forward only has the items posted by the new year into the previous year, but not the items posted in the previous year itself.
    Requirement : None
    <u><b>Output</b></u>
    <b>Part 1:</b> Statistics - number of accounts to be carried forward is sorted according to company code, account type and special G/L indicator
    <b>Part 2:</b> Detail log - information for each account to be carried forward on the amount to which the balance carried forward is to be changed (in the test run) or was changed (in production run)
    The output of the detail log can be deselected on the selection screen.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Query regarding Balance carry forward value in KNC1

    Hi Experts,
    Please let me know whether the field UMSAV(Balance carry forward field) will be accumulation of all BSID and BSAD transactions for  particular KUNNR for their respective HKONT values.
    If some transaction is updated in BSAD or BSID, will it compulsory reflect in KNC1 table or not? Please let me know.
    Regards,
    Kiran A.

    Dear Kiran,
    The values on UMSAV per definition matches the summarization of all the open item values for a customer number as the resulting amount of summing up the balance carry forward from the previous fiscal year plus the movements on the suitable year.
    Nevertheless, it is updated under the summarization of the value on UMSAV for the previous fiscal year and adding the total amount of items posted on bsid AND bsad. You must notice that it only depends on which period the movements take part, the S/H movement, and that it doesn't depend on the GL account but the customer number. If you also need the GL account you must also check KNC3 for Sp.GL operations, KNB1 and T074 tables.
    I hope this information helps. Regards,
    Lidia

  • Urgent - "Vendor balances carried forward and line items report."

    Hello,
    Is there any report which will give me the vendor balance carried forward and the line items during that period.
    ==============================================
    Format-
    eg: statement taken from 1.8.2006 to 30.9.2006 is required as
    Bal b/f …………………………… 25000 cr.
    3.8.2006 Purchase Inv XXX ……   3000 cr.
    5.9.2006 Payment Chq XX ……  26000 dr.
    Bal c/f ……………………………  2000 cr.
    ==============================================
    Please advise on this.....
    Regards,
    J

    thanks for the response, but i have already tried those transactions.
    FK10N will give me the periodic bal statements and NOT line items display which will also have balance carried forward.
    F.41 and F.43 again gives the periodic and line items...but i want the vendor balances to  be in the format given above..
    like say, account statement.
    Please advise............
    Regards,
    J

Maybe you are looking for

  • BUG: Searching for the word "united" in Contacts returns far too many results

    To recreate this bug: 1. I open the Contacts App on my iPhone 5 running iOS 6.0.1. 2. In the search field within the app, I search for the word "united." (For example, if I am trying to located the address book card for United Airlines). 3. Instead o

  • 6th Nano-Not able to sync more than 8gb from seleted music catagories

    Hello, I have an Ipod Nano 8GB 6th Gen. I would like my nano to function pretty much like my 2gb shuffle. My 2gb shuffle will randomly autofill with playlists i have created that are usually greater than 2gb by randomly picking 2gb worth of music fro

  • Query based on every quarter

    Hi All, I have a date table which consists of four fields two which are defined as varchars and two which are defined as numbers. One of the varchar fields holds a period in a mmyyyy format and the second one holds a date in yyyymmdd format. I need t

  • Portable Home Directories

    I have a Tiger Server that hosts portable home directories for my Leopard Clients. I cannot get a portable home directory to sync with my Snow Leopard client. Is this possible?

  • About SLD components

    1. What is a product? 2. What is a system component? 3. what is a Technical System? 4. What is a Business System? could u brief about all of them? and SXMB_IFR components also like SLD, Integration Builder and Monitoring...