Posting Different APC without changing the Book dep area APC

Hi All,
I am trying to post in ABSO different APC amount for different depreciation areas. I am able to post either increase or decrese of amount in APC for all the areas.
The screen in ABSO requires an amount to be posted, which can be changed for different depreciation areas.
My requirement is not to change the book dep area posting, i.e. "0" is to be posted for Book deprecaition area, and either positive or negative values for remaining areas depending upon the transaction type.
Can anyone help with this.
Thanks in advance
Krishna

Hi,
    In SPRO
    AA>Transactions> Aquisitions> Define Transaction types......
    Copy the TType that you would usually use to a new one.
    Then use "Limit Transaction Types to Dep.Areas" to restrict it to the Areas
    that you want to post to.
    Use this Ttype in ABSO then area 01 will not be posted to.
Kind regards

Similar Messages

  • How can I change the password in the iBook donated to our nonprofit.  No password was given with the iBook?  We need to put in printer and other software.  Help, we can use the laptop without changing the password.

      How can we change the password in the iBook donated to our nonprofit?  No password was given with the iBook and every time we try to install items, the password window pops up.  We need to put in printer and other software.  Help! We can use the laptop without changing the password.

    If you did not get an OS X install-restore DVD with the computer you may need
    to buy one from somewhere, and you may be lucky to get a retail OS X 10.5.x
    version. The original grey-label install set of software and OS X it shipped with
    likely would be an older system than Leopard 10.5. Last versions of G4 Mac, &
    G5, shipped with a Tiger 10.4 system; so did early Intel-based Mac. Grey discs
    which accompanied other computer build models generally do not interchange.
    The last OS X version a PowerPC architecture can use, if supported, is 10.5.8.
    A PPC processor at 867MHz & faster should be able to run OS X 10.5 Leopard.
    {With the correct disc installer, you can use it to change a password and other
    things including re-install, and perform disk utility functions, etc.}
    There is a chance you may be able to get a white-label Replacement 10.4 DVD
    or Replacement 10.5 DVD from AppleCare or the online Apple Store (800myapple)
    from a Mac OS X system specialist; these have been available yet hard to get
    as not all persons involved with them seem to know if they still exist until someone
    is asking. These aren't retail stock, are special discs for computers who could use
    a system later than original old discs; these are complete install discs not for one
    specific series of Mac. Generally they'd work in supported PowerPC G4/G5; but
    do not replace specialized original install DVD, such as an early Intel mac requires.
    You'd need to have a serial number of the computer, and a method of payment
    when seeking some replacement system media from Applecare or Apple sales
    and these discs are not available in a retail store. The original Retail discs are
    labeled differently and shipped in a retail box with a big X on the front. Other
    sources for retail 10.4 Tiger or 10.5 Leopard may be online via amazon sellers
    or computer resellers who handle repaired Macs. Avoid mystery grey label ones
    that were intended to be sold and kept with their original computer kits.
    Good luck!

  • How can i make a photo that is 10 x 6.6 to 10 x 8 without changing the image in Photoshop CS3?

    How can I make a photo that is 10 x 6.6 to 10 x 8 without changing the image in Photoshop CS3?

    I could be snarky and say change the image in a different version of Photoshop, but NO...
    The only way to make a photo that is one size into another size is to change the image.  You have a few choices about how to change it:
    One way is to simply expand the height from 6.6 to 8 inches using Image>Canvas Size, using the default setting of having the image centered and leaving the background either black or white, your preference.  This will add background color to the top and bottom of your image.  This won't change the image itself, but it will change its surroundings.
    Another way is to resize the image using Image>Image Size, entering the new dimensions after turning off the aspect ratio lock (resample on).  This will stretch the image vertically, however, so it's probably not a good option.
    Finally, you could resize the image using Image>Image Size, leaving the aspect ratio lock on and resample on, and increase the height from 6.6 to 8.  This will have the secondary effect of enlarging the width from 10" to a greater width.  Then you crop the resulting image back down to 10" width, which involves losing some edge areas of the image.

  • Can I update my phone without changing the interface/design?

    I haven't updated my iPhone 4S in ages - I think I may still be using IOS 4 or IOS 5. I love the old interface, and I really, really don't want to have to change to the new interface (I've seen it and it looks completely different). I'm very fond of how safari works, how pass code locking works, how photo albums are designed, the proccess of clearing apps - everything. The problem is that there are a few apps I'd like to download that require IOS 6 or above. My question now is either,
    1) is it possible to update your phone without changing the design/interface
    2) is it possible to download IOS 6 or 7 apps on an earlier version phone without updating the entire phone
    Thanks so much

    1. No.
    2. No.

  • Sorting a DataGrid without changing the content

    I have a datagrid which is shown in a chart. I'd like to have it sorted upside down the dataField "x" without changing the chart, which is bound to the same arrayCollection. How can I do this without changing the chart?
    <mx:DataGrid sortableColumns="false"  width="480" height="156" dataProvider="{myArrayCollection}" editable="false" y="581" enabled="true" x="10">
              <mx:columns>
                    <mx:DataGridColumn id="col1" dataField="x" headerText="Trade #" />
                    <mx:DataGridColumn id="col2" dataField="p" headerText="Price" />
                    <mx:DataGridColumn id="col3" dataField="n" headerText="Users" />
                </mx:columns>
    </mx:DataGrid>
    thanks
    nicolas

    ArrayCollection is a view of a source Array.  If you create a second view, it can have a different sort order because sort and filters are properties of a view.
    Just assigning AC2 = AC1 simply has AC2 referencing the same view so sorting will have an effect on all consumers of that view.  However, if you do:
    AC2 = new ArrayCollection();
    AC2.list = AC1.list
    then you can sort AC2 and AC1 will not reflect the sort and vice-versa.  But, if you add an item to AC2 or AC1 it will be reflected in the other AC.  If you modify a property of an item in one AC, the other AC will see it.
    If you do:
    AC2 = new ArrayCollection()
    AC2.source = AC1.source
    You can also sort AC2 and AC1 will not reflect the sort and vice-versa.  But, if you add an item to AC2 or AC1, the other will not reflect that change unless you force an update on the other.  Same is true if you modify a property on an item in the AC.  The other AC won't know about it until you force an update.
    If you want to modify properties of an item in one AC and not every have it reflected in the other AC, then you should do a copy as the previous responder suggested.  I believe you want to use the pattern that assings AC2.list = AC1.list.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • My computer crashed. So does this mean I can not add any more music to my ipod from a different computer without all the songs being erased? Can I sync my ipod to a new computer if I allow all the songs to be erased?

    My computer crashed. So does this mean I can not add any more music to my ipod from a different computer without all the songs being erased? The ipod works fine and now i got a new computer. So it seems like my only options are leaving my ipod in a state where i cant add anymore songs or erasing all my songs and trying to use my ipod from my new computer. Can someone please inform me on how to have my ipod work from a different computer, even if i have to erase my songs. Thanks.

    Yes, if you choose the Erase and Sync option (or restore your iPod) you will be allowed to sync your iPod with the new computer.
    If you would like to save the content that's currently on your iPod, see this older thread from another forum member Zevoneer discussing the different ways to copy the content on an iPod back to your PC.
    https://discussions.apple.com/thread/2417169?start=0&tstart=0
    B-rock

  • How can I change the year of an album in itunes11 without changing the years of all titles?

    How can I change the year of an album in itunes11 without changing the years of all titles. For example: the reissues of an 1982 album has a 1995 bonus track, but I want it to be sorted as an '82 album? In earlier versions, when itunes sorted my album "by year", it took the year of the first title as the album's year (which makes a lot of sense). In itunes 11, however, the /highest/ year of any title in an album is taken to be the album's year. This upsets my entire catalogue. Can this be changed, will this be changed?

    Highlight all of the songs,File>Get Info, change the genre

  • Change the background color of a particular word without changing the background color of the rest of the text in a textbox

    Hello,
    I'm designing my own website and want to know how to change the background color of a particular word without changing the background color of the rest of the text in a textbox. If i can't do this, how can I create a Table, similar to Excel with iWeb?
    Thank you very much!
    Roger.

    If i can't do this, how can I create a Table, similar to Excel with iWeb?
    Read this :
         Create and add a TABLE in iWeb »
         More about a TABLE in iWeb »
         Sample 1
         Sample 2

  • Is it possible to copy and paste a formula without changing the cell references?

    I am trying to paste a formula to a cell adjacent to where it currently is but when I do, the cell references in it change. I am trying to get exactly the same formula in the cell (without re-typing it).

    dedwards96 wrote:
    Just another quick question, is it possible to make a large number of cell references 'absolute'?
    Individual cell references in formulas may have four distinct states: relative, absolute column, absolute row, or absolute column and row. These are set using the popup menu on the reference itself. Click on the reference in the formula and choose one of the four states from the popup menu.
    Once set, you can fill the formula into the rest of a column or row using the Fill Handle (small circle at the lower right of a selected cell). Cell references in the new copies of the formula will remain absolute or adjst to their new position dependent on the setting for each reference. You can also copy and paste the cell (single click to select it, command-C to copy) with the same results.
    You can also copy/paste without changing the formula's cell references if you select the formula (Drag across the formula in the entry bar, copy, press tab to deselect and reconfirm the formula in the original cell) rather than the cell. Pasted into a new cell, the formula will appear as if you typed it in exactly as it was in the original cell—neither absolute references nor relative references will have changed.
    Regards,
    Barry

  • How to name individual clips without changing the name of the original file...?

    Hi,
    Theres likely to be a really simple solution to this, but i can't find it! I've done my in & out points, i've created a new clip and i'd like to give it a unique name. When i rename the clip the original file name also changes. How can i rename the new clip without changing the original file name?
    Please help,
    Thanks
    Ed

    Either make the clip a subclip or convert it to a new master clip. Both can be done in the Modify menu.

  • How can I rearrange the pages in a PDF without changing the assigned paged numbers.

    How can I rearrange the pages in a PDF without changing the assigned paged numbers? These correspond to the original document folio numbers.

    In theory it would be possible to 'record and play back' the page numbers using a folder-level script, but it's far from trivial. You would have to use the doc.movePage() function - presumably driven by a dialog box - to do the page shuffling so there was a way to track what was being done, then swap the page 'labels' of the two affected pages. That's where it gets messy.
    We have functions in the JSAPI which can read and write the page label, but they don't do things in a logical way. The 'getPageLabel()' function simply returns a string, but the 'setPageLabel()' method expects to be told the numbering scheme, prefix, etc. You'd have to parse the string and work out what scheme it was implementing.

  • Adding a preset to an already edited photo without changing the edit

    Can someone please help me with adding a preset to already edited photos without changing the edit.  Basically I will edit an entire wedding and then I go back and pick out favorites for my bride and like to add the same artistic edit over them.  Since they are already all edited to my clean beautiful photo, (color balance, exsposure, editing for maybe none ideal lighting during ceremony) I would think there would be an easy way to add a preset without having it change all my adjustments I made so to speed up my process.  I know If I bring my photos to photoshop and bring them back into lightroom it pretty much resets it to basic, but I am sure there is an easier way to do this rather then having to open photoshop.  Thanks in advanced!

    bedophotonfilms wrote:
    Can someone please help me with adding a preset to already edited photos without changing the edit.  Basically I will edit an entire wedding and then I go back and pick out favorites for my bride and like to add the same artistic edit over them.  Since they are already all edited to my clean beautiful photo, (color balance, exsposure, editing for maybe none ideal lighting during ceremony) I would think there would be an easy way to add a preset without having it change all my adjustments I made so to speed up my process.  I know If I bring my photos to photoshop and bring them back into lightroom it pretty much resets it to basic, but I am sure there is an easier way to do this rather then having to open photoshop.  Thanks in advanced!
    Ensure that the "artistic edit" preset only includes the adjustments that are necessary. If, for instance, it
    should add a vignette effect, then make sure the preset doesn't include other adjustments like exposure, because that will make the preset override the carefully-chosen exposure in the clean beautiful version.

  • How to transfer photo's from LR to Blurb without using the Book option in LR?

    Without using the Book option in LR can one transfer photo's to Blurb?

    There is no way like with Aperture where you can drag your photo from Aperture to Blurb?

  • Create an mp4 from mov without changing the dimensions

    I am working on a project in InDesign that needs to output to DPS.
    I take screen capture movies which are saved in the default mov format. These movies are 700 px x 400 px. That can't change.
    I need to convert the mov to an mp4 to add to ID for DPS.
    I open Adobe Media Encoder but I am confused as to how to set the output controls.
    I don't want to change the dimensions.
    What setting will convert the mov to mp4 without changing the dimensions?

    Does this help?

  • When I insert a shape, how do I change the color without changing the texture?

    When I insert a shape, how do I change the color without changing the texture?

    Hi,
    you are working with a percentage width of your tables, for example:
    table width="123%
    td width="75%"
    td width="25%"
    So it is simply a arithmetic problem to get the proportional wide (means the ratio of % to cm) of your images, so that they do not break the frame. Certainly you could use (translated from German DW) "properties" and change the sizes there:
    Hans-G.

Maybe you are looking for

  • Ignoring current month line chart

    Hie Guys, I have a line chart with "Month-Year" as the dimension object and 3 measure objects (variables). I created variables for the measure objects so that only non-zero values are displayed. i.e. Variable 1 =  Measure 1 Where (Measure 1 <>0)  and

  • Xdk PL/SQL

    Does anyone know oof any tutorials or info on using the XDK for PL/SQL package. I need to send data from an oracle program to another program as xml data

  • Extensions are not installing: Error code 1

    I have just installed Adobe Exchange panel, but can not install any extension. I get this error on Photoshop: "Installation failed with error code: 1. The zxp installer has been copied to your documents folder". If I try to install from that folder o

  • Error while connecting forms.

    Hi People, I am using oracle 9i,forms 6i.While connecting to the database in forms i got an error as follows, ORA-12545:Connect failed because host target or object does not exist. What can I do?.please suggest me.

  • Issue with Formatted Search and Sales BOM

    Good afternoon, One of our customers uses a Formatted Search on the Sales Order row to lookup the Project Code stored against the Item. This works very well, except for when a Sales BOM is selected.  I assume the FS lookup is working correctly, but t