Creating legacy data with AS91 problem

Hi all,
We found an old laptop and we just want to trace it. It wonu2019t have a value. So I am trying to create legacy data with AS91 transaction code, after the input Asset Class and Company Code, following error code appears on the screen:
Closed fiscal year does not agree with legacy data transfer date
     Message no. AC199
    Diagnosis
     The closed fiscal year 2010 does not agree with transfer date 21.12.2008
     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
     Procedure
     Correct your entry.
I know that I can change the FI-AA Date of Legacy Data Transfer but I donu2019t want to change it because I donu2019t know where will be affected if I change the date. Is there any other solution for this?
Thanks for all.

Hi,
Some fields can be made optional for input.
First: check in customizing (transaction OAOA) which screen layout rule is assigned to the required asset class.
Second: go in customizing to Asset Accounting / Master Data / Screen Layout / Define Screen Layout for Asset Master Data. Select the screen layout you found in the 1st step.
Double-click Logical field groups.
Select 2 Posting information.
Double-click Field group rules.
Set the required field on optional (or required - whichever suits you best). Select Main number and/or Sub number for these fields.
The field Acquisition date will only be filled with a date from an actual posting you'll make on the asset. Since you won't have any values on the asset, this field will remain empty. It is not possible to define this field as optional or required in the screen layout settings.
Kind regards,
Andre

