I Want to change depreciation rate

Hi
i am in sep'09 and i want to change depreciation rate for few assets from April'09.
what is the procedure ???
thanx in advance
sanju

Please search the forum, there are lots of threads on this.
And please do not post duplicate threads.

Similar Messages

  • Change depreciation rate

    Hi Eveybody
    i want to change depreciation rate.. what is the procedure to change the same...
    thanx in advance
    sanju

    Hi Sanjay
    Change of depreciation rate can be in the depreciation key.
    This change modifies the settings in the key and affects the particular asset and also assets whereever the key is being used.
    So check the impact of changing the key and the rate within.
    If assets are already impacted then check reverse using AB08, go to dep key , change the % .
    But you might have issues with prior year assets. It is possible that you cannot post because of closed periods.
    In any case, check the impact, assets affected, period and FY affected and test
    reg
    suresh

  • After 2 years want to change depreciation key for a asset

    Hi,
    For a particular asset we want to change depreciation key for this asset already we have posted depreciation for 2 years. After 2 years user realizes they are using wrong depreciation key now they want to change depreciation key for a particular asset.  In new financial year till now they have not posted depreciation .I just want to now what is the impact of this changes how we will adjust the value in future because previously they are calculating depreciation  1.63% now they want to calculate depreciation 3.33 % can any one tell me about the future impact of asset.
    How we will adjust the value?
    Thanks and Regards,
    Neha

    Hi,
    Does your user wants to post the depreciation for closed Fiscal years?
    If yes First calculate unplanned depreciation for the difference up to the last closed fiscal year and post in the current year.
    Now after posting this then change the depreciation key in the asset master and in the next run the system identifies the difference between posted value with the old Key and teh correct key and adjusts the difference in the current period depreciation run.
    If the user don't want to post the values of the previous years, change the key in asset master so that the difference in the depreciation from the start of the fiscal year is adjusted in the current period.
    Future impact if the option is second the asset life will be more when compared to the actual life. In first case there is no effect.
    Provide Business with these two solutions and they have to choose between the options.
    Reward points if useful.
    Sarma

  • I have one application that has requirement to do low and high speed acquisition. I want to change sample rate while running. BUT... I have E series Device

    I am writing control software for a process that is usually dull and
    requires only 10 Hz acquisition rate.  At particular times during
    the sequence, however, we are interested in looking at a couple of
    channels at 1000 Hz.  My approach so far is to configure my
    Buffered DAQ to run at the higher rate at all times.  When we are
    in the 'high-speed DAQ' mode, the program logs every point to
    disk.  In the 'low-speed' mode, I am picking off every nth (in
    this case, 10th) point to log to disk.  At all times, I update my
    GUI indicators on the front panel at a maximum of 4 times per second (I
    find that anything faster results in an uncomfortable display), so I
    fill up a FIFO with data in my acquisition / logging loop, and read the
    FIFO in the display loop.  The data in my GUI display can be up to
    250 milliseconds off, but I find this acceptable . As a side note, I
    need buffered Daq with hardware timing, as software timing results in
    lost data at 1000 Hz.
    This all works fine and dandy, but I am convinced that it is not the
    most elegant solution in the world.  Has anyone developed a
    buffered DAQ loop where the scan rate can be adjusted during
    operation?  I would like to change the rate of the E-Series card
    rather than relying on down-sampling as I am now doing. 
    The reason I have concern is that at the moment I am simulating my AI
    using MAX and when running the down-sampling routine, I consistently
    miss a particular event on the simulated data becuase the event in
    question on the simulated data always occurs at the same 'time', and I
    always miss it.  Granted, while it is unlikely that my measured
    signal and my acquisition are perfectly synchronized in the real world,
    this particular situation points out the weakness in my approach.
    More than anything, I am looking for ideas from the community to see
    how other people have solved similar problems, and to have you guys
    either tear apart my approach or tell me it is 'ok'.  What do you
    think?
    Wes Ramm, Cyth UK
    CLD, CPLI

    Adding to Alan's answer:
    One of the problems that comes with these tricks for variable-rate acquisition is being able to match up sample data with the time that it was sampled. 
    If you weren't using either of E-series board's counters, there is a nifty solution to this!  You'll be using 1 of the counters to generate the variable-rate sampling clock.  You can then use the 2nd counter to perform a buffered period measurement on the output of the 1st counter.  This gives you a hw-timed measurement of every sampling interval.  You would need to keep track of a cumulative sum of these periods to generate a hw-accurate timestamp value for each sample.
    Note:  the very first buffered period measurement is the time from starting the 2nd counter until the first active edge from the 1st.  For your app, you should ignore it.
    -Kevin P.

  • Want to change frame rate, help, please !!

    hi all,
    i want to know whether, jmf does provide any support for changing the frame rate ? is there any ways by which one can change the framerate, of a live captured video ?
    i came across one class "FrameRateControl" in jmf, tried it, but wasn't successful in changing the frame rate. plz help me guys.
    if u have came across, when doing live capturing using jmstudio, we can change the frame rate. can we do that in our programs tooo.
    please someone, wew64, watergad.......... help me out..........,
    thanks for ur help.
    niraj.

    the code is here and it is working on windows, but the framerate could not be changed on linux. it keeps saying rcFormat is null on linux. Then I try to change the framerate with JMStudio, it doest not make any difference as well, it seems keep playing the video with preferred frame rate as well. Any ideas?
    import java.applet.Applet;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import javax.media.*;
    import javax.media.cdm.CaptureDeviceManager;
    import javax.media.control.*;
    import javax.media.format.VideoFormat;
    import javax.media.util.BufferToImage;
    import javax.media.protocol.*;
    import javax.swing.*;
    import java.util.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    public class TVCapture extends Applet {
    static Player player = null;
    Format [] formats;
         FormatControl [] vfc = null; // Video FormatControl
         CaptureDevice vcd = null; // Video CaptureDevice
         private DataSource vds = null; // Video DataSource
         public void init(){
              try {
                   vds = Manager.createDataSource(new MediaLocator("v4l://0")); //on linux
    //               vds = Manager.createDataSource(new MediaLocator("vfw://0")); //on windows
              } catch (java.io.IOException _e)   {
                   System.out.println(_e);
              } catch (NoDataSourceException _e) {
                   System.out.println(_e);
              vcd = (CaptureDevice)vds;
              vfc = vcd.getFormatControls();
              if (vfc != null) {
                   System.out.println("vfc ! = null");
                   System.out.println("vfc[0] = " + vfc[0]);
                   System.out.println("vfc.length = " + vfc.length);
                   System.out.println("vfc[0].getFormat = " + vfc[0].getFormat());
                   Format [] supportedFormats = vfc[0].getSupportedFormats();
                   int i;
                   for (i=0; i< supportedFormats.length; i ++) {
         System.out.println("supportedFormats["+i+"]=" + supportedFormats);
    //               Format tmpFormat = vfc[0].setFormat(supportedFormats[6]);
                   Format tmpFormat = supportedFormats[6];
                   System.out.println("tmpFormat = " + tmpFormat);
                   System.out.println("tmpFormat.getEncoding() = " + tmpFormat.getEncoding());
                   System.out.println("Dimension size =" + ((VideoFormat)tmpFormat).getSize());     
                   System.out.println("maxDataLength =" + ((VideoFormat)tmpFormat).getMaxDataLength());     
                   System.out.println("tmpFormat.getDataType() = " + tmpFormat.getDataType());
                   System.out.println("frameRate = " + ((VideoFormat)tmpFormat).getFrameRate());
                   VideoFormat videoFormat = new VideoFormat( tmpFormat.getEncoding(),
                                                      ((VideoFormat)tmpFormat).getSize(),
                                                                     ((VideoFormat)tmpFormat).getMaxDataLength(),
                                                                     tmpFormat.getDataType(),
                                                                     25.0f);
                   Format rcFormat = vfc[0].setFormat(videoFormat);
                   System.out.println("rcFormat = " + rcFormat);
                   //it seems rcFormat is null on linux
                   //but setFormat is working on windows
              } else {
                   System.out.println("cannot get the formatControls()");
              setLayout(new BorderLayout());
              setSize(320,240);
              try {
    //      player = Manager.createRealizedPlayer(new MediaLocator("v4l://0"));
    player = Manager.createRealizedPlayer(vds);
    player.start();
    Component comp;
    if ((comp = player.getVisualComponent()) != null) {
         add(comp,BorderLayout.NORTH);
    //               add (player.getControlPanelComponent());
    } catch (Exception e) {
    e.printStackTrace();
    public static void playerclose() {
              if(player != null) {           
         player.close();
         player.deallocate();
    public void close() {
              if(player != null) {
                   player.close();
    public void destroy() {
              if (player != null) {
              player.close();
              player.deallocate();
    public void stop() {
              if (player != null ) {
              player.stop();

  • Depreciation rate change from a particular date

    Dear Guru's
    Can any body help me,  In my plant machinaries working 2 shifts now it is working only 1 ****.  
    my client is asking can we change the depriciation rate from a particular date onwards.  If we change the depriciation from a particular date what impact will be there,  is it will effect old values ?
    please suggest me.
    Regards
    Chandu

    Hi
    Yes, we can change depreciation rate from a particular period/ year onwards.
    For that you have to do configuration in Multilevel method ( T. Code AFAMS ). But you can not keep rate as per date. Suppose, for 2008, you want to maintain rate 210 upto 10 % and from 7th period, rate will be 20%, then
    AcqYear     Year         Period      Base Value     Rate        Reduct
    2008            1               6                1               10                 -                                                         
    9999           999            0                  1                20              -
    Rajib

  • Channge of Depreciation Rate

    Hi Team,
    Depreciation run happened for Jan period. with Rate 10%.
    Now the user want to change the rate to 15%.  If I go head and make the changes in "Define Multi-Level Methods" with 15% what is the impact.
    Could you please let me Pros and con
    Regards,

    hi
    kindly check if the 'base method'  derives percentage from Useful life, if so, the system will not allow you to assign the multi level method with a %.
    thanks
    eashwar

  • How to Change Interest Rates for a loan with different disbursement?

    Hi,
    My user has a loan with Commitment capital of 35,000SGD with 1.3% interest Rate
    On his first disbursement he allocation only 25,000 since interest rate is at Loan contract level 1.3% interest rate is use as well.
    On his 2nd disbursement (for the remaining 10,000) he want to change interest rate from 1.3% to 1.5% which is not feasible, I think.
    My advise:
    1. Create a new contract with a capital amount of 10,000 and interest rate of 1.5%.
    2. Reverse the disbursement for the original contract in order to change its commitment capital amount from 35,000 to 25,000 only.
    The problem:
    Upon reversal of the disbursement we got an error - "Account determination for paid disbursement not possible cotract 100701".
    Can anybody know what should be the correct way to adjust the interest rate?
    Or how can we get rid the error message to continue my proposal?
    Thanks a lot.

    Hi,
    I assume you are using TCode - FNM3 for reversing the paid disbursement. Please check the Account Determination for Reversal posting keys/account symbols in SPROLoans MgtAcct Determination.
    Regards
    Prasad AV

  • Change exchange rate after MIRO

    Hi Expert,
    Please help me ..................
    I created PO used currency USD. I didn't check "Fixed Exchange rate" in PO.,
    When I'm doing Invoice received, I forgot exchange rate in Details tab in MIRO (system display exchange rate difference from PO) and I have invoice docuemnt.
    I want to change exchange rate in Details tab in MIRO.
    How can I do?

    Hi Anjali
    I can't change the exchange rate in MIRO detail tab.
    Please help me.
    Thanks.

  • Different depreciation rates in different years

    Hi ,
    I have come across a situation in which client wants that different depreciation rates should be charged in different years.
    For example 10% in 1st year, 7.5 % in 2nd year, 6 % in 3rd year, 4.5% in 4 years and so on .
    Asset life should be assumed to be 10 years .
    How can we map this in SAP.Please provide detail explanation.
    Regards
    Nike

    Dear,
    Nike Sam.
    I supposed your issue seems relating to MACRS depreciation I think. If so then you have to use the multi level method in depreciation key. 
    Please note the your case is like MACRS depreciation so according to me you will get standard depreciation key for MACRS is
    M200 & M150. However you can study them & configure as suits to your needs.
    Perfom this on test client first. If you have any doubts feel free to share. You are welcome.
    Regards,
    Pankaj A Bhalerao.

  • Depreciation rate change

    Hi Asset Master's
    As per the leagal requirement client wants to change the depreciation rate from a particular date 13% to 20%. Is it possible? then how to change the depreciation. If we assign new key or change % in old key, system is calculating depreciation right from the begining (Previous values also re-calculating the system). Please suggest me what is the possible solution and scenarios that we have to follow.
    Regards
    Aakash

    Hi Meenakshi
    Simply we have to maintain new dep. key and assign or is there any configuration settings. can u please suggest any precautions that we have to be maintained.
    Tahnks & regards
    Aakash

  • I want to play video on my computer to make some analysis to frames,the problem that I face ,I can't change video frame rate using labview,but I can change frame rate to the video out of labview using some program

    HI All
    I want to play video on my computer to make some analysis to it's frames,the problem that I face ,I can't change video frame rate using labview,but I can change frame rate to the video out of labview using some program .
    I used IMAQ AVI Read Frame VI
    for example I have avi video It's frame rate is 25 fbs ,my image processing code is very fast that can process more 25 fbs,so I want to accelerate video acquisition

    Hi abdelhady,
    I looked into this further, and reading an AVI file into LabVIEW faster than its frames per second won't be possible. LabVIEW could read in frames faster than 25fps, but because it will be pulling the available frame at that point in time this would just give you duplicate frames. If you want to be able to read in frames at faster than 25fps, you would need to speed up your AVI file before reading into LabVIEW.
    There's a good shipping example to show how to read in from an AVI file, "Read AVI File.vi". You'll notice that they add timing to make sure that the while loop runs at the right speed to match up with the frames per second of the file being read. This is to make sure you're not reading duplicate frames.
    Thank you,
    Emily C
    Applications Engineer
    National Instruments

  • Want to change Tax Code Rate

    Hi
    <b>Using SRM 5.0 Ext Class Scenario. Tax calculation occurs in R/3.</b> I want to change the Tax rate.
    As I am creating SC & PO in EBP. I use TAX CODE. Now I want to change the tax rate of Ecess from 2% to 3%. Can u please tell me whether I can change the same in EBP or I have to replicate it from R/3.
    Thanks in advance
    Vinod

    Hi,
    Did you try implementing BADI BBP_DET_TAXCODE_BADI?
    I hope this help you
    Thx

  • Changes in depreciation rate

    dear all,
    once the depreciation rate is changed & we need to execute the depreciation run & also TC-AFAR to recalculate the depreciation..correct me if i am wrong.After this changes in the dep. amount we need to report in our financial statement also.
    Now how to know the  effect of changes made during this year.What i mean to say is is there any report or transaction code available which can give the details of changes made to assets with dep rate change.i.e writting up & writting down 
    Thanks,
    shivaji

    Hi,
    Please check following reports.....
    AR15                             Changes to Master Record
    S_ALR_87010190         Changes to Asset Master Records
    S_ALR_87010191         Changes to Asset Master Records
    S_ALR_87011923         Changes to Asset Master Records
    S_ALR_87011924         Changes to Asset Master Records
    S_ALR_87012037         Changes to Asset Master Records
    S_ALR_87012038         Changes to Asset Master Records
    S_ALR_87013787         Changes to Asset Master Records
    S_ALR_87013788         Changes to Asset Master Records
    S_ALR_87101170         Audit
    Best Regards,
    Madhu

  • How to change exchange rate type for specific pricing condition type

    Hello every one,
    I have a requirement for billing ie VF01.
    currently  all the exchange rate are being calculated with exchange rate type 'M' by default.
    but now client want it should calculate exchange rate with type 'E' for two pricing condition type for all others it should calculate with type 'M'
    Please any body can help me with the exit and code which i can use.
    I have checked exits SDVFX008.
    but how to change exchange rate with type 'E' only for two conditions.
    as changing exchange rate at document header will change exchange rate for all condition type.

    You need to assign KOMK-KURST = 'E', for those two condition types. If it had been item number specific, you could have used USEREXIT_PRICING_PREPARE_TKOMK(RV60AFZZ).
    Do one thing, put a breakpoint on FM 'PRICING' and then do selective runtime analysis.
    Check whether any user exit/BADI/ explicit enhancement are available when condition types are processed in a loop. If nothing is available, try implicit enhancement.
    Link to refer for selective runtime analysis - Runtime Analysis for VOFM
    Also try with VOFM requirements ( not sure whether changing KOMK-KURST is permissable in requirement as normally  we only set sy-subrc values to suppress/allow condition types ). Don't forget to assign requirements against condition types in pricing procedure.

Maybe you are looking for