What is the best way to stop the depreciation of an asset

I had tried ticking the asset shutdown field, but it didn't works. I change the depreciation key , e.g. 0000-zero depreciation, it works, however i do not know what is the implication of doing this.
What is the best option to stop depreciation of an asset?
Thanks.
Best Regards,
Roberto Sayo

Hi,
No depreciation for a period of time
If you have an asset which would not be used for production purposes for next six months as the plant is being closed.
Therefore you don't want to retire the asset and neither do you want depreciation to be carried out during these six months period.
Once the plant is opened, from then on, you want to execute the depreciation run.
You can utilize the Asset Shutdown feature on the Time-dependent tab of the asset master record.
Select the Asset Shutdown checkbox - create a time interval - Save.
If you cannot find the checkbox, it could be hidden :-
In AS02 click Environment -> Screen Layout -> Master data
Select the Screen Layout and click Logical Field groups
Select 3 - Time-dependent and click Field group rules
Tick Opt, Mnno and Sbno - Save
Optionally,
you can set the Depreciation key in the Deprecation Area Tab.
You can also change the depreciation key to '0000' (No depreciation and no interest) for each of your depreciation books. Just make sure you have run depreciation up through the current month before doing so. When you are ready to put the asset back into service, reset the keys to their original values. The system will calculate no depreciation during the months where you have the key set to '0000'.

