Create old asset in SAP

Hi!
I have a old asset that I wan't to create in SAP.
I can't do it by transaction as91 because of this:
Closed fiscal year does not agree with legacy data transfer date
Message no. AC199
Diagnosis
The closed fiscal year 2007 does not agree with transfer date 30.06.2000.
If you wish to carry out a transfer within the fiscal year, the date of the legacy data transfer has to be in the year following the closed fiscal year.
Example: Transfer date July 1, 1993; closed fiscal year 1992
In any other cases the transfer date has to be the last day of the last closed fiscal year.
Example: Transfer date December 31, 1993; closed fiscal year 1993
Procedure
Correct your entry.
How can I do it?
Please help!!
Thanks in advance.
Regards.

Hi!
First, thank you for your answer.
Sorry, I think my explication was not very good because of my level of english.
I read this for NEW company codes and I did with the transaction as91.
But now I have one asset in one OLD company code. All assets were introduced in SAP in year 2000.
But there is one asset that was not introduced.
Now I can't use as91, or I should change the transfer date, and I'm not sure if this date can be changed or affects the rest of assets for this company code.
Thank you in advance.
Regards.

Similar Messages

  • Best way to recreate all live assets in SAP and scrap current assets

    We have a situation where we have to recreate all  (15000) our assets as new assets. We will have to create new assets, provide new acquisition value and new useful life and start depreciating them from scratch. Also we will have to dispose all the current assets.
    What is the best way to accomplish this:-
    1)     I was thinking to write a BDC program for AS01 transaction to create new assets and in the text field, give a reference to old assets. 
    For Balances transfer, use transaction FB01 or F-91.
    *2)     Use BDC to map transaction AS91 and add in value there.  Although this is not transferring from legacy data but only in SAP. Will these current assets be considered as legacy data.   Is this transaction feasible to use.* 
    Also, what transaction can I use for mass asset data scrapping of current assets
    Thanks,
    Tanya
    Edited by: Tanya321 on Jul 6, 2009 7:33 PM

    Tanya,
    You can do a mass retirement of assets. Please check out this link.
    http://help.sap.com/saphelp_erp2004/helpdata/en/4f/71ece8448011d189f00000e81ddfac/content.htm
    For mass creation of assets you can use the LSMW tool.
    Regards,

  • Go live   during fiscal year   How to transfer old asset to system

    my project will go live on 1 august 2007 (i run depreciation to July )
    and i configure specify transfer date/last closed fiscal year = 31.07.2007
    and specify last period posted in Prv. system (transfer during fiscal year) = fiscal year 2007 period 7
    my problem are
    1   I cannot upload old asset that capitalized on year 2007 (ex. 01.01.2007)
        my upload customized program tell message Field RALT_DYNP_STRUC-ANBTR02 (6) is not an input fiel
        i try to manually upload by use T-code as91 create asset that capitalized date on 01.01.2007
        SAP system provide asset code but i cannot post value of asset
    2   old asset that capitalized date is before year 2007 (ex.20.10.2006) can be uploaded
    but when i see posted value(in asset explorer)  depreciation will posted only in period 8 there will not post depreciation on period 9,10,11,12
    Please help me.

    Hi,
    For conversion the most easy way is to the last date of last fiscal year:
    31-12-2006 and create the assets capitalized after 31-12-2007 with the normal transactions in SAP.
    In period 7 you run an unplanned depreciation run up to period 7
    I have seen in some versions you create the asset with AS91 and then change the values with AS92.
    For 2 you have to look to your depreciation keys, it schould be working
    Paul

  • ABAP Dump while creating Group Asset

    Hi all
    I am getting the following dump while creating Group Asset through AS21-
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Except.                CX_SY_REF_IS_INITIAL
    Date and Time          19.11.2007 21:16:06
    Short text
         Access via 'NULL' object reference not possible.
    What happened?
         Error in the ABAP Application Program
    The current ABAP program "SAPLGLO_FIAA_SCREENS" had to be terminated because it
    has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in  procedure "SET_MANAGER_FOR_UPDATE" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "GO_ASSET_MAINDATA").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Source Code Extract
    Line  SourceCde
      545 *      -->P_LS_WORK  text
      546 *      <--P_LO_ASSET_MANAGER  text
      547 *      <--P_LO_TIMEDPNDNT_MANGER  text
      548 *----
      549 FORM set_manager_for_update
      550        USING
      551          is_work TYPE raist03
      552        CHANGING
      553          co_asset_manager    LIKE go_asset_manager
      554          co_timedpndt_manger LIKE go_timedpndt_manager
      555          ct_err_msg          TYPE tt_err_msg.
      556
      557   DATA:
      558     ls_asset_maindata TYPE gty_s_asset_maindata,
      559     ls_anla_key       TYPE anla_key,
      560     ls_err_msg        LIKE LINE OF ct_err_msg.
      561
      562 * check operation
      563   IF is_work-kz      EQ con_ins AND
      564      is_work-flg_unr NE on.
      565
      566     MOVE-CORRESPONDING is_work TO ls_anla_key.
      567     ls_anla_key-mandt = sy-mandt.
      568     ls_anla_key-anln1 = is_work-anln1_new.
      569 * start of Note # 954513
      570     IF ls_anla_key-anln1 IS INITIAL.
      571       ls_anla_key-anln1 = is_work-anln1.
      572     ENDIF.
      573 * end of Note # 954513
    >>>>>     ls_asset_maindata = go_asset_maindata->get( ).
      576
      577 * clone time-independent asset data manager
      578     TRY.
      579         co_asset_manager = lcl_amd_mngr_clone_factory=>clone_asset_manager( ls_anla_key ).
      580
      581       CATCH cx_faa_asset.
    Any1 has a clue where I might be going wrong?
    Cheers
    Hrishi

    Hello Hrishi
    I have researched your issue and note 1063792 should resolve it. The
    SAP_APPL that it is included in is SAPKH60011. I recommend you to upgrade to the latest support package available to avoid eventual errors.
    For program errors you should open a support ticket in the SAP Service Market place.
    Regards
    Javier

  • Creation of an Old Asset

    Hi All,
    Our Company had purchased some similar assets about two years back through direct purchase. But the company did not create any asset master record for those assets and even did not calculate the depreciation. But these assets are now under operation .
    Now the company wants to bring those assets into the SAP system and provide the depreciation for last two years. But the last year had closed.
    How do I treat this issue?
    I request you to all, please provide your valuable opinion.
    Thanks with regards,
    Ran

    Yes you can follow the steps suggested by Dominic.
    You can also do the following -
    Go to ABNAN, and from there you can create the Asset master.
    So you can use this transaction for both posting the Value of the Asset and also creating a new asset.
    Thanks
    AK

  • Create fixed assets from within the transaction for creating the purchase order

    Hello All,
    I have gone through the notes on help.sap.com related to automatic creation of asset master record at the time of creating purchase order.  I am not sure how do we achieve this?
    Link to the notes on help.sap.com
    SAP Library - Asset Accounting (FI-AA)
    Any suggesstions from the expert group is appreciated.
    Thank you,
    Vinay

    Hi Vinay
    I know there is a feature whereby you assign asset classes per material group and then you create assets from within the PO. I never used it though
    Let me tell you one thing or rather ask you. Will you as a finance consultant be willing to let a MM guy create the assets??
    Or will a MM guy be willing to create it?? If you allow them, you should be ready for surprises.
    Honestly, this is a feature not worth exploring unless a FI guy is willing to create the PO. I would suggest the creation of asset masters should be with FI only
    Br. Ajay M

  • Asset Report with old Asset Number in the Second description text field

    I have a requirement for a report in the Asset accounting.
    User wants a report where in he can see the asset details with the legacy asset number which is entered in the second description field in the Asset Master.  I executed the available reports and could not find one like that.  Please help me out.

    You have the option to ad this field to the reporting stucture.
    Wy you have ased this field and not the fields in the tab origin for old asset number?
    For extra fields in the asset see the Wiki
    http://wiki.sdn.sap.com/wiki/display/ERPFI/IncludeownfieldsinFI-AAstandardALV
    for all the wiki's from asset accounting go to the link:
    http://wiki.sdn.sap.com/wiki/display/ERPFI/Asset+Accounting

  • Transfer assets collectively to new class and create new assets like ABUMN

    We need to change the account determination for a few Asset Classes that already have assets with postings.  As a result we must create new asset classes and assign a new account determination.
    Is there a program that would allow transfer assets collectively to a new asset class and create new assets automatically similar to ABUMN?  T-code ABUMN allows you to transfer multiple assets but you must create the new assets first.  ABUMN will transfer and create new asset but only does one asset at a time. 
    There are hundreds of assets with postings to be transferred from the old asset classes to the corresponding new asset classes.
    Appreciate whatever input you can provide.
    Tara

    download the asset master data(original) and create new asstes using lsmw or any third party tool also.

  • Error whle creating  Main Asset Master(AS01)

    Hi,
       while i was trying to create the asset master  , <b>ABAP run time error</b>  is displayed <b>"snap_no_new_entry"</b> and i could not able to save the asset master.
    please provide some solution for this problem.......
    i am working on SAP 6.0 version.

    1st check tcode as08
    A.

  • Created  "sub asset" with reference to DEACTIVATED Master asset

    Hi experts
    We are facing something strange in our system (ECC6 SP22)
    We have some Master assets whitch are DEACTIVATED.
    We just note that we have possibility to create "SUB ASSETS" (I don't know how to say it in english) by referece to DEACTIVATED master assets.
    Is this normal?
    We would like to this prohibited. How can we do??
    Thank you in advance.
    Kind Regards

    Hi,
    Yes, it is a SAP standard behaviour, where you can create sub assets under deavtivated main assets also.
    If you want to stop this, you need to write an user exit for transaction AS11 with the help of your ABAPer.
    Regards,
    Srinu

  • Add depreciation area to old assets (revaluation area)

    Hi guys,
    I've created a new depreciation area for setting revaluation of assets. This new dep area only contains revaluation of assets (we'll only have revaluation and depreciation of this revaluation in this new area), so I've configured it to manage only revaluation values. Acquisition values are not allowed.
    In OABC i've put "00" in the area where this new area takes values from, due to i don't want thhis new area to copy acquisitions values from area 01.
    I've made the rest of the configuration also, to support revaluation transactions (mov 800) in this new area. But, I've got 2 problems now:
    1. The new area i configured is missing when creating a new asset in AS01. However, when using AS91 the new area shows up. Any idea of why this happens that way?
    2. I cannot add the new area in old assets. When using AFBN a message appears: "Depreciation area 20, which you want to create as a new depreciation area in chart of depreciation PVPE, has no depreciation area defined for value takeover. This may be be correct for normal operation, however for the purposes of creating a new depreciation in the productive system, you have to enter a depreciation area whose values are used as base values for the new area."
    Message makes sense, because my new area is not copying values from any area (in tcode OABC i defined 00 as dep area source). The question is.. is there any additional tcode where i can add the new depreciation area to old assets?
    Thanks in advance.
    Eduardo

    Hi,
    there are the following steps:                    
    1. Create Depreciation area via OADB.                                                                               
    2. Activate Depreciation area via OAYZ.                                                                               
    3. Automatic opening of new depreciation are via AFBN and program RAFABNEW :
       3.1 - Indicator: Leave values initial = not ticked.              
               The system will copy all the past years values from      
               depreciation area 01.                                                                               
    3.2 - Indicator: Leave values initial = ticked.                  
               Set this indicator if you want to open the newly created 
               depreciation area without any values i.e. blank.                                                                               
    4. Recalculate depreciation via AFAR and program RAAFAR00.     
    Following notes for information:
    430618     Procedure for setting up new depreciation area   
    857601     Parallel currency area and RAFABNEW              
    301113     Restrictions of RAFABNEW        
    A Documentation you can find in SE38 entering the   RAFABNEW and press the button documentation.
    regards Bernhard

  • Business Process for Refurbishment of Capital Asset in SAP PM

    Dear All ,
    Please explain me best practice for Refurbishment of Capital asset created as Equipment in SAP PM.The Current Standard process of SAP is for spares/equipment not categoried as Capital asset .
    Regards,
    Basant Kumar

    Dear Chinta,
    Sorry I can't give you any documentation, but let me give you a little explanation about refurbishment.
    Refurbishment is a process to repair our  repairable spare part, then return that spare part back to the equipment, or to warehouse.
    1. Warehouse make a good receipt 'other' for the repairable spare part, (spare part is received at warehouse)
    2. Make a refurbishment order (IW81). We can repair the sparepart by our technician, or by external service
    3. Make a good issue to refurbishment order
    4. Repair faulty spare
    5. Perform good receipt with reference to refurbishment order.
    6. Order close
    Hope this can help.
    Regards

  • Delete old assets and related classes

    Dear Experts,
    We have a new support client. They want to revise their Asset Classes as at the time of implementation too many asset classes (around 70) had been created. Now they want to have limited asset classes as per the Schedule VI.
    On the other threads the solution suggested by experts is to create the desired asset classes and create new assets (per old asset) and transfer the balances from old assets to new assets through T.Code ABUMN.
    My doubt is:
    1. How feasible is above solution when already 1 year's data exists in assets?
    2. If this solution is to be worked out, can we delete the old assets and asset classes, AFTER transferring the balances to new assets.
    Regards
    Amar
    Edited by: Z_Amarendra on Jun 10, 2009 8:30 AM

    Thanks Paul,
    - How feasible would it be to go with this option?
    - Can the new asset classes and and the assets be immediately used after transferring the balances through ABUMN? Or need to wait till new fiscal year...?
    Reply awaited
    Regards
    Amar

  • Creat acquisition asset from affiliated company

    Hi everybody
    I have some question about creating acquisition asset from affiliated company
                When I creat acquisition asset from affiliated company, it appear wrong "contact your system administrater" (According to its Customizing definition, area 30 has to adopt the book values from area 01. However, one of these areas is defined so that when posting an acquisition from an affiliated company, the values for this area have to be entered gross.  The other area is not defined in this way.  This combination is not allowed)
            You can help me to find wrong and creat asset from affiliated company.
    Thanks so much. I hope you'll send message for me as soon as possible.
    Reguards;
    Ngocpt

    Hi
    Functionally its noting but purchasing of an asset from a group company.
    In SAP few requirements are mandatory
    1] Trading Partner concept should exists, which will run in Group chart of accounts (check ur FS00)
    2] In AO90 a field named Acquisation from affilated company - give a GL Account for asset purchase. Its not necessary to give a different GL Account from the one for regular purchase of assets
    Revert back for further clarifications
    Warm Regards
    Bala

  • Create same asset error

    I have one old asset 4230001 in company code 6700, capitalization date: 25.10.2009, first acquisition date:31.12.2009. APC value 3000,  NBV: 1000
    I try to duplicate asset 42300001in company code 5300, thus I create asset 42300009 with same capitalization date 25.10.2009.
    but when I enter ABNAN, I have difficulty in choosing correct posting date, amount posted and original val date
    even if I choose 31.12.2009 as original val date, the new asset 42300009 's first acquisition date still be 25.10.2009.
    also I can only choose cost element as offsetting account, can i enter balance sheet account for ABNAN?
    any one know how to fix?
    do i need to design a new transaction type for ABNAN?

    Hi
    Inter company Asset transfer  - ABT1N
    Go to Inter company transfer TAB
    select indicatior Existing Asset and Company code
    Give Document Date
            Posting Date
             Asst value date----
    Asset Aquistion date
    click on Simulate
    Notice the both the company codes and Asset under each company codes.
    Save
    Thanks
    P J Anil Kumar

Maybe you are looking for

  • Help needed with Map function in Lumira

    Hi, I've bee using Luira for lots of great tile charts and bar charts, but now I am looking to make use of the mapping visulization in Lumira. Bascially I want to get a count of the number of retail stores by state.  I uploaded my data , and some hav

  • Facebook and theater mode

    When a photo is clicked in Facebook and the theater mode appears, the original page scrolls up erratically and I have to scroll back down to the post. This specially happens when a wall is extended several times using the "Show more posts" button. An

  • How can two people on different computers edit the same video

    I am working on a large project and need more than one person editing. How can I allow 2 or more people edit the movie we are working on. I have two windows 7 working on a network in CS6

  • Time Machine and Restoring to new Hard Drive

    Computer: Intel Core Duo iMac, Model iMac 7,1 My hard drive bit the dust about a week ago (Work supplied computer). Everything is backed up through Time Machine. I took it into the local Apple repair service with a OS 10 (10.5.4) disk. Had a new driv

  • Api call to get perspectives?

    hi, does anyone know API call to get perspective(s) of current page - or more specifically, of items on the current page? thanks kev