Depreciation Posted in Asset Module but not in GL

Hi,
In one of the assets, falling under the 'Assets Under Construction' by mistake the users defined the depreciation key. Accordingly there was an error while running the depreciation. However, after amending the assets master and removing the depreciation key, the depreciation was again conducted. But this time, the depreciation for the month appears to get posted in the Asset Module, without there being any entry in GL Account. When we look at the asset balances report with posted depreciation, we find the depreciation in this asset. Since there is no Accum Dep account for the AUC, the system is not allowing to carry out the Book Depreciation.
The question is how can we remove the depreciation from the asset module only, without affecting the GAL?
Thanks in advance for the assistance.

Hi Rajjul,
you mix up things. First of all the changes will not have any effect as long as your RESTART run has not been executed successful. The RESTART will only pick up the postings (on FI-AA side) which have been created in the original run. If there have been values to be posted for an asset, it must be posted.
Therefor you have to change configuration now, store accounts for the Auc class and post the depreciation. First when this run finished successful, and you execute a REPEAT run, the system will catch up depreciation back to zero.
A RESTART run will never calculate the depreciation value to be posted new, it always takes to amount calculated to be posted from its original run.
Markus

Similar Messages

  • 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

  • Doubt on Depreciation in Fixed Assets Module

    Dear Members,
    When we run depreciation we have an option to select the "Close Period" check box and Oracle Standard user guide says that "Depreciation can be run as many times as needed in the current period as long as it is not closed".
    Now when we run depreciation by selecting the check box "Close Period" we can see the amount depreciated for the assets in the period.
    Navigation we use to see the amount depreciated for the period is:
    Fixed Assets Super User-->Inquiry-->Financial Information-->Books(B)
    But if we run the depreciation without selecting the check box "Close Period" we cannot see the amount depreciated for the assets in the period.
    Can any one explain us what is the reason?
    If user wants to see the depreciation amount for certain assets before closing the period then where he can see the amount?
    Thanks in advance for your valuable replies.
    Best Regards

    Hello,
    Steps:
    a) Are you querying the Correct Asset?
    b) Are you querying the Correct Asset Book?
    If you have added a new assets in the same period and run the depreciation without checking the checkbox then the system will calculate the deprecation.
    Please reply what is the question you need to ask
    What is the actual problem r u facing.
    Srikanth

  • 10-bit color works in LR4 devel module but not in PS CS6

    Dear all,
    my setup is a ATI FirePro v4900 connected to two monitors: an Eizo CG276 and an old second monitor. I would like to get the Eizo to display 10-bit colors in PS CS6 under a 64-bit Windows 7.
    After setting everything up, I am at a point where Lightroom 4.4 displays the notorious ramp.psd file (see below) without banding in the develop module, hence I assume 10-bit is working there. In Photoshop, however, I had no success so far to get 10-bit to work.
    Here's what I've done so far:
    I set everything up as described here http://www.eizo.com/global/support/compatibility/photoshopcs6_nvidia_amd/index.html
    Summed up, I did:
    1) enable 10-bit mode in ATI driver and rebooted -> checked and this is still enabled after reboot
    2) open PS CS6 and enable "advanced" drawing mode and 30-bit display in the "performance" options and rebooted  -> checked and this is still enabled after reboot
    I verified that the monitor runs in 10-bit mode using Monitor Asset Manager 2.6 (http://www.entechtaiwan.com/util/moninfo.shtm). It states that Color bit depth is "10 bits per primary color", which is what I want.
    Then I tried to open the ATI 10-bit test file ramp.psd (http://www.amd.com/us/products/workstation/graphics/software/Pages/adobe-photoshop.aspx). In Photoshop it shows banding. As I've read that Lightroom 4's develop module uses 10-bit, I opened the file there and it had no banding.
    The only troubleshooting I could find for 10-bit colors in PS was this post http://www.dpreview.com/forums/post/40945907 however I do not have desaturation set in the color preferences of PS, hence it does not apply to my problem.
    Does anyone of you have any idea about what to try next?

    I forgot to mention: the Eizo is obviously connected to the V4900 via DisplayPort as that is the required connection type for 10-bit colors.
    PLEASE someone help me with some tip on this, I'm really stuck.

  • POST data as parameter but not in content?

    I need to send some data from a PDA to a server. This works ok via SOAP but is rather slow, so I want to use a more efficient approach: sending a custom XML directly to a servlet. For this I use the URLConnection and POST the XML directly.
    The data arrives in the servlet, but I am not able to extract it from the request. For some reason it is seen als a parameter but not in the content. I have captured the actual HTTP request being sent (stripped the remaining XML):
    POST /xxx/PdaOrder1Servlet HTTP/1.1
    User-Agent: Java1.3.0_02
    Host: localhost:8181
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alive
    Content-type: application/x-www-form-urlencoded
    Content-length: 541
    +<pdaorder pdaOrderNr="2" ...+
    As said, this arrives at the servlet, because when I print the parameter it has the data the was sent:
    DEBUG PdaOrder1Servlet.doPost(PdaOrder1Servlet.java:74) - -------------------------
    DEBUG PdaOrder1Servlet.doPost(PdaOrder1Servlet.java:75) - Processing request: POST http://localhost:8181/xxx/PdaOrder1Servlet / [<pdaorder  pdaOrderNr=>{"2" ...
    It maps the start of the XML "<pdaorder pdaOrderNr" as the key in the parameter and the remainder of the XML document as the value. But if I try to read the data using the reader:
                   BufferedReader in = new BufferedReader(request.getReader());
                   String decodedString;
                   while ((decodedString = in.readLine()) != null) System.out.println(decodedString);
                   in.close();I get nothing. How do I access the raw content being sent in the HTTP request? Why is the content of a POST interpreted as parameters?

    Sometimes typing a problem out helps: the content type of the request needed to be set to text/xml

  • HTTP POST works on browser but not socketically

    I can post info using a simple html but i cant post using sockets..
    InetAddress addr = InetAddress.getByName(hostname);
                Socket socket = new Socket(addr, port);
                String path = postpath;
                BufferedWriter wr = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream(), "UTF8"));
                wr.write("POST "+path+" HTTP/1.0\r\n");
                wr.write("Content-Length: "+data.length()+"\r\n");
                wr.write("Content-Type: application/x-www-form-urlencoded\r\n");
                wr.write("\r\n");
                wr.write(data);
                wr.flush();
                BufferedReader rd = new BufferedReader(new InputStreamReader(socket.getInputStream()))
    /code]
    it works on my local web server but not on the remote web server. what could be the problem and explanation?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    100% right way is to catch request from browser and create your our in same way. Completely except content length and content itself :)
    If you can't then try to:
    add Host field
    add Cookies if present
    add Referer
    add User-Agent
    Some clever servers check all these fields for some reasons (prevent silly attacks for example and successfully as I can see...)
    Then ask again.
    One more - are you sure you use correct content format? And last - how do you know it doesn't work with remote server? Exactly?

  • Depreciation Posting for Asset Class

    Hi SAP Guru's
    While running depreciation through AFAB, i am not able to post the depreciation for 17 & 18  classes of assets (for April'08), and it is posting for remainig assets classes.
    it showing an Error Message as follows
    Message(s) when checking document ERROR00001
    Message no. AAPO511
    Diagnosis
    Messages were issued when document ERROR00001 was checked. The related lines in the error list are from 1 to 579.
    The next lines in the error log provide more information on the errors that occurred, or information or warnings that were issued.
    *System response*
    *Information messages are intended to give the user information on certain actions of the program during document creation.*
    *Serious errors during processing can prevent the document from being posted. However, in that case the system still continues to process other documents.*
    *Procedure*
    *Information messages do not cause processing to terminate. No further action is required.*
    *For serious errors that cause processing to terminate, try to find the cause of the error. After you correct the error, you have to restart the posting program.*
    please give me an immediate solution .
    Kind regards
    Praveen Kumar

    Hi Praveen,
    Your not mentioned which version followed by you Either ECC 6.0 or 4.7.
    If your following ECC 6.0 version Here you can deselect the external check box for document type AF. (OBA7)
    Then you can execute depreciation under TC AFAB .
    You can see the planned or unplanned depreciation.
    The Above information it might be resolved your issue.
    Thanks
    Venkatesh
    Thanks,
    Cheers,
    Venkatesh
    Edited by: vdd08381 on Oct 17, 2011 5:19 PM

  • GL Posting using BAPI BAPI_ACC_DOCUMENT_POST but not updating in table BSEG

    Hi Experts,
    Hope all are doing greatu2026
    I need you help to resolve the below issue.
    We have on Z-Tcode to GL Posting the document using BAPI u2018BAPI_ACC_DOCUMENT_POST' and this program is successfully posted from the source file and documnet # also created successully.
    We have entries in BKPF, but the table BSEG not updating and we do not have entries.
    Please help me on this regards,
    Thanks in Advance.
    Amjad

    Hi Srikant,
    Thanks for your reply...
    As you suggest, i have checked the structure ACCOUNTGL and below values are passing.
    ACCOUNTGL -ITEMNO_ACC
    ACCOUNTGL -GL_ACCOUNT
    ACCOUNTGL- ITEM_TEXT
    ACCOUNTGL- COMP_CODE
    ACCOUNTGL- COSTCENTER
    ACCOUNTGL- CS_TRANS_T
    Could you please suggest me if there are any  changes needs to do.
    Thanks & Regards,
    Amjad Hussain

  • Personnel subarea  changed in hr module but not reflecting to bi with same

    Dear all
                below is the scenario at present
    personnel subarea  for employee in april was  as   1111.
    personnel subarea for that employee in MAY IS       1120
                                    that is one employee changed from personnel subarea 1111 to 1120 in HR - MODULE R/3
    In BI still he showing in personnel subarea 1111 only
    How to get changed this employyye form personnel subarea 1111 to 1120 where as PERSONNEL AREA IS SAME
    Provide your valueble suggestions.
    Thanks
    satish.A

    Hi Thankd for ur qick reply
    Already i have loaded the data of o employee but it is not working.Just now also done the same there is no use
    personnel subarea is not getting changed as of r/3 for the employee.
    Any more ideas regarding the issue it will be helpful
    Thanks
    Satish.A

  • Brazil depreciation posted at asset level?

    Hi all,
    I did a quick search here and didn't see anything so thought I'd ask.
    We are hearing from our business partners that Brazil has a local statutory requirement to post depreciation to the local ledger in the new GL at the individual asset level, rather than a summary posting.  Has anyone heard of such a requirement?  Do others use the standard SAP depreciation program to make summary depreciation postings to the GL for Brazil local books?  Seems crazy to me.
    Thanks,
    Patrick

    Hello,
    You need to create a seperate book for statutory reporting.
    Go to OADB > then select Brazil chart of depreciation and maintain the following:
    Area
    Description
    Posting Indicator
    Ledger
    1
    Leading Book
    1
    0L
    *2
    Statutory Book
    3
    **NL
    *10
    Difference area
    6
    **NL
    *you can choose on your number convention for area
    ** this is your statutory ledger
    Book 10 is the difference between statutory and leading book, set it up as (+positive) Book 01 and (-negative) Book 26.
    Hope this helps.
    Thanks!
    Jhero

  • IDOC posted successfully from XI but not reflecting in Receiver R/3 system

    Hi All,
    My scenario is File-XI-IDOC.
    I am getting successfull message for outbound IDOC in XI.
    But when I search in receiver R/3 system I am not getting any inbound IDOC in R/3.
    I have checked all the parameters in SM59,ports and partner profile,but still not working.
    Please help.

    hi Bhavesh,
    This authorization problem is related to XI user or the one I mentioned in RFC destination?
    Whose autorizationa I should change XI user or R/3 user?(I am bit confused.)
    Because if problem was in RFC destination user I should not get my metadat also,I am getting message as "No authorization to send IDocs with message type MATMAS" is it related to XI user id or R/3 user id.
    Thanks,need ur help.

  • How can I change the link color css in one module but not the whole site?

    I have a site built in muse but using modules from BC.  I changed the link color in the css for the online store and blog but of course it is applying it to everypage.  Is there a way to change the link color in an individual BC module instead of the whole site.?  I'm new to CSS obviously.
    Thanks
    Josh

    I don't think you can do it right in Muse but you can easily if you have access to the code of the page and the css file.
    You need to create a css class something like:
    .secondLink a      {     /*  secondLink can be any class name, I just chose that randomly
         color: #990000;     /* of course substitute your color code in there
    Then in your code add:
    class="secondLink"
    to your link's <a> tag. This will give any links with the class of secondLink the color assigned. Hope that helps get you started.

  • Reverse Depreciation in Asset Module

    Dear Freinds,
    Pl advise how to reverse Depreciation posted in Asset Module in SAP ?
    We have run Unplanned Dep in period 7 , but FI period was closed , sys gave an error message that " period is not open " . Now if we want to run in period 8 , system is asking to restart for period 8. <u><b>There has been no FI entry posted in the sys.</b></u>
    What we want is to reverse the dep posting of period 1 to 7  in Asset Module  , so that we can run Unplanned depreciation from 1 to 8 periods in period 8. <b>HOW TO DO THIS ?</b>
    Thnks
    Vinod

    Why would you want to reverse all of the depreciation that was posted?  Since asset accounting is a subledger of the G/L that would have an impact on the closed periods in FI/GL.
    There is no functionality within standard SAP to reverse depreciation once it is posted.  That way, SAP mantains the integrity of the postings in FI and keeps the subledger and ledger in sync.
    If you feel that you have a real business need to do this, log in an OSS message.  SAP may have some tools that will help you with this.

  • 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

  • Stop Depreciation of an Asset

    Hi Gurus,
    We have an asset that was capitalized last March 2011with useful life of 3years.  To be specific, the item is a television set.
    Goods receipt was transacted last March for this asset with ttype 120 with an entry of Dr. Asset and Cr. GR/IR Clearing Account.
    2 months of depreciation were already posted last April and May 2011.
    The problem is that the department head told our accounting dept that this item should not be treated as an asset and should be charged to a personal expense.
    Kindly advise on how we can stop the depreciation this month June and the succeeding months.  Pls advise also on how can we correct the previous postings that were already made on this asset (GR and depreciation) given that the books for the previous months were already closed.
    Thanks,
    Ellicec

    Dear:
              Please check if  reversal of the Past Depreciation(posted) is possible through Write-Up ABZU - Miscellaneous is the transaction used for Write-Up of past depreciation.
    Transaction effects will be like
    Accumulated Dep A/C Debit
    Deprecation exp a/c A/C Credit
    For more info please check link
    /people/nathan.genez/blog/2008/06/26/reversing-a-depreciation-run-in-asset-accounting
    OASV can give credit to Acc dep posted for an asset class but not to a particular asset.
              Regards

Maybe you are looking for