Similar Messages

  • AS91  create legacy data

    while creating asset  in takeover value
    ***.acquis.val. 0.00                 
    Accm.ord.deprec 0.00
    get in gray filed (in display mode) we want  put some value? how can we solve this  problem .

    Hi,
    I hope you might have entered your AS91 asset's cap date, which is later than your legacy asset takeover date.
    You trying to do legacy asset takeover on mid of FY.
    Search this forum with AS91, you will get very good inputs regarding the above transaction.
    ALWAYS SEARCH BEFORE POST
    Thanks,
    Srinu

  • Error while creating Legacy Asset using AS91

    Error is as follows
    E698 SYST: Abnormal termination (ANLB-LGJAN 1 not equal to ANLC-GJAHR
    In 2008 during implementation, there was a mis match between FI & AA.
    In AA Takeover values were not updated but GL entry was made. Now since depreciation is run, it is not allowing to update takeover values in AS92.
    Now the i have planned to follow this procedure
    Firstly Reset Depreciation
    Then to create new Assets in AA copying previous assets without Takeover values using AS 91 & update those takeover values in new assets.
    Then FI & AA values would match & then i can run depreciation.
    But in 2nd step i am stucked, as when i try creating new asset using AS91 it is giving above error.
    What should be date of legacy data transfer in spro? i have maintained 30.09.2008
    In OAAQ i have maintained closed FY =2007
    In OB52 i have Opened both 2008 & 2009 posting periods.
    What more has to be done?

    Hi Paul
    I have taken a production copy in different client & have done all these with the client's permission.
    Following are the reasons with example
    suppose these are 4 assets at the time of implementation
    1 Asset A       Acquisition value 100000/-      Accumulated Depreciation       20000/-
    2 Asset B       Acquisition value 200000/-      Accumulated Depreciation       30000/-
    3 Asset C       Acquisition value 300000/-      Accumulated Depreciation       40000/-
    4 Asset D       Acquisition value 400000/-      Accumulated Depreciation       50000/-
    In implementation following happened by mistakenly
    Asset A & B were properly created using AS91 & in GL also entry properly made using OASV
    but for Asset C, entry was made using OASV but in AA Tcode AS91 Asset Master was created but Takeover values were not updated.
    for Asset D entry was made in OASV but in AA Asset number was not at all created.
    so when you see asset master C in AW01N acquisition value is blank & planned depreciation is also missing.
    i think individually all data was not cross tallyied.
    So the Balance sheet is tallyied with entry in FI
    but
    in AA there are 100 assets without takeover values & 300 assets for which Asset Masters are not at all created in  AA.
    & depreciation for 2008 has been run on other assets excluding these 400 assets.
    So now AA closing cannot be done as the FI & AA balances are not reconciled.
    & now we have to update takeover values creating new asset masters using AS91 but system is not allowing us.
    Could you suggest some solution for these problems
    Thanks in Advance

  • Creating test data for a problem

    Hi,
    I've been using this forum for a few months and it has been extremely useful. The problem is that I actually have no idea how to create test data for a specific problem. I've tried googling but to no avail. I have had other users create test data for some of my problems using a 'WITH' statement but it would be great if someone could explain the logic behind it and how to approach a specific problem where in the query I use multiple tables.
    I know it's probably a stupid question and I'm relatively new to sql but it would help a lot if I understood the process.
    Banner:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    Look at the point 3 and 4. You can also follow other points too.
    Please consider the following when you post a question. This would help us help you better
    1. New features keep coming in every oracle version so please provide Your Oracle DB Version to get the best possible answer.
    You can use the following query and do a copy past of the output.
    select * from v$version 2. This forum has a very good Search Feature. Please use that before posting your question. Because for most of the questions
    that are asked the answer is already there.
    3. We dont know your DB structure or How your Data is. So you need to let us know. The best way would be to give some sample data like this.
    I have the following table called sales
    with sales
    as
          select 1 sales_id, 1 prod_id, 1001 inv_num, 120 qty from dual
          union all
          select 2 sales_id, 1 prod_id, 1002 inv_num, 25 qty from dual
    select *
      from sales 4. Rather than telling what you want in words its more easier when you give your expected output.
    For example in the above sales table, I want to know the total quantity and number of invoice for each product.
    The output should look like this
    Prod_id   sum_qty   count_inv
    1         145       2 5. When ever you get an error message post the entire error message. With the Error Number, The message and the Line number.
    6. Next thing is a very important thing to remember. Please post only well formatted code. Unformatted code is very hard to read.
    Your code format gets lost when you post it in the Oracle Forum. So in order to preserve it you need to
    use the {noformat}{noformat} tags.
    The usage of the tag is like this.
    <place your code here>\
    7. If you are posting a *Performance Related Question*. Please read
       {thread:id=501834} and {thread:id=863295}.
       Following those guide will be very helpful.
    8. Please keep in mind that this is a public forum. Here No question is URGENT.
       So use of words like *URGENT* or *ASAP* (As Soon As Possible) are considered to be rude.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unable to enter legacy data from AS91

    Hi All,
    I am uploading the legacy data for assets through T.Code AS91.
    My asset capitalisation date is 01.10.2007. Acquisition year 2007. But while uploading takeover values when I am clicking on takover values button in T.code AS91, system is throwing error as follows
    Abnormal termination (ANLB -LGJAN 1 not equal to ANLC-GJAHR)
    I have maintained asset transfer date as 31.03.2008.
    In T.code OAAQ i have checked that 2007 fiscal year is closed.
    Please guide me how to remove this error in order to upload the legacy data for asset
    Thanks in advance
    Sonal

    The field ANLB -LGJAN is Last fiscal year for the annual values in Asset Acct. this is in the tab depreciation
    The field ANLC-GJAHR  Fiscal year  In ANLC the asset values are stored.
    Have a look if there is some conflict with the capiatization date end the tab depreciation
    You take over is that on the begin of the fiscal year or in the middle of a year?

  • Creating dunning data with Spool request

    Hi,
    I am working with Smartform,which is dunning Notices for Customer.It is configured in F150 Transaction.
    TO see Printout,need to have dunning data.
    Can you help me how to create Dunning data for customer.
    Thanks in Advance.
    Regards
    KB

    Which line is reported for the exception?

  • Matching Legacy Data with BI

    Hi,
    I need to bring in (historic data) two Key Figures from the legacy system:
    1. Net Amount
    2. Shipping Quantity
    The problem is that these fields are set up as Restrictive Key Figures on a query in BI (They are not directly in the cube as 1 to 1 )
    For Example:
    (Legacy System )Net Amount =  (BI) Record Type D, Base Sales Quantity
    My question is that since these fields are defined in the query and not the cube itself, how do i map the legacy flat file to load it into BI?
    Thanks

    Hi dave,
    If you are not getting  same data for those 2KF's from other sourcesystem,include them in ur datatargets and load data from ur legacy systems,at query level create CKF or formula and add that RKF and this KF.
    Chandu

  • Creating Audit Data with Triggers

    I want to create an audit table like
    AuditTable(
    FieldName Varchar2(40),
    OldValue Varchar2(100),
    NewValue Varchar2(100),
    User varchar2(20),
    UpdtDate Date)
    Whenever Table X is updated, then the Trigger should capture the changes and create a row for each field in the UPdate Statement.
    I don't want to turn on Audit as the DB is very big and high transaction oriented. I just want to watch a particulare table only.
    I need a little guidance in parsing the update statement and get the fieldnames, their old values and new values.

    Well, you could certainly audit a single table - you don't have to audit every table.
    In any case, the trigger would look something like:
    create or replace trigger t_audit
    after update on t
    for each row
    begin
      if updating('column_a') then
        insert into audittable values ('column_a', :old.column_a, :new.column_a, user, sysdate);
      end if;
      ... repeat for all columns
      if updating('column_z') then
        insert into audittable values ('column_z', :old.column_z, :new.column_z, user, sysdate);
      end if;
    end;You can use the data dictionary (user_tab_columns) to automate the writing of that trigger if there are many columns.

  • Create Master Data with leading zero

    Dear Expert,
    Our customer request to create Customer Master/Vendor Master/Material Master with leading zero. For example: they want to create Customer 0234578.
    I can do that for material, would you please advise how to do the same for customer/vendor?
    Thanks you,

    Dear Mr.
    Our customer number is in numeric, then this error happen. If customer number constants 1 char, then system will keep zero leading (ex: 012A4) But if customer number constants only numeric, even i type zero, system will remove leading zero.(01234 ==> 1234)
    Please help.

  • How to create CSV data with a cell including two rows?

    Hi guys,
    i am creating CSV using "comma" as seperator for columns, "return" as seperator for rows.
    But how can I create a cell which includes two rows?
    I want to do following:
    cell1    cell2    cell3
    XXXXX    YYYYY    ZZZZZ
    in cell2 YYYYY, there are two sub rows:
    YLine1.1     YLine1.2       YLine1.3                
    YLine2.1     YLine2.2       YLine2.3
    Which kind of seperator can I use for these sub rows?
    so to say(XML mode):
    <row>
      <Col1>XXXXX</Col1 >
      <Col2>
        <row>
    <col1>YLine1.1</col1>
    <col1>YLine1.2</col1>
    <col1>YLine1.3</col1>
    </row>
        <row>
    <col1>YLine2.1</col1>
    <col1>YLine2.2</col1>
    <col1>YLine2.3</col1>
    </row>
      </Col2 >
      <Col3>ZZZZZ</Col3 >
    </row>
    It is very kind of you to give me some hint!
    Regards,
    Liying
    Message was edited by:
            Liying Wang
    Message was edited by:
            Liying Wang

    Hi Wang Liying,
    I tried with Excel. A Cell with 2 rows saved as CSV shows that the cells contents are enclosed in hyphens "b row 2 b" and the two rows ins one cell are separated with HEX 0A. This is a simple Line feed. The sequence to build this would be in ABAP
    concatenate
    <row1>
    CL_ABAP_CHAR_UTILITIES=>NEWLINE
    <row2>
    into cell.
    I did not take the time to try on system, but I tried to open with excel: It works with Windows.
    Regards,
    Clemens

  • Have problems to create lagacy data (AS91) with asset that purchase in 2010

    Dear All Experts,
    I have some problems when I try to create lagacy data via AS91 but it's not allow me to post acquisition value and accumulate depreciation into asset that have capitalize date on this year (30.09.2010)   Could anyone please tell me Did I do anything wrong in config ?or Should I change the year in capitalize date to the past and then takeover value after that edit capitalize date again by AS02.
    Thank you in advance.
    Best regards,
    Utarat.P

    Dear Utarat,
    I agree with colleagues:
    If you make a legacy data transfer during the year you can't enter   kum. values. You have to press the button transactions and enter  here the transactions from  previous system.                              
    Please also check:                                                                        
    CU: FI-AA:                                                                
    - Asset Data Transfer                                                     
      -Parameters for Data Transfer                                           
       - Date Specifications                                                  
         - Specify Transfer Date/Last Closed Fiscal Year                      
         - Specify Last Period Posted in Prv.System (Transf.During FY)   
    Regards Bernhard

  • How to create a date object with a specific time?

    How can I create a date with today's date but with a specific time, say: 20:00:00?
    Thanks in advance.

    Don't forget about those pesky milliseconds!I'd have gotten away with it too.. if it hadn't been
    for that pesky BigDaddyLoveHandles.I'm in top form today. On the drive in to work I managed to
    push two scooter riders off the road and gave the finger to
    a Prius owner.

  • Legacy data upload for Training & Event Management

    As per the requirement, the legacy /history data for training events is to be uploaded in the system. To start the process the data templates were prepared for uploading training objects like D (Business Event Group), L (Business Event Type) and E (Business Event) and these were uploaded. Also the relationships A003 between D & L and A020 between E & D were also maintained. As a part of training history the attendees were also maintained (uploaded) using the relationship A025 between E & P objects. However when we go to PSV2, then the tree structure does not reflect the name of the person who attended the event.
    Please suggest and advice.

    Hi Nitin,
    I have a query regarding the Legacy data. I wanted to ask you that how did you structure the Historical BEG and BET.
    Did you create different BEG for the Current and the Legacy data.
    But in that case there could be BET's common in both the current and legacy data with different object ids
    For e.g. Under Current BEG and Historical BEG  I may have a BET Technical Programmes with diffrent Ids say 60000000 and 60987655. This may create a problem when running reports.
    Pls tell me strategy that you have used for creating the catalog.
    Regards
    Yashika Kaka

  • Creating Recovery Media with Portable External Hard Drive

    Is it possible to create recovery data with a portable external hard drive?

    Hi,
    i am also facing the same problem not able to create the recovery media in external hard disk. win 7 64 bit..
    Please help there is an option to create recovery media in USB flash drive but its not recognising the usb even though its connected.
    Mahesh

  • Net Book Value calculation Issue Manual Legacy Data Transfer

    Dear All
    I want to Upload balance of old fixed Asset in newly configure System that are managed manually in previous year, I want to Post Their previous Current Written Down Value and Current Accumulated Depreciation when i go via IMG Create Legacy Data Transfer and enter,
    Take Over Value            of assets  I entered for example
    Accusation Value  100,000
    Accumulated ordinary depreciation (Old depreciation in Previous Years) RS.10,000
    Net book Value Rs.110,000
    and system Calculate the Depreciation on 110,000 as WDV 10%  that is 11,000
    My requirement is that it will Calculate it as  100000-10000
    Depreciation should be calculated at a 90000 @ 10% WDV that is 9000
    Please suggest me, how i can do.
    or other path or T.code where i can do.
    i am new please explain in detail.
    Regard
    Khalid mahmood

    Dear Atif and AP
    Issue is not with Depreciation key it is working well according to my requirement but the issue is that base value that the system use is wrong.
    i want that the system calculate depreciation at   Cumulative Acquisition value (Purchase /capitalize/ cost price) less  Accumulated Depreciation
    is equals to Written Down Value.
    I want that system use WDV as a base in each year after deducting year depreciation  or  (Acqusition cost - Accumulated depreciation).
    I post a new asset and assign depreciation key it working well as required.
    But i going to post Old asset for example Rs.100000 in year 2006. its Accumulated depreciation is suppose Rs.30000 in Year end 2011.
    i want to post that asset in year 2012 as 100000-30000  and WDV IS Rs.70000 ; 
    i want that it will use 70000  as a base in the coming year to calculate depreciation.
    My response is 100000+30000 and use 130000 as base to calculate the ordinary depreciation for the next year.
    Now Please read the first thread again and guide me according to my scenario.
    or tell me how i post the old asset value and their depreciation.
    Regard
    Khalid Mahmood

Maybe you are looking for

  • IDoc to BPM

    Hi evrybody! I am tyring to configure an IDoc -> BPM -> IDoc scenario. So far, I haven't had any success. I have a simple JAVA program that generates IDocs and sends them to an SAP system. Now I have changed its configuration so that it now sends the

  • EMac won't power up

    I am assisting a small school with an eMac that will not power up. When the power button is pressed, the led lights up. There is a single beep, it is not the startup chime. Nothing else happens boot wise. The led will flash twice and then stay on, th

  • Does page flipping use the video card?

    How do I page flip? Does it use the video card or accelerate Graphics? Can someone show me how its done?

  • Insert hyperlinks to swf file

    Hello! I have a swf file which consists of 3 movie clips (3 swf files). When the 1st movie clip fades out, the 2nd one fades in. And the same for the 3rd one. I want to insert 3 individual links to the 3 movie clips so that when people click on the 1

  • Any implementation with IVR and OPA integrated?

    Hi OPA Gurus! Has OPA been used in IVR system for interactive screening? One of my clients is planning its IVR enhancement and they are evaluating the option to leverage the same Rulebase developed for online self service to support IVR screening. Th