What's the need for capitalization date and 1st acq. posting date?

hi guys,
i was wondering what the system would do with capitalization date and first acquisition posting date ??
and what will be the problem if i entered an asset value date (in the acquisition transaction) that's earlier than the capitalization date entered in the asset master record ?!

In practice all assets are not put to use right from the date of purchase.Hence the concept of different dates arises.  One being the acquisition date and the other Capitalization date.
I would buy an asset today but start using it from a later date.  Depreciation has to be calculated from the date of capitalization and not acquisition. But still for record purpose date of purchase would be important.  Hence both the dates are maintained.
Hope this has clarified your doubts.
Thanks
GU

Similar Messages

  • What are the settings for apn data and mms for iphone 4 on straight talk?

    what are the settings for cellular data network APN DATA and MMS for Straighttalk sims on IPhone 4?I cant send or recieve pictures.My service keeps losin signal constantly saying no service then 1 bar,2 bars,3 bars...then back down to no service.It drops calls.Iv been trying to find out the answer to this problem for 2 weeks!I have no Profile selection in my settings either to do wat its showing online on one website.and have entered numerous diffrent APNs and none have worked!!!!PLEASE HELP!!!

    They're asking a question about carrier settings for their iPhone. I think that has everything to do with Apple.
    Maybe they did already ask Straight Talk. I've called Straight Talk before... they're not too helpful.
    You know, this forum would be much friendlier if people in this forum would quit squabbling, & posting comedic replies, not too mention name calling (like I did), when people are just needing some help.
    It's also frustrating that people stick up for the guy who doesn't help, but rather takes the time to post some smart alec reply. Granted, I shouldn't have name-called... some people just frustrate me when they act like that.
    Admittedly, there ARE some grey areas when it comes to carrier questions... but let the moderators do their job when someone is asking innappropriate stuff. And if the mods aren't chiming in, then that's a good indication that what the thread is about IS in fact Apple related.

  • What is the need for setting property data inside the JMSMesage

    Hi
    Could anybody please let me know
    *What is the need for setting property data inside the JMSMesage??
    For example i have a seen a similar example as shown ??
    I have seen a
    Message.setStringProperty("Sport","Basketball");
    and also please tell me how can the MDB recievies this property data ??
    Thanks in advance .

    raviprivate wrote:
    Could anybody please let me know
    *What is the need for setting property data inside the JMSMesage??
    For example i have a seen a similar example as shown ??
    I have seen a
    Message.setStringProperty("Sport","Basketball"); Look at the detail JMS documentation on [Message Properties|http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/jms/Message.html] .
    >
    and also please tell me how can the MDB recievies this property data ?? MDB onMessage method argument is the Message object and if you look at the documentation, Message interface has getter methods to retrieve the properties.

  • What is the need for calling default constructor by JVM?

    What is the need for calling default constructor by JVM? why the JVM should intiializes default values to the data
    fields if the constructor is not there in our class?

    mahar wrote:
    What is the need for calling default constructor by JVM? Huh? The JVM does not need to call the default constructor. It needs to call a constructor.
    You decide which one by the way you use "new".
    why the JVM should initialize default values to the data fieldsHuh?
    ... if the constructor is not there in our class?Huh? The default constructor is always there. It may be private but it is still there.

  • I would like to make an upgrade from creative suite cs5 to cs6 what is the price for student edition and what i have to do, i do not found in your website price

    i would like to make an upgrade from creative suite cs5 to cs6 what is the price for student edition and what i have to do, i do not found in your website price

    There are no upgrades for student editions. You simply buy a fresh license at the discounted price.
    Mylenium

  • HT1222 Since I'm an American, what's the need for me to update?

    Since I'm an American, what's the need for me to update?
    How does the new update apply to me?

    What update are you referring to? If you mean iOS 6.1.3, there are a number of security updates that apply to all iOS devices:
    http://support.apple.com/kb/HT5704
    If that's not what you mean, please explain further.
    Regards.

  • What is the process for rollout projects and upgradation projects

    Hi All,
    Hope you all are doing well.
    I am a new bee in oracle apps. Just would like to understand  what is the process for rollout projects and upgradation projects and difference between them.
    Please help me. Thanks in advance.
    Regards,
    MM

    Don't know which phone do you use but if you configure your Exchange ActiSync Profile on your Phone there is an option for the CONTACTS. Basically Exchange account will pull the contacts from your profile.. I did test it on my iPhone 5 and works for mee
    Where Technology Meets Talent

  • What is the use for lock object and how to use the lock objects

    Hi Guru's,
    I am new to ABAP .Can you please clarify the that what is the use of lock object and how to use the loct object .what is use of the Deque & Enque  function modules .

    hi ,
    below are some minfo about lock objects :
      Lock Objects
    These types of objects are used for locking the access to database records in table. This mechanism is used to enforce data integrity that is two users cannot update the same data at the same time. With lock objects you can lock table-field or whole table.
    In a system where many users can access the same data, it becomes necessary to control the access to the data. In R/3 system this access control is built-in on database tables. Developers can also lock objects over table records.
    To lock an object you need to call standard functions, which are automatically generated while defining the lock object in ABAP/4 dictionary. This locking system is independent of the locking mechanism used by the R/3 system. This mechanism also defines LUW i.e. Logical Unit of Work. Whenever an object is locked, either by in built locking mechanism or by function modules, it creates corresponding entry in global system table i.e. table is locked. The system automatically releases the lock at the end of transaction. The LUW starts when a lock entry is created in the system table and ends when the lock is released.
    Creating Lock Objects
    Lock object is an aggregated dictionary object and can be defined by using the following steps:
    o From initial data dictionary screen, enter the name for the object, Click Lock object radiobutton and then click on Create. The system displays a dialog box for Maintain Lock Objects screen
    o Enter short text as usual and the name for primary table.
    -Save
    -Select Tables option
    From this screen you can:
    Select secondary tables, if any, linked by foreign key relationship.
    Fields for the lock objects. This option allows you to select fields for objects (R/3 system allows locking up to record level). Lock object argument are not selected by user but are imposed by the system and includes all the primary keys for the table.
    1) Exclusive lock: The locked data can only be displayed or edited by a single user. A request for another exclusive lock or for a shared lock is rejected.
    2) Shared lock: More than one user can access the locked data at the same time in display mode. A request for another shared lock is accepted, even if it comes from another user. An exclusive lock is rejected.
    3) Exclusive but not cumulative: Exclusive locks can be requested several times from the same transaction and are processed successively. In contrast, exclusive but not cumulative locks can be called only once from the same transaction. All other lock requests are rejected.
    Also, last but not the least, locking the object is logical (locking with any enqueue ) .so, you have to use the lock object while trying to access from second program .
    reward if helpful ,
    Regards,
    Ranjita

  • What Is The Criteria For Reloading objects and JSP Pages?

    I have a JSP application that consists of many HTML, JSP & JavaBean files.
              Since I am in the middle of the development phase I am making lots of
              modifications to the code. I've noticed that much of the time if I recompile
              a JavaBean into a class file WebLogic does not reload the updated class.
              In my weblogic.properties file my servlet reload property is:
              C:/weblogic/myserver/servletclasses
              All my JavaBean class files reside in a sub-directory of that directory. For
              example:
              C:/weblogic/myserver/servletclasses/org/hhmi/award/JavaBean1.class
              How come these beans don't get reloaded each time? Is there a different
              WebLogic property I should use? What is the criteria for re-loading a class
              file anyway?
              Thanks in advance,
              Matt
              

    BTW, I tried this in 6.1 and it does reload modified classes in
              WEB-INF/classes, but, sure enough, it results in ClassCastException's etc, for
              example:
              <%
              Foo foo = (Foo)session.getAttribute("foo");
              session.setAttibute("foo", new Foo());
              %>
              will result in ClassCastException if Foo was modified.
              So, if 6.1 tracks class modifications, then why doen't it trigger application
              redeployment? It can definitely be more convinient than touching 'REDEPLOY'
              file.
              Mike Reiche <[email protected]> wrote:
              > Make sure that your servletclasses and your jsp workingDir are NOT in your weblogic.class.path.
              > Pay attention to what Dimitri said.
              > Set your reloadCheckSecs=0 (check every time).
              > Set your pageCheckSeconds=0
              > Mike
              > "Matt Connors" <[email protected]> wrote:
              >>I have a JSP application that consists of many HTML, JSP & JavaBean files.
              >>Since I am in the middle of the development phase I am making lots of
              >>modifications to the code. I've noticed that much of the time if I recompile
              >>a JavaBean into a class file WebLogic does not reload the updated class.
              >>
              >>In my weblogic.properties file my servlet reload property is:
              >>
              >> C:/weblogic/myserver/servletclasses
              >>
              >>All my JavaBean class files reside in a sub-directory of that directory.
              >>For
              >>example:
              >> C:/weblogic/myserver/servletclasses/org/hhmi/award/JavaBean1.class
              >>
              >>How come these beans don't get reloaded each time? Is there a different
              >>WebLogic property I should use? What is the criteria for re-loading a
              >>class
              >>file anyway?
              >>
              >>Thanks in advance,
              >>Matt
              >>
              >>
              Dimitri
              

  • What is the Need for communication between Flex ActionScript to Javascript

    Hi ,
    Flex has made it communication possible from FLEX Mx:script to Java Script .
    Can anybody could please tell me what is the need or any scenario  for communication Flex with Javascript
    Thanks in advance .

    1- Printing in Flex is terrible (although for simpler requirements it can do fine), true, but it's not incredibly better elsewhere in the browser unless I'm missing the point.  This can be gotten around for many by streaming PDFs or Excel spreadsheets from a server, though.
    2- If it has to be web, I guess you're stuck.  If it can be an installed app (AIR) I'd prefer to hook into Java.  Like I said, there may be some limited specific uses, but good reasons to base the majority of your app on JS hacks are hard to come by.

  • Need to send data across network, what is the dataStructure for my data?

    using JXTA, i want to send file or messages among the peers.
    the data should contain the ACK

    Hello Dear Programmer Look please I need to know what is the data transfer Structure is to say make sent a sample Data structure
    to cross throughout Network
    to be compile in Java
    My Regard
    Alfonso Franco
    [email protected]

  • What is the tcode for bdc recording and how to do in hr-abap for pa and om

    hi,
         I need to do the bdc recording for pa and om. So, can any of you tell me how to do and what are the tcodes we have to use.
    thanks & regards,
        Sekhar.

    Hi ,
    Here is the link from you will get all the transaction code
    http://www.sap-basis-abap.com/saphr004.htm
    As far PA specfic some tcodes are given below
    PA20  Display HR Master Data
    PA30  Maintain HR Master Data
    PA40  Personnel Actions
    PA41  Correct Actions
    PA42  Fast Entry for Actions
    PA46  Import from Resumix
    PA47  Export to Resumix
    PA48  Hiring from non-SAP system
    PA51  Display Time Data
    PA53  Display Time Data
    PA61  Maintain Time Data
    PA62  List Entry of Additional Data
    PA63  Maintain Time Data
    PA64  Calendar Entry
    PA70  Fast Entry
    PA71  Fast Entry of Time Data
    PA88  Benefits
    For OM specific
    PP01  Maintain Plan Data (menu-guided)

  • What are the uses for Macbook pro and Macbook air?

    Hi! I am deciding between MBA and MBP and need to know what the different uses for each one was. Like what would you use the MBA for and what would you use the MBP for?? All opinions welcome!!

    They're actually pretty comparible in what they can do if you're talking about the base model of both (say 13") with 4GB RAM. At that level, the Pro has the advantage if you're going to watch or burn DVD's or CD's, as the Air has no optical drive. But otherwise, they're pretty much the same--full-sized, backlit keyboard, camera, beautiful screen, etc. If you're going for more than a basic 13" Pro, then things start to change. For example, you can get up to 8GB RAM on the Pro, and a huge hard drive, you can also get a 15" or 17" size. You will be paying a lot for these, but, obviously, if you're going to be working on, say, making videos (which you may then want burn onto disk) the Pro is very much what you'll want.
    However, if you don't need or want any of that--if, for example, you plan to do the usual programs (word processing, games, web surfing, music, etc.), then you really won't see much difference between the two. At 4GB RAM and a 13" screen, the big difference is going to be thickness and weight, not power. And in this the Air will have the advantage--it's really amazingly slim, light and with a SSD, faster (you pay extra--a lot extra--to get SSD on the Pro).
    Just to make the point, I switched from a 13" Pro to an 11" Air. My hard drive size is half what it was with a Pro, but I was barely taking up half of that amount on the Pro, and so have plenty of room on my 128GB Air (you can get 256GB for the 11" if you order it online). Absolutely everything my Pro did, my Air does (sans optical drive), only faster and lighter and more compact--meaning it takes up less table space, slips in and out of my bag faster, balances on my lap easier, etc. But there was no interruption of service--I switched pretyt seamlessly from 13" Pro to 11" Air.
    The Pro offers you more options for power, screen size, HD size and optical drive. But it's really pretty surprising how few of us need that much power, that much room, or the optical drive. It's very freeing to realize that less can be more than enough.

  • What are the settings for iPhone, iPad and iMac to sync ical and contacts?

    How can I get all three items to sync? What are the settings on the iMac with Lion on board? I put all my stuff on iphone but iMac & iPad do not have the items synced even though I have everything on icloud?

    They're asking a question about carrier settings for their iPhone. I think that has everything to do with Apple.
    Maybe they did already ask Straight Talk. I've called Straight Talk before... they're not too helpful.
    You know, this forum would be much friendlier if people in this forum would quit squabbling, & posting comedic replies, not too mention name calling (like I did), when people are just needing some help.
    It's also frustrating that people stick up for the guy who doesn't help, but rather takes the time to post some smart alec reply. Granted, I shouldn't have name-called... some people just frustrate me when they act like that.
    Admittedly, there ARE some grey areas when it comes to carrier questions... but let the moderators do their job when someone is asking innappropriate stuff. And if the mods aren't chiming in, then that's a good indication that what the thread is about IS in fact Apple related.

  • What is the need for movement type 107

    Hi Gurus,
    In ECC 6.0 i have seen that SAP has introduced 107 for GR Block stock (valuated). Can anyone tell me the business sense for doing so.
    What was the exact need for introducing 107
    Rgds
    Venkat

    Hi,
    GR Blocked valuatedstock menas , when you do the GR with movement type 107 it  will posted under Plant and the value of the goods will be considerd/increased for that Plant. But the stock will be under Blocked Stock..It will not be used all other purpose till you do the transfer psting from Blocked to unresticted.
    Thanks,
    Kumar Arcot

Maybe you are looking for

  • White screen on restart

    I have a 27" iMac 3.5 GHz Core i7 - 8 GB Ram 1600 MHz DDR3 with a 3 TB Fusion drive.  I downloaded Yosemite with some difficulty this evening.  I ran the install and when it wanted to restart a white screen came up for over 10 minutes.  Should it tak

  • NPiExec Error when trying to use LanDesk remote utility.

    Im getting an"NPiExec Error" occurs when I run LanDesk from firefox window in ver 6.5.8 (Landesk is a remote control utility). At first it prompted to install 3 plugins, which I did (ENURCSetup.exe, ENUssh.exe and Upsftp.exe). Now it only returns wit

  • Abrupt shutdown of master node causes problem

    A service in usmbcom1 (LMID ) makes tpacall to a service which is present in both usmbapp1 ( master node LMID ) and usmbapp2 ( slave node LMID ) ( HERE usmbcom1 , usmbapp1 and usmbapp2 are LMIDs whereas the corresponding physical m/cs unames are usmb

  • Computer can't see blank cd

    Today I tried to burn a photo, (Quick Time 7.0.4.)using for the first time a new cd drive installed by Apple. The cd icon doesn't appear on the desktop. I can't eject it either, unless I restart. Other cd's are functional, for playing music, movies o

  • My iphone is recovery mode

    My iphone is stuck with itunes icon on it, and in recovery mode; I don't want to lose my data by restoring back to factory settings. What do I do?