How to remove extra planned deprecation.

Ii  already run  deprecation  up to 12 period and  asset value is  ok  but in asset explore  planned depreciation still show some amount in 12 period  i want to remove that  amount how do i that?

Hi Raj,
This is not possible.
You have to run the dep for the 12th period in repeat mode.
Hope you have some issues in year end activities, since you are not able to close last FY in AA.
In this case there is an alternative solution is available, which will not effect your Profit/Loss, but the TB figures will get changed.
First do repeat run by test run for 12th period and check how much amount is being showed in column amount to be posted for each asset.
Then post ABZU for those assets for that much of amount and then do the update run for 12th period.
By doing these your accum dep account and dep expense account will have the same balances.
So after year closing in AJAB, again pass a fresh unplanned dep entry with ABAA in 1st period of new year for the same amount.
This information might help you a lot.
Thanks,
Srinu

Similar Messages

  • How to remove Benefit plans from enrollment?

    Hi all,
    While Benefit enrollment testing i need to remove some plans from plans list.(not be shown in enrollment testing)Can anyone tell me how to remove these plans in enrollment testing only?
    Thanks!
    Seema.

    Hi,
    The enrollment of a Benefit Plan for an employee is dependent on the First Program Grouping and the Second Program Groupings assigned to him/her in the General Benefits Information (0171) Infotype.
    Technically speaking, we can enroll/not enroll the employees for Plans only based on these groupings. All the Plans are displayed for employees, but they can enroll ony in a few based on these groupings.
    Since your requirement is to not display them only in testing, and moreover, you do not want to touch the back end configuration settings, we may have to run some report to fix your issue.
    Thanks and Regards,
    S. Veenadhari.

  • How to remove the Planned leave from the LOV of Absence status? Only confirmed leave should be listed. for 11i instance.

    Hi Gurus,
    How to remove the Planned leave from the LOV of Absence status? Only confirmed leave should be listed. for 11i instance.
    Thanks
    Shobhit Shukla

    Hi Shobhit,
    Please personalize the self-service page and make that field non-updatable with default value "Confirmed".
    Thanks,
    Avinash

  • How to remove extra html markups from adf generated code in webcenter porta

    hi!
    I am trying to develop navigation in oracle webcenter portal.
    My code is generating extra div's for li and a tags. how to remove the extra div's.
    code in my template for generating navigation is:
    <div id="JS-MainNav " class="menu9 clearfix">
    <ul class="jd-menu">
    <!-- Root UL-->
    <c:forEach var="node" varStatus="vs"
    items="#{navigationContext.currentModel.listModel['startNode=/, includeStartNode=false']}">
    <li class="single">
    <!-- first li-->
    <af:goLink id="gLink" styleClass="menu9two accessible"
    destination="#{node.goLinkPrettyUrl}">
    <af:outputText value="#{node.title}"/>
    </af:goLink>
    </li>
    <c:if test="${node.selected}">
    <c:set value="${node.children}" var="childNodes"
    scope="session" />
    <ul>
    <!-- 2nd level ul inside li-->
    <c:if test="${childNodes ne null}">
    <c:set var="childNodes"
    value="${navigationContext.currentModel.currentSelection.parent.children}"/>
    <c:forEach items="#{childNodes}" var="node">
    <li class="fixMenuEN ${node.selected ? 'active' : ''}">
    <!-- 2nd level li-->
    <af:goLink inlineStyle="#{node.selected ? 'font-weight:bold;' : ''}"
    id="sub" text="#{node.title}"
    destination="#{node.goLinkPrettyUrl}"/>
    </li>
    </c:forEach>
    </c:if>
    </ul>
    <!--</c:set>-->
    </c:if>
    </c:forEach>
    </ul>
    </div>
    <!-- xMain Site Tabs -->

    What's the HTML result in your browser form this code?

  • How to remove extra spaces from Data Matrix Label?

    Hi All,
    Kindly let me know how we can remove extra spaces from Data Matrix Label.
    Suppose we have this following code in SO10.
    ^FO1380,1879^COY,78^BY4^BXR,6,200^FH^FD[)>_1E06_1DF01001T_1D6JUN&v_huf&&v_hul&_1DV&v_supnum1&_1D16K&v_del&_1D6D&v_flddat1&095_1D2L&v_unload&_1D
    P&v_article&_1D4L&v_madein&_1D_1E_04^FS.
    Variable have there own value. and the desired result will be shown like the attachment.
    But in my code it splits into new line when CMIR value has 3 spaces.
    If CMIR value is 1S0 820 355 A . then it creats a new line.
    Kindly suggest me any possible solution.
    Thanks,
    Partha

    Hi Gaurav,
    In print preview we can't see any space or new line. But when it scanned by TSB (barcode scanner) it will generate a new line when there is 3 space CMIR value.
    So where should I write SHIFT CMIR LEFT DELETING LEADING space this code?
    Because there is no space coming at the time of debugging or print preview.
    And in SO10 the code written as
    ^FO1380,1879^BY4^BXR,6,200^FH^FD[)>
    Here CMIR value is 1SO 820 303 A
    and generated output is like this.
    And desired output should be like this.

  • STS -HOW TO REMOVE OPEN PLANNING TAB

    Hi,
    when a subordinate sends his plan for approval in sts,the approver at higher level could see a open planning tab through which he is able to change what his subordinate has planned.
    how to remove that tab.
    any advice would be highly appreciated.
    thanks

    Unlock the Network preference pane, if necessary, by clicking the lock icon in the lower left corner and entering your password. Cllck Advanced, open the DNS tab, and delete the server addresses. Click OK and then Apply.

  • How to remove extra spaces in a xml formatted string

    Hi,
    I am trying to remove extra spaces between the xml tags. For
    example, if a string is something like
    ' <header 1> <header 2> test </header 2> </header1>'
    I want to get rid of the spaces only between the closing tag of header 1 and opening tag of header 2 and closing tag of header 2 and opening tag of header 1, in short ,I want to remove the extra spaces between the tags if there are no other characters between them. I do not want the remove the spaces between closing tag header 2 and opening tag of header ,as there is occurence of other characters.
    I am aware that this can be done by looping through the string and using instr to identify the characters '<' and '>', but I would like to use it as a last resort only.
    Can anyone suggest me a better way of doing it in a single go by manipulating the data?
    Any help is really appreciated.
    Regards,
    Anil.

    You can use the replace function. If you only expect one extra space, then:
    scott@ORA92> select replace ('<header 1> <header 2> test </header 2> </header1>',
    2      '><', '><')
    3 from dual
    4 /
    REPLACE('<HEADER1><HEADER2>TEST</HEADER2></HEADER
    <header 1> <header 2> test </header 2> </header1>
    If you expect more extra spaces, then you will need to wrap another replace function around it for each space, for example the following will eliminate up to three spaces:
    scott@ORA92> select replace (replace (replace ('<header 1> <header 2> test </header 2> </header1>',
    2      '>     <', '><'), '>     <', '><'), '> <', '><')
    3 from dual
    4 /
    REPLACE(REPLACE(REPLACE('<HEADER1><HEADER2>TEST
    <header 1><header 2> test </header 2></header1>

  • How to remove extra data

    Hi there.
    I recently added some data to my capped plan mobile phone and want to remove the added data. So it was 2GB usage and I made it 2.2GB but I want to go back to 2GB. Anyone know where/how to do this please :/

    Thanks Jeff
    It says:
    Removing a data pack
    To remove a data pack from your service, please:
    Call us on 1800 303 302
    Visit your nearest Telstra Store
    So there is no self service to this. So easy to add the extra data pack but have to get Telstra to do it I don't that but thank you so much for your reply (y)

  • How to remove extra char in the uploaded file...?

    Dear All,
    There is file upload page in our portal.When user uploads the file (CSV) i can see there is extra char (^M) in the unix env.How can I remove that extra char before inserting into the database.For inserting into database I am using below code:
    BlobDomain blobdomain = (BlobDomain)pageContext.getParameterObject(upldFileNameHD);
    header.setFileData(blobdomain);
    Did anyone can help me on this...
    Thanks

    Raffy is right in giving the explanation on why this happens.
    Now way to
    1. Remove it:
    A. open file in vi
    B. use this command, the way it works is, search(%s) for the ^M char and replace it with space (//) , and do this globally (g)
    :%s/^M//g
    C. To type ^M char press Ctrl Key and press either M or J, it should print that char.
    D. Save the file (:wq)
    2. Avoid it:
    when doing FTP, use binary mode, just type bin before you do a put.
    Thanks,
    Tapash

  • Two of each template in the chooser how to remove extras?

    Hello all,
    since installing leopard I have two of each template in the chooser. Only for the template that I purchased from Keynote user site or from another site. How can I remove the extra one?
    Thank you for your help
    Mireille

    Mireille:
    I am not sure I understand the issue. Keynote does not have Templates like Pages. It has Themes and Masters of slides for each Theme.
    If you imported themes from a vendor or sharing website and created a presentation using those [or the default] themes and then opened a saved presentation to use it as if it were a Template, then you would see duplicates of theme masters. That is, those that reside within the applications library and those imported with the presentation that you are working with.
    My advice is to ignore them.
    regards
    dan reiss

  • Given some xml and an xsd, how to remove extra stuff in the xml.

    Hi. I have a question. I am trying to use the various XML libraries to parse/validate an xml file given an XSD schema. I want to remove the extra stuff in the xml to output a new xml. The problem is as I validate or parse the SAXParseException it produce only gives me the localName. Is there a way I can keep track of something detail like the XPath as I validate or parse??? Thank for the help in advanced

    forgot to mention. Basically, I want to try to validate and find all the errors in the an old xml, then be able to fix the errors to end up having an valid xml file.

  • When saving files under options the file name is duplicated how to remove extra folder with the same name

    Under Firefox Options I clicked Saving Files under Downloads but the file name appears twice and an extra folder with the same name is created within the folder i.e.:
    G:\Akbar's Songs\HAMARA FORUMS DOWNLOADS\HAMARA FORUMS DOWNLOADS
    As you can see the folder is repeated, how can I correct this?
    Also the music files I download from a site downloads as WinRar file and I need to open it. Is there an option where the files open automatically in the folder I have selected?
    Many thanks for your help.

    The "beta" version is for testing and may be more prone to problems, so I suggest trying the regular version (9.20) even though it hasn't been updated since 2010.

  • How to remove extra blank spaces from log file.

    i have created a log file which contain the logs of a program. the logs are getting created fine for the first execution of the program but from the second time the log file is getting blank space's after every character.
    i have used the code to append the text in log files few examples : 
     'Clean up process started....' >> $log
    File name :'+ $files +'Time-Stamp: '+ $endtime +'Search complete.' >> $log 
    .i want to remove the extra spaces after each character but not all the spaces from the file. Thanks in advance.

    hi  mjolinor
    add-content is used to insert text it does not append text at the file .i used >> to append the text on log file ..
    from 
    Get-Help ADd-Content
    Synopsis
    Appends content, such as words or data, to a file.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • How to Remove "Project Plan Template" from Project MSP client Enterprise tab / Project Server 2013

    Hello All,
    This should be easy one.
    I have created a "Project Plan Template" and applied to the EPT. Now i open my MSP Client 2013 and go to New--> Enterprise tab and select the template i want to use to create a new project. However, there are unnecessary Plan Templates which
    i want to remove from enterprise tab.
    Please Help. 
    sandeep

    Hi Sandeep, Go to PWA,server settings, delete enterprise objects. Then select the project combo box. You will see the list of all projects of your instance, with a column named "type". In this column you will find projects, sub projects, master
    projects and templates. Just sort along this type column, look for the templates, select the template to remove and click on the "delete" button.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to remove extra header/footer from BC default template?

    BC put their own header (with live links to dummy pages) and footer (two line of text on the bottom) in my Dreamweaver CS6  job at  http://140001.worldsecuresystems.com/
    Although I'm in the directory I can't seem to delete theses items,
    the Main Template.dwt inside the default Templates folder.
    I can't even delete the code inside it and leave it as an empty file.

    Tobydog20,
    I eneded up having to log in directly at Business Catalyst, not going through DW at all. There I entered a completely different mode, many more folders were visible. There it should also show you the template folder (the one you can't delete) belongs to your current DW project, which is why you can't delete it. You should see the other files that you can delete -- it's an entirely different experience going through Business Catalyst.
    An extra caution, Adobe also added some new CSS global sheets to MY project that weren't in my original upload, so keep an eye out. I discovered this when I had to add code and I swore that page didn't belong to my job. Well, it did.

Maybe you are looking for

  • My phone will not back up!! help please!

    Hi all!! so ive recently updated my iphone 4 to iOS5 after several frustrating attempts, constantly coming up with some error message. this was very surprising to me and i started searching through forums after forums to see whether this issue was on

  • SiND, a Simple, textbased, Notification Daemon

    Alright. I've just gotten the notification daemon I've been writing into a solid spot, so I'd thought I'd share! SiND is a [basically] freedesktop-compliant notification daemon. It receives notifications from dbus, and, well, just spits them out to s

  • Mixing frame rates in project?

    I know this has been discussed a bit on other posts.  But I couldn't quite find the angle/issue I'm working with.  It's mainly a 24fps film, but I have to use 29.97fps archival material.  The end output is 24fps.  If I just edit the different frame r

  • I cant remember my passcode to get on phone and now it says i have disabled it what can i do to sort it cant get onto my phone at all

    i have disabled my phone how do i get it off cant get onto my phone at all because i need to put a passcode in and wont accept the one put in and now i have disabled it dont know what i can do to sort it out

  • Mail application in osx 10.6 is damaged

    Hello, what has happen is, that my girlfriend went into my mail. And to not leave marks, she tried to delete the history in finder about visting my mail. She tried to delete the mail application, and while being in the trash, she couldnt delete since