Copying Info objects  - When should we use Reference and Template

Hi,
Can anyone guide me when should we choose Reference or Template while copying the Keyfigures / Charatertistis.
Thanks,
David

Hi David,
   You can not see reference key figures. In updaterules.
More info, Please see the below post:
Re: InfoObject are not appearing in UpdateRules
Hope it Helps
Srini
Message was edited by: Srini

Similar Messages

  • When should i use .dmg and .cdr?

    I am backing my software programs and would like to know if I should use the .cdr or .dmg type?
    Does it matter? Are there differences in file sizes?

    Zach84 wrote:
    I agree, I have my TM running as well! I need to check out Super Duper.
    Look at Carbon Copy Cloner too.
    How does this differ from TM?
    They have nothing to do with each other. Time Machine is a backup program. SuperDuper/Carbon Copy Cloner are archiving programs. Confuse the two at your own peril.
    A backup program makes it easy to go back in time and restore one or more old versions of files. If you accidentally delete or overwrite data and don't notice it right away, it's no problem. You should have to think as little as possible for backups because any human intervention will make them less reliable.
    An archiving program makes a snapshot in time. It is a great way to restore to a specific point in time where you know your data was good. It is fast and easy to restore. Yes, it can be bootable. Archiving takes longer than backups, requires much more human intervention, and can require much more storage media.
    Disk Utility is also a perfectly good archiving program. It can make bootable copies just like SuperDuper/Carbon Copy Cloner. The 3rd party tools just make it quicker and easier to do. That is all and good, but they have tried to market themselves as back tools, which they aren't. Catastrophic failures are pretty rare. Do you really need to duplicate your disk on a regular basis for something that might happen every 4 years? If your primary hard disk is worn out from all the duplications, wouldn't your backup disk be in just as bad shape? Do you really need zero downtime? If you do, there are better solutions available.

  • When should I use HashTable and how to use it.

    I have created a set of diamond and retangular images with different colors and one color is assigned to one objective type.
    My application reads the XML file to get information about these objective type to populate it into the GUI with its
    associated attributes such as time, distance, longtitude latitude etc.. How do I store and retrieve these information.
    I think of using hashtable but not sure. Could you please help some idea .
    Thanks

    use ur code like this to maintain multivalues
    ArrayList al=new ArrayList();
    al.add(new Bean(value1,value2,value3));
    HashTable ht=new HashTable();
    ht.add(key,al);

  • When should you use dmg vs copy or duplicate

    When should you use dmg vs copy or duplicate

    Your answers are very helpful. They encourage me to ask the more complete and complicated question: we have a web site that was developed using iWeb several years ago. iWeb support was dropped by Apple some years ago and we moved the site to GoDaddy, but still using the iWeb software. Now we have only 1 computer which can continue to edit, add to and support our web site. Our aim is to copy as much of our material as we can so that when this computer finally dies we can salvage as much of our material as we can to resurrect our site once more. GoDaddy says they cannot help us.
    Here is my wife's web site:
    www.adajillschneider.com
    Thanks for all your time and help.
    Ron Schneider

  • Why or When should we use Execute Immediate in PLSQL??

    Hi Frnds,
    Long Ago i have received a interview question that ...
    How can U create a table in the PLSQL object(Function or procedure)?
    But the thing y should we use execute immediate?
    In which scenario we should we should use????????????
    Why or When should we use Execute Immediate in PLSQL????

    OR
    http://stackoverflow.com/questions/18375990/oracle-what-does-execute-immediate-means
    For DML you'd use it when running statements that you don't have available at compile time, e.g. if the column list is based on a selection from the user.
    In your case it's being used because DDL cannot be run as static SQL from within PL/SQL. Only certain query, DML and TCL commands are valid. Anything else has to be treated as dynamic.
    I'd say it's rare to need to use DDL from a PL/SQL block. TRUNCATE might be reasonable; if you find anything creating or dropping objects on the fly then that might be more of a concern as it can suggest a suboptimal data model.
    EXECUTE IMMEDIATE itself does not automatically commit; but if you execute DDL then that will behave the same as if you ran it outside PL/SQL, so it will commit in your case, yes.
    Incidentally, I'm not sure why your code is using an intermediate variable to hold the statement; that's useful if you want to display what it's going to run maybe, but you don't seem to be doing that. What you have could be done as:
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BD_BIDS_EXT_DET';
    Thank you

  • How to reduce the length of the info object that's being used?

    Hi All,
    I have created info objects and used them in a DSO. Now I want to reduce the length of the info objects but i'm unable to do it. When I reduced the length and tried activating the Info object, it's giving me error and the info object is not getting activated. Please guide me how I can reduce the length and activate the Info Object.
    Thanks
    Hima Bindu

    Reducing the length of an infoobject is not that easy
    Cleanest way -
    Drop all transaction data for that infoobject
    Drop all data in the DSO and cubes.
    Reduce the length and then activate and transport all the infoobject and there dependence objects.

  • When should a subclass have its own fields and when should it use its super

    When should a subclass have its own fields and when should it use its superclass' fields?
    Hi, thank you for reading this post!
    Let me use a specific example to ask my question.
    public class BankAccount {
         private double accountBalance;
         public double getBalance() {
              return this.accountBalance;
    public class SavingsAccount extends BankAccount {
         private double accountBalance;
         public double getBalance() {
              return this.accountBalance;
    }In the bank account example, both BankAccount and SavingsAccount will have a method getBalance(). Therefore, they
    both require a account balance field. My question is since getBalance() for both classes will perform the exact same
    operation, when should I omit declaring the getBalance() method and the accountBalance field in the subclass, and
    when should I include them?
    My own thought is when we never have to instantiate a superclass object (e.g. an abstract class), then we place
    common fields in the abstract superclass and have subclasses access these fields via protected getter/setters to
    access the superclass' fields. This is the principle of reuse.
    But when you do need to instantiate a superclass and the superclass does need to maintain its own fields, then
    I would need to duplicate the accountBalance field and getBalance() method in the subclass.
    Is my thinking correct or incorrect?
    Thank you in advance for your help!
    Eric
    Edited by: er**** on 22-Aug-2011 20:19

    er**** wrote:
    If SavingsAccount inherit BankAccount.getBalance()...getBalance() would return BankAccount's accountBalance. This is NOT the correct result we want.Actually, I think it's precisely what you want.
    We want getBalance() to return BankAccount's accountBalance when we use a BankAccount object, and SavingsAccount's accountBalance when we use a SavingsAccount object.I seriously doubt that. I think you're confusing a BankAccount with a Customer, who can have more than one account.
    In every system I've ever seen, a SavingsAccount IS-A BankAccount - that is to say, it's a genuine subtype. Now, it may well contain other fields ('interest'?) that a normal account wouldn't, but 'balance' ain't one of them.
    Winston

  • HT4571 When should I use data roaming?

    When should I use data roaming?

    When you are outside your carrier's network, you may be able to access the Internet using another wireless carrier, that's dataroaming.
    More info; http://support.apple.com/kb/HT1976

  • When should I use static variable and when should not? Java essential

    When should I use static variable and when should not? Java essential

    Static => same value for all instances of the class.
    Non-static => each instance can have its own value.
    Which you need in which circumstances is completely up to you.

  • J1INCHLN when should I use error control mode checkbox

    Hi Experts,
    I am using t-code J1INCHLN for creating remittance Challan.
    But in ECC6, EHP 5 there is new functionality added & no documentation available for same.
    There is one field with tick option called Error Control Mode.so when should i use this functionality.
    Can anyone help on this?
    Thanks and Regards,
    Sameer

    HI
    Please refer the note no :  1567443
    Manual Control in J1INCHLN to change currency key/doc type
    "After this, if you will run J1INCHLN, you will get a checkbox at the end
    with 'Error Control Mode' which will be selected by default. If you want
    to change document type, currency or rate during processing, you should
    uncheck it else it will take you to the last screen."
    I hope note is allready available in your system hence you are getting above cheeck box.
    If you want to change the document type and currency or rate during posting then you need use the check box.
    Regards
    Madhu M

  • What is the best way to preserve my battery? Should I always have it connected to the charger when using it or should I use it and then recharge it?

    What is the best way to preserve my MacBook Pro battery? Should I always have it connected to the charger when using it, or should I use it and then recharge it?

    Don't worry about it:
    http://macmost.com/dont-stress-about-batteries.html
    If you want to condition it once a month, go ahead:
    http://www.apple.com/batteries/notebooks.html

  • When Should I use the Inner Classes ?

    When Should I use the Inner Classes ?
    What is the advantage(s) and the disadvantage(s) ?

    When I use innerclasses?
    1) Allmost allways when I need simple owner child behavior.
    2) When I need a behaviour, that is quite small, and used only once, I make it anonymous inner class. For example specialised streams and threads.
    3) Enumerations

  • What are the mapfiles for and when should I use them?

    Hi,
    what are the map files for and why/when should I use them?
    /usr/lib/ld/map.noexstk
    usr/lib/ld/map.noexbss
    /usr/lib/ld/map.noexdata
    /usr/lib/ld/map.pagealign

    Hi, I'm sure you've read the comments, but for the benefit of those who haven't: /usr/lib/ld/map.noexstk # Linker mapfile to create a non-executable stack definition within an # executable. /usr/lib/ld/map.noexbss # Link-editor mapfile to create a non-executable bss segment definition # within an executable. /usr/lib/ld/map.noexdata # Link-editor mapfile to create a non-executable data segment definition # within an executable. These stop the various segments from being executable. Which could reduce the risk surface for exploiting security holes in an application. /usr/lib/ld/map.pagealign # Linker mapfile to create page-aligned data within an executable. Aligning the start of the data segment can reduce the number of TLB entries needed to map the data. So the smallest TLB page size is 8KB, then we have 64KB, then 4MB etc. If the data starts on a 4MB boundary then it can be mapped with 4MB pages, if not then it has to be mapped with 8KB pages until a 64KB boundary, then 64KB pages until we get to a 4MB boundary. You sometimes get a bit of performance from this, but you may also get performance stability from it. If the mapping is random sometimes it works well, sometimes it works less well. Regards, Darryl.

  • When should I use the power adapter?

    I just installed a wireless router. Should I use the power adapter when I'm not going to use the Macbook for several hours? Does the Macbook drain the battery when it is shut down or sleeping?

    When should I use the power adapter?
    Whenever you are near a power outlet. Not 100% of the time, of course (you have to flex the battery sometimes) but as often as possible.
    Should I use the power adapter when I'm not going to use the Macbook for several hours?
    If you are near an outlet, yes.
    Does the Macbook drain the battery when it is shut down or sleeping?
    When sleeping, it drains a negligible amount.
    Further reading:
    http://support.apple.com/kb/HT1446
    http://support.apple.com/kb/HT1490

  • When should I use validate(), reValidate, and inValidate()?

    When should I use validate(), reValidate, and inValidate()? Also, I would like some detailed differences on them.
    Virum

    Anyone?

