Is it possible to change the asset value after depreciation posted for 4 months

Hi
Is it possible to change the asset value from 50000 to 60000 after posting the depreciation for 4 months.
If it is possible kindly share the process..
Thanks
Srikanth KVS

1. In the explorer page, settings dialog, you can change the display format to show only name.
2. We cannot use other freeform attribute as DisplayFormat, rather than Code Name. So there are 2 option here:
a. Remove HierarchyName attribute and just use Name attribute. In the next release, we will allow give Name, Code attribute a displayname, so you can give Name display name as "HierarchyName" in the SQL Vnext release.
b. Make a Business Rule to update Name when HierarchyName is changed.

Similar Messages

  • Is it possible to change the spell check dictionary in "pages for iPad" from Spanish to UK English?  The app was downloaded in Spain.

    Is it possible to change the spell check dictionary in “pages for iPad” from Spanish to UK English?  The app was purchased in Spain and I am living in spain temporarily

    Spell checking should be based on the keyboard layout that you've got selected in Settings > General > Keyboard > International Keyboards - if you have an English 'UK keyboard' selected then the spell checking should be English

  • Is it possible to change the tempo mid-song in GarageBand for iPad? And if so, how do you do it?, Is it possible to change the tempo mid-song in GarageBand for iPad? And if so, how do you do it?

    Is it possible to change the tempo mid-song in GarageBand for iPad? And if so, how do you do it?

    The tempo setting applies to the whole song, but only to the recorded midi instruments or loops. It's a bit of a kludge, but you could record different sections at different tempos, export each as an AIFF file, then glue them together in a new project.
    The same goes for the key.
    tt2

  • Is it possible to change the display value of a domain-based attribute?

    Hello,
    I've selected a domain-based attribute for one of the leaf member attributes in the same entity, aka parent id, since it's a self-referencing entity.  However, I cannot find a way to display anything but the code value in the drop-down (see below).
    Is there a way to change the display value so that I can choose the attribute from the entity from which I want the user to choose? In other words, I would like to display the hierarchy name instead of the code, which is really just the primary id.
    Thanks in advance!
    Ben Lezin

    1. In the explorer page, settings dialog, you can change the display format to show only name.
    2. We cannot use other freeform attribute as DisplayFormat, rather than Code Name. So there are 2 option here:
    a. Remove HierarchyName attribute and just use Name attribute. In the next release, we will allow give Name, Code attribute a displayname, so you can give Name display name as "HierarchyName" in the SQL Vnext release.
    b. Make a Business Rule to update Name when HierarchyName is changed.

  • Possible To Change The Colour Of A Theme Template For A Book - Aperture

    Hi
    I am using Aperture 3 and would like to make a photo book for a recent trip, combined with including the text of a blog I wrote during the journey.
    I like the journal theme that now exists in Aperture theme layouts, but I'd like to change the "bark" colour to a specific yellow that was used for all of the promo literature for the event. Is it possible at all, or am I limited to the few colours on the dropdown list?
    If it isnt possible, do you have any other ideas about how else I could achieve this? I have looked at some of the plug ins available and can only see a few that are either too "upmarket" for the job at hand, or also dont allow to change the background to a specific rgb colour.
    Any ideas anyone?
    Thanks!
    Andy

    .
    0* Proceed at your own risk *0
    There may be a much easier way to do this.
    The color information is stored in separate plists for the large and extra-large books. The plist files are at, for example:
    +/Applications/Aperture.app/Contents/Resources/Book Themes/Photo Journal/Extra Large/Backgrounds+
    You can edit the plist to show whatever color you want.

  • How to change the location value after it is registered

    hello,
    I want to change the location (A) to a new schema. From what I am understanding, I need to unregister the old locatin(A) in repository browser, and then re-register it in control center, and change the schema name to my new target.
    Now, I have unregisted A in the repository browser. When I come back to control center, and click the register, everything is grey out which means I cannot change the value (but i need to change the value for service name and schema), except the password value. and on the top, it says 'this location has not been registered. please complete the location parameters'.But I know on the old version, like owb 9.0.5, the grey out means this location is registered. So I am really comfused now. The location is unregisted, why cant I change the value of this location?
    any suggestion will be appreciated.

    Here is what I was referring to - when in Control Center, I have the database locations. (sources, targets, OWF etc). Under a database location I selected the connector/location name under Connectors. When I select Deploy Action to Drop the connector/location name will remain. However, if you were to check in the database or the Repository Browser (Locations Report) you will see that the db link is gone. At this point you can safely modify the Locations info in the Connection Explorer (in Design Center). On the other hand, if you want the location to be deleted all together then now you can delete it in the Connection Explorer panel. If you did the prior drop step then at this point all db link info should be gone from the database.

  • Loader changes the pixel value after loading as bitmap

    Hi all,
    My aim is to load two images and compare its color information pixel by pixel. For this purpose i used "flash.display.Loader" class to load the images, and once load completes i'll typecast the loaded content to bitmap object (loaderObj.content as Bitmap). Finally i'll get the bitmapdata from the bitmap of both the images and compare the pixels.
    Now the problem is the color information of the original image and the loaded bitmap is slightly different. For example the color value of pixels of the attached image image1.jpg is 0xDDDDDD for complete 1366x768. And for the same image when it is loaded as bitmap the color value of pixels are different from the original value (For some pixels only, not all pixels are different).
    I’ve given the source code and sample images.
    Please can anyone help me out how to resolve this issue?
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                                         xmlns:s="library://ns.adobe.com/flex/spark"
                                                         xmlns:mx="library://ns.adobe.com/flex/mx"
                                                         width="1376" height="800"
                                                         showStatusBar="false">
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <fx:Script>
                        <![CDATA[
                                  private function loadBtn_ClickHandler():void{
                                            var file:File = new File(File.desktopDirectory.nativePath);
                                            file.addEventListener(Event.SELECT, onFileSelectionHandler);
                                            file.browseForOpen("Open an image",[new FileFilter("Images", "*.jpg;*.gif;*.png;*.jpeg")]);
                                  private function onFileSelectionHandler(ev:Event):void{
                                            var loadedFilePath:String = (ev.target as File).nativePath;
                                            loadImageAsBitmap(loadedFilePath);
                                  /* Load image as bitmap using Loader */
                                  private function loadImageAsBitmap(url:String):void{
                                            var loader:Loader = new Loader();
                                            // load content as bitmap
                                            loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onContentLoadComplete);
                                            loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onContentLoadFail);
                                            loader.load(new URLRequest(url));
                                  private function onContentLoadComplete(ev:Event):void{
                                            var loaderInfo:LoaderInfo = ev.target as LoaderInfo;
                                            var bitmap:Bitmap = loaderInfo.content as Bitmap;
                                            printPixelValue(bitmap.bitmapData);
                                            container_ID.addChild(bitmap);
                                  private function onContentLoadFail(ioe:IOErrorEvent):void{
                                            trace("Image Load Failed");
                                  private function printPixelValue(bmData:BitmapData):void{
                                            var initPixelValue:Number = -1;
                                            //for (var countI:int = 0; countI < bmData.height; countI++) {
                                            var countI:int = 1;
                                            for (var countJ:int = 0; countJ < bmData.width; countJ++) {
                                                      var pixelValue:Number = bmData.getPixel32(countJ, countI);
                                                      if(pixelValue != initPixelValue){
                                                                initPixelValue = pixelValue;
                                                                // Print the pixel value only for one row
                                                                trace("Pixel Value at " + countI + "x" + countJ + " is: " + pixelValue);
                                            trace("Pixel Value at " + countI + "x" + countJ + " is: " + pixelValue);
                        ]]>
              </fx:Script>
              <s:Button id="loadBtn_ID" label="Load!" click="loadBtn_ClickHandler()"
                                    x="5" y="5" height="20"/>
              <mx:UIComponent id="container_ID" x="5" y="30" width="1366" height="768"/>
    </s:WindowedApplication>
    Sample Image:

    Thanks all,
    Updating the sdk to 4.6.0 fixed the issue

  • Is it possible to change the exchange rate after completion of miro documen

    Dear sap guru's,
        Please suggest me user can raise an po with account assignment cateagory (asset) ie AUC Asset. at the time they are giving exchange rate is 39.41. after doing migo he setteled the AUC asset to Main asset.
    Month ending he is doing MIRO At this time System is caputuring the exchange rate as 39.58. so the differnce amount is comes under AUC Asset.Already the AUC Asset is setteled but exchange rate difference amount is showing in asset. how do i resolved this one Kindly suggest me this is an urgent issue.
    Regards,
    Kumar.

    Hi Kumar,
    There are two solutions,
    1. At the time of MIRO, you can give the exchange rate in the details tab screen which can be an exchanged rate which was used at the time of capitalisation.  Hence, there will not be any differences between capitalised value and MIRO value.
    2. You can post the difference in the AuC asset and again you can distribute it to an expenditure or an assets based on business process / decision.
    Hope it clears your doubt.
    Regards
    A.Saravanan.

  • Is it possible to change the value of "maxdatafiles" after creating a db??

    Hi, all.
    Is it possible to change the value of the followings after creating a database??
    -maxdatafiles
    -maxinstances
    -maxlogfiles
    -maxlogmembers
    -maxloghistory
    Thanks and Regards.

    Hi Chris,
    Thanks for updating that but here's what in Oracle Doc:
    From Oracle Documentation (Oracle® Database New Features Guide 10g Release 2 (10.2))
    Eliminate Control File Re-Creation
    With the control file enhancements, there is no longer a requirement to re-create the control file when changes in the configuration parameters are made. These include the MAXLOGFILE, MAXLOGMEMBERS, MAXLOGHISTORY, MAXDATAFILES, and MAXINSTANCES parameters.
    This feature eliminates database downtime when a configuration parameter change is made in the control file
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14214/chapter1.htm#sthref12
    Regards

  • Change the asset acq value (can be + or -)

    Hi All,
    My client wants to reverse deri. and change the asset acq value (can be + or -) and then recalculate deri.
    I got this but not sure, pls suggest
    I can use
    ABSO
    ABCO
    AR29N
    F-90
    Note: All assets are old we want impact in current year only as BS is closed for last year.
    Thanks,
    Vishal

    OK - let me summerise my activities
    1. ABSO - post with tran type 140 for all assets
    entry posted per assets
    Assets - 70 (DR)
    Assets ACQ clearinf account Balance sheet account 50(CR)
    2. Check in AW01N value update
    3. change derisiation method - system will post adjestments for current open year in next deri run AFAB
    I have no idea about AR29N why we use it. Can we use same T code insted of ABSO. AR29N we need to create new deri area which will keep it seprate.
    Thanks,
    Vishal

  • Setting the Asset Value date as the dep start date

    Hi,
    I need to pick depreciation from the asset value date and NOT the dep start date in the asset master record. Is this possible? IF it is, then what config changes needs to be done.
    Thanks

    Hi
    You can define that in the multi level method assigned to your depreciation key.
    Assign points if the information is  useful to you
    Regards
    Sanil Bhandari

  • I have a iMac 21,5" Intel mid 2011 and I need to know if is possible I change the original 500Gb HD for a 512Gb SSD? If yes, where I find a tutorial about this? Thanks a lot and best regards all.

    Hi people,
    I'm typing from Brasil, sorry my English.
    I have a iMac 21,5" Intel mid 2011 and I need to know if is possible I change the original 500Gb HD for a 512Gb SSD?
    I intend to keep the original DVD driver and install the SSD in the same HD place.
    If yes, where I find a tutorial about this?
    And I will like to know if the 512GB Solid-State Drive Kit for Mac Pro is compatible with iMac.
    http://store.apple.com/us/product/MC731ZM/A/512gb-solid-state-drive-kit-for-mac- pro?fnode=5f
    What brand and model of SSD do you recommend?
    Thanks a lot for now and best regards all.
    Carlos Sgrillo
    Porto Alegre, RS, Brasil

    Tukaine
    Sep 23, 2012 10:59 PM
    Since the late 2009 iMacs came out, replacing the hard drive has caused the internal Hard Drive Fan to start running at around 6000RPM.
    This is due to Apple replacing the external Hard Drive temperature sensor with a proprietary firmware and using the drives internal sensor.
    Replacement drives do not contain the firmware to deliver temperature data on the temperature sensor cable.
    When the iMac does not receive a good signal from the hard drive it puts the fan at full speed to protect the drive.
    If you replace your drive, your iMac will initially seem fine, but soon the fan will begin to speed up to full speed. Resetting the SMC (System Management Controller) will have a temporary effect, but again the fan will speed up.
    Fixes people have used in the past included:
    Using smcFanControl and the terminal to set a MAX speed for the fan and writing scripts to start this after every sleep/restart.
    Shorting the temperature sensor cable (Not a possibility on 2011 iMacs) this tricks the iMac into thinking the drives temperature is very low, hence slow fan speed.
    Both these fixes are less then perfect and leave the drive in a dangerous situation with no protection from overheating.
    Another option people try is other Fan Control software. These programs will not work for this particular issue as they often only control the base speed, and if they do control the fans actual speed they rely on the temperature reported by the sensor which is now incorrect.
    HDD Fan Control
    HDD Fan Control works to fix this issue by reading the drives internal temperature using the S.M.A.R.T protocol and set the fans actual speed to a value good to protect the drive.
    It runs at startup and continually to always control the fan correctly, prevent the loud fan noise and protect the drive from overheating
    Instead of HDDFan Control, get the free SSDFan Control
    http://exirion.net/ssdfanctrl/

  • Is it possible to change the number of rows to be displayed in adf query ?

    Hello,
    is it possible to change the number of rows that are displayed in an adf query similar to an adf form ?
    I need to display approx 5 rows per column instead of displaying all the fields in a single column ? Thanks.

    Thanks , how do you add in the code ,is it something like follows :
    <af:query id="qryId1" headerText="Search" disclosed="true"
                                value="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
                                model="#{bindings.ImplicitViewCriteriaQuery.queryModel}"
                                queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}"
                                queryOperationListener="#{bindings.ImplicitViewCriteriaQuery.processQueryOperation}">
                        <af:inputText value="#{bindings.PrtDesc.inputValue}" label="Desc"
                                      required="#{bindings.PrtDesc.hints.mandatory}"
                                      columns="#{bindings.PrtDesc.hints.displayWidth}"
                                      maximumLength="#{bindings.PrtDesc.hints.precision}"
                                      shortDesc="#{bindings.PrtDesc.hints.tooltip}" id="it3">
                          <f:validator binding="#{bindings.PrtDesc.validator}"/>
                        </af:inputText>
                      <af:column>
                       <af:outputtext/>
                        <af:outputtext/>
                     </af:column>
                      </af:query>

  • Is it possible to change the URL of the browser corresponding to changes in the timeline?

    Hello,
    I'm trying to create a whole website in Edge. Is it possible to change the browser URL for different sections of the animation. For example me.com/part1 leads to 2.0 seconds in the animation. And for example when you type me.com/part2 the browser would go to 4th second of the animation. And vice versa, when the animation reaches the 4th second the browser URL would change to me.com/part2. It would be really great if that were possible. Any ideas on how to accomplish it?
    Thanks!

    Hi there, Joel's example seems to be exactly what you're trying to do. All you need to do is replace his functions with your functions.
    There are two main parts to his example: 1) reacting to a URL change directly in the URL bar, 2) reacting to a button click, and setting the URL
    Regarding Item 1: this line (this adds a listener for when the URL hash is changed, and calls the 'sym.animate' function in his example). Note that he is linking the value after the # with the symbol names 'panel1', etc. This line enables the functionality for you to be able to directly change the URL to: testStep95.html#panel2, and the site will change pages.
    $(window).on("hashchange", function(){sym.animate(location.hash.replace("#",""), sym.onStage)});
    Regarding Item 2: he's setting the page title (based on the active panel symbol) and URL hash, in the  'sym.animate' function. He calls the 'sym.animate' function on click of btn1, btn2, btn3:
    document.title = panelIn;
    window.location.hash = panelIn;
    Props to Joel for his slick example!

  • Is it possible to change the length of a note in the score editor?

    I thought I saw somewhere that it was now possible to adjust the length of a note in the score editor graphically, i.e. by clicking on the note and somehow adjust its length directly to change it from 1/4 note to 1/8 (for example).
    I don't want to do this by going over to the "Length" dialog on the left because I hate having to switch from thinking in terms of music notation and then having to think (temporarily) in MIDI ticks per beat, etc.
    I must admit that I'm finding it extremely frustrating to simply enter music into Logic in a score....I thought this was supposed to be one of its strengths but it seems to be providing amazing capabilities at the expense of ease of use for beginners.

    dhjdhj wrote:
    I thought I saw somewhere that it was now possible to adjust the length of a note in the score editor graphically, i.e. by clicking on the note and somehow adjust its length directly to change it from 1/4 note to 1/8 (for example).
    greetings dh... are you into Key Commands? There are two which will help you do the above in a trice:
    • Nudge Region/Event Length Right by SMPTE Frame
    • Nudge Region/Event Length Left by SMPTE Frame
    I set mine to the simple letter o and n
    - I click on a note and press o repeatedly.. it grows and grows longer and longer
    – I click on a note and press n repeatedly.. it shrinks and shrinks shorter and shorter
    All by little increments
    If you keep a Piano Roll window open while you do this, you can see the length do this exactly
    man, it is VERY quick and handy for changing the length of notes
    It really helps to have a view of the midi Piano Roll to cross check the exact length and position of the notes.
    Check out the Key Commands:
    • Set Next Higher division
    • Set Next lower division
    These change the note value in the transport bar near the time signature. Your time signature may be 4/4 but the "grid" on which the notes are appear in the Piano Roll could be displayed in quarter, 8th or 16th notes. If you experiment with these commands, then you can match the note lengths easily to the grid display visually (with the above nudge length commands)
    Also - you may like to experiment with the following 3 KEY Key Commands:
    1 • Nudge Region/Event Position Right by Nudge Value
    2 • Nudge Region/Event Position Left by Nudge Value
    This will move your selected notes forward in time or back in time according to the
    value that is set in the Transport bar - say it is 16ths .. then each press of the key will move the notes a 16th
    or if the value is 8th notes, then each press of the key forward or backwards will move the selected notes forward or back by this amount
    ... amazingly useful when you are taking a whole phrase and pasting it somewhere else, or if say you started to write a phrase in the Score Editor and you started on the wrong beat.. then you just Nudge back and forth
    3 • Set Nudge Value to Division
    .. this will in a trice change change the Nudge Value to whatever Note division value is set in the Transport bar
    HTH and forgive me if I have given you too much information
    ..problem is I spent too much time in the Transport Bar in Los Angeles last year drinking with the iSchwartz and other Logic reprobrates... you should join us some time

Maybe you are looking for

  • S'one tell me how to call Oracle Stored Proc from Java

    Hi, I have a problem in calling the Stored proc using callable statement.It looks like we are doing the same thing or no.. Pl..let me know if you can correct me..Am enclosing the stored proc and java Code... CREATE OR REPLACE PROCEDURE StoreFTPAddres

  • SelectOneRadio on a View Table

    Hi. I need to make a formulary that has 4 different options per question. The questions are stored on a table in the DB, so, I created a view object based on that table, then on JDeveloper I created a read only table (af:table) and added an extra col

  • Single-code in save as CSV

    Hi Every One, I am scheduling the report in CSV formate. I am geting single code with each and every value if I am opening it with excel sheet. Can some one help me out how can I overcome from this single-code. I have Marcro to get rid of it. Can som

  • Has any one upgrade ZOOM forms to R12?

    Dear All, Currently we are upgrading from 11.5.10.2 to R12.1.3, As per R12 there are some forms are moved to OAF Pages, we have zoom functions created in 11i for those forms, Any idea on this ? Regards, Nagu

  • Java value types

    What basically is java value types.. where is this used,, if we say java value types what does it refer??? Thanks Arul