Similar Messages

  • What's the best way to stop motion if Windows crashes?

    I am using Visual Basic 6.0 to program some motion moves. I am trying to figure out the best way to stop all motion and turn off all I/Os in the event Windows crashes or stops responding. I have the following:
    NI PCI-7344
    NI UMI-7764
    Windows 2000
    Visual Basic 6.0

    We implemented an interlock solution using two digital lines from the PCI-7344-UMI-7764 to an Opto22 G4PB4, 4 place SSR backplane, with Brentek G4 NO and G4 NC dry contact modules wired in series to supply +24V to a larger relay contactor's coil. Also in series with the relay contactor's coil were a machine guard and machine e-stop switch.
    The Relay contactor supplies 120VAC power to the servo drives and other devices on the machine.
    The LabVIEW application software has to turn one bit on and the other bit off in order to power the relay contactor's coil.
    We found that if the PC power is off or the PC looses power, then the contactor will drop out and kill 120VAC power to the drives.
    However, if the LabVIEW application or the PC hangs then the 7344's digital
    lines remain in the state that they were set before the PC hung.
    To totally failsafe this also required a watchdog timer relay where the LabVIEW application has to keep
    resetting the watchdog relay with a heartbeat pulse.
    If the LabVIEW application fails to turn on it's heartbeat pulse then the watchdog timer relay will also
    kill power to the drives.
    There are probably better -simpler solutions to be applied but this worked for us.

  • What's he best way to include Adobe PDFs on my blog?

    What's he best way to include Adobe PDFs on my blog?
    I create worksheets as a teacher and would like to share them from my blog. Currently I am linking to Scribd etc to share PDFs. If I upload the worksheets as an image is there a way to adjust the size/resolution of the PDF for easier viewing? 
    Thanks!

    PDFs are just files. Can you upload files to your blog space? If yes, just upload the PDFs then, in a blog entry, provide the web link (URL) for each file (PDF).
    Or, place the PDFs into your free acrobat.com "files" storage (5GB free). You have one as you have an Adobe ID (needed to make your post here eh).
    https://cloud.acrobat.com/
    You can have acrobat.com provide a "share" link to the PDF. Place that into a blog entry.
    Or - same idea as above (use a "file share" service) -- Microsoft's OneDrive, Adobe's Creative Cloud, Google drive, DropBox, others ...
    Be well...

  • What is a best way to write SQL ?

    Sample Case
    drop table t;
    drop table b;
    create table t ( a varchar2(4), b number, c varchar2(1));
    insert into t values ('A00', 10, 'R');
    insert into t values ('A01', 11, 'R');
    insert into t values ('A02', 12, 'R');
    insert into t values ('A03', 13, 'R');
    insert into t values ('A00', 10, 'P');
    insert into t values ('A01', 11, 'P');
    insert into t values ('A02', 12, 'P');
    insert into t values ('A03', 13, 'P');
    commit;
    create table b ( j varchar(4), k varchar2(1), l varchar2(5), m number(3), n varchar2(5), o number(3));
    insert into b values ('A00', 'P', 'FIXED', 100, 'FLOAT', 60);
    insert into b values ('A01', 'P', 'FIXED', 101, 'FIXED', 30);
    insert into b values ('A02', 'R', 'FLOAT', 45, 'FLOAT', 72);
    insert into b values ('A03', 'R', 'FIXED', 55, 'FLOAT', 53);
    commit;
    10:19:13 SQL> select * from t;
    A B C
    A00 10 R
    A01 11 R
    A02 12 R
    A03 13 R
    A00 10 P
    A01 11 P
    A02 12 P
    A03 13 P
    8 rows selected.
    10:19:19 SQL> select * from b;
    J K L M N O
    A00 P FIXED 100 FLOAT 60
    A01 P FIXED 101 FIXED 30
    A02 R FLOAT 45 FLOAT 72
    A03 R FIXED 55 FLOAT 53
    1/     In table t each reference having 2 records one with P another is with R
    2/     In table b each refrence merged into single record and there are many records which are not existing in table t
    3/      both t and j tables can be joined using a = j
    4/     If from table t for a reference indicator is 'P' then if have to pick up l and m columns, if it is 'R' then I have to pick up n and o columns
    5/     I want output in following format
    A00     P     FIXED          100
    A00     R     FLOAT          60
    A01     P     FIXED          101
    A01     R     FIXED          30
    A02     P     FLOAT          72
    A02     R     FLOAT          45
    A03     P     FLOAT          53
    A03     R     FIXED          55
    6/     Above example is a sample ouput, In above example I have picked up only l,m,n,o columns, but in real example there are many columns ( around 40 ) to be selected. ( using "case when" may not be practical )
    Kindly suggest me what is a best way to write SQL ?
    thanks & regards
    pjp

    Is this?
    select b.j,t.c as k,decode(t.c,'P',l,n) as l,decode(t.c,'P',m,o) as m
    from t,b
    where t.a=b.j
    order by j,k
    J K L M
    A00 P FIXED 100
    A00 R FLOAT 60
    A01 P FIXED 101
    A01 R FIXED 30
    A02 P FLOAT 45
    A02 R FLOAT 72
    A03 P FIXED 55
    A03 R FLOAT 53
    8 rows selected.
    or is this?
    select b.j,t.c as k,decode(t.c,b.k,l,n) as l,decode(t.c,b.k,m,o) as m
    from t,b
    where t.a=b.j
    order by j,k
    J K L M
    A00 P FIXED 100
    A00 R FLOAT 60
    A01 P FIXED 101
    A01 R FIXED 30
    A02 P FLOAT 72
    A02 R FLOAT 45
    A03 P FLOAT 53
    A03 R FIXED 55
    8 rows selected.

  • I'm running firefox 35.01 on macpro OS 10.7.5 what is th best way to do ftp?

    I'm running firefox 35.01 on macpro OS 10.7.5 what is th best way to do ftp?

    Do you mean '''F'''ile '''T'''ransfer '''P'''rotocol (FTP) ?
    Please give more details.

  • What is the Differance Between AUC Assets & Investment Measure Assets?

    HI,
    1. What is the differance between AUC Assets & Investment Measure Assets? How to settle the Investment Measure AUC assets to main asset?
    2. When i create the Internal Order, The system should automatically creates the Settlement rule for the AUC asset. I dont want to create settlement Rule Manually.
    Kindly help me what should i do if the system wants to create the Settlement Rule Automatically? It would be a great help for me if you can provide some inputs..
    Thanks
    Kishore

    Hi,
    Would like to suggest, if you post this query in Asset Accounting Forum under SDN itself, you would get fast response.
    Regards,

  • WHAT IS THE DEPRECIATION AREA

    WHAT IS THE DEPRECIATION AREA

    Hi
    Depreciation areas are used to valuate fixed assets according to different purposes / requirements. In broad terms we can identify two different depreciation areas are Book Depreciation, Income tax depreciation and consolidated depreciation.
    In Book depreciation, depreciation is calculated as per the statutory requirements of the corporate laws (for example Indian Companies Act). As per Income Tax act, depreciation is calculated as per the Income tax laws. Usually we assign declining balance method of depreciation key for this area.
    In SAP, we can calculate depreciation for both the depreciation areas, but GL is updated as per Book depreciation. Income Tax depreciation is only for reporting purpose.
    assign points if useful

  • What is the difference between periodic asset postings and depreciation pos

    Hi,
    What is the difference between periodic asset postings and depreciation postings in asset accounting.
    Regards, Naresh Yadav

    ASKBN or ASKB : Periodic asset posting will update acquisition and depreciation in depreciation area other than area 01 which are maintained as post "APC and depreciation on periodic basis" by using ASKB or ASKBN
    Separate set of GL accounts will be used for ASKBN.  You can run ASKBN or ASKB as and when you need it and not necessarily nonth end
    AFAB : To post a book depreciation at every period and  this activity usually every month end  which posts depreciation 01 Book Depreciation and other areas maintained as realtime at OADB
    Srinivas

  • In oneasset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset i

    in on asset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset it is not showing first 5 periods why it is not showing? Is there any reason?

    Hi
    Repeat run you can do only for the last depreciation period. For the asset which you are tryin to post depreciation from July to Jan, please check the asset value date which you have given while posting the transactions or in the asset master.
    If the asset value date is in July, then deprecaition from July - Jan will get posted in the current month depreciation in total. You will not be able to post depreciation individually month wise using AFAB.
    REgards
    Malathi

  • What is the best way to stop parallel loops at the same time, from any loop?

    If there is a vi with two or more parallel while loops, what would be a good method to simultaneously stop parallel loop execution, from any of the parallel loops? My intent was to try and do this without local variables, so I used notifiers. This seems like an ok method for two loops, but how about for n loops?
    In addition, my code has a flaw. I use an OR block to compare the stop status of each of the loops. This works fine most of the time, but if both loops are triggered to stop at the same time,the boolean result will be false, causing the loops to never stop. How can this be avoided?
    Thanks,
    Curt
    Attachments:
    parallel_loop_w-stop.vi ‏54 KB

    I think you have the right idea, notifiers are one of the better ways to stop parallel loops. You can simplify things by using 1 notifier for everything. I modified your VI to use 1 notifier, it will set the notifier to True ONLY if the loop is stopping, then it stops. The other loop will read the notifier status, and stop based on it the next time it executes.
    I also changed the second loop to stop and notify if it has an error (that is usually a good idea, especally if you have I/O or other things that can cause problems)
    I also changed the switch mechanical action, that will eliminate the problems for your second question.
    The VI's attached are written in Labview 7.0
    P.S. If you have 7.1, the Queues are polymorphic, meaning that the typecast operat
    ions are NOT needed!
    Attachments:
    parallel_loop_w-stop7_0.vi ‏45 KB

  • Best way to stop or kill a thread

    hi what would say is the best way to kill a thread in this situation.
    1. I have 200 threads
    2. Each Thread has a reference stored in a hashtable example;
    for( int i=0; i<200; i++){
    Thread t = new exThread(i);
    hashtable.put(Integer(i) , t );
    t.start();
    each thread is running in an infinite while loop.
    now what would you say is the best way to kill the thread from this parent class.
    One thought of mine is to access get the reference and call stop.
    example;
    Thread tRef = hashtable.get(Integer(100));
    tRef.stop();
    In the stop method i would clear up whatever it was doing - release resources properly and - when it goes out of the stop scope , i'm guessing it would be destroyed.
    Any thoughts or other recommendations ?
    Stev

    Limeybrit is correct....the way Sun recommends (and which I use) is a boolean at the top of your runnable code. If false, you simply return and don't hit any of the other code in the runnable method.
    At the end of your run process, you simply set your Thread to null and wait for the garbage collector to clean up.

  • Appreciation in the depreciation of an asset after acquisition

    Hi all,
    After acquisition in last quarter of the asset, the asset tries to do a catch up and it posts an appreciation suddenly in the same or next month of acquistion.
    For e.g the Useful life of asset is 1 year.
    Acquistion date - 01/08 with amount 159900.
    So dep is calculated at 159900/12 = 13325 per month
    Now in Oct, an acquistion was made for 38880. So suddenly in period 10 is show appreciation of +111642 and from period 11 is shows some diff dep of 16565.
    Not sure why it does. We have issues in few assets and I noticed that it only happens when acquistion is made in the last quarter of the useful life
    We are using our own dep key but I don't see anything wierd.
    Can anyone help me in letting me know what I need to change so that whenever  acquistion are made in the last quarter, it does not appreciates
    Do let me know if more info is required
    JR

    Ramesh,
    Thanks for your reply.
    Value date of acquisition is 10/27/2008
    Dep Key is Z100 - Details
    Base Method : 0007
    Dec bal method :  001
    Prd Control : Z10 (middle of the period)
    Class             Straight-line depreciatio               
    Chnge. method     No automatic changeover                 
    Changeover%rate   0.0                                     
    Multiple shift    Increase in depreciation and expired usef
    Scrap value       Base value is reduced by the scrap value
    Period Control for Acqusition (AFAMP)  is Z1 (Mid-month convention) Indicatoer Per Ver is checked
    Let me know if you need more info. Not sure why appreciation is occuring suddenly.
    Apprecieate your response.
    JR

  • How to calculate the depreciation for an asset under repair for a month

    Hi,
    I have placed an asset (Laptop) into service 01.01.2013 and I have calculated the depreciation for the 1st period and in the second period 01.02.2013 the laptop is broken and which was sent to the service center and for that entire month no depreciation is calculated. I wanted to start the depreciation for the same asset on 01.03.2013.
    how to process for the depreciation for 3rd period and for the 2nd month what should be the activity of the asset?
    Please explain in detail.
    Thanks,
    Santhosh.

    Hi,
    If you do not want to post depreciation for an asset, then assign depreciation key 0000 for the asset.
    OR
    Use the asset shutdown option in field status group in time dependent tab.
    Regards
    Srinivas

  • I can not run the depreciation for particular asset which was not acqustion

    Hi Masters,
                     I have created asset master in july 2010 when i did purchase that asset, but i did not post  the asset aqusistion in f-90 up to january. but on remianing all assets i did run the depreciation job  on every month.  Now in january ,  i have openend the posting periods from july to march and post that asset aqusisition f-90 in july psoting period., we are using april to march fiscal year.
                      when i am trying to  run depreciation job repeat run in  afab in test mode from july to december   it showing the error message that, depreciation already done for that proper periods. But in janauary when i am trying to run in test mode, It showing total depreciation amount from july to january , and it hit to only in january month but not to july to december each months.
    Now i want to psot the deprectiation for each month of july onwards to january 2010.
        pelase reply how to do run deprecaiton for that particular asset for each month for july to january

    Hi
    Repeat run you can do only for the last depreciation period. For the asset which you are tryin to post depreciation from July to Jan, please check the asset value date which you have given while posting the transactions or in the asset master.
    If the asset value date is in July, then deprecaition from July - Jan will get posted in the current month depreciation in total. You will not be able to post depreciation individually month wise using AFAB.
    REgards
    Malathi

  • What's the best way to stop pop-ups, add-ons and annoying ads?

    i've tried a lot of things to get rid of all these annoying ads and pop-ups and nothing is 100% working. could anyone please help me out with this on chrome or safari?

    You may have installed one of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

Maybe you are looking for