Maybe you are looking for

  • Items of alias - On Open?

    It's pretty blatant below what I'd like to do. I wrote two different examples, where the 2nd one accomplishes the task. I just don't know how to get it to do the same using on open?? I'd like to drop a folder filled with contents onto the droplet. Th

  • Can't open iPhoto 9.4.3.

    When I try and launch iPhoto 9.4.3 I get an a    advice. The software is up to date and I dont want to Upgrade and possibley loose photos. I have copied the iPhoto library onto EHD, opened it up on another Mac and problem is still there. I can open i

  • I search for the SAP transaction for customer part-payment

    Hi, If a customer pays only a part of the invoice is there a special SAP transaction to enter this payment or must I use F-06 and then proceed in a special manner? Regards, Anita help.sap.com

  • Macbook Pro Early 2011 13" Comptability

    I'd like some brief clarification on compatibility with RAM and SSD's on my Macbook Pro Entry-class 2.3Ghz Intel i5 Sandy Bridge (1199) with 2 x 2GB 1333mhz ram 1600Mhz ram will work correct? It won't run at 1600 but will still function at 1333 is my

  • URL to send remote control commands to a DMP

    Hello. Could anyone tell me what commands you should send over port 7777 to a stand alone DMP to emulate someone pressing buttons on a remote control in front of the DMP?