Difference between copy value and use one as many

hi
what  is the difference between copy value and use one as many?
thanks

[http://help.sap.com/saphelp_nw2004s/helpdata/en/26/d22366565be0449d7b3cc26b1bab10/content.htm]
[http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/df564b6aa24fc9ab0d685460747de5/content.htm]
Much better understanding of UseOneAsMany: [http://help.sap.com/saphelp_nw2004s/helpdata/en/38/85b142fa26c811e10000000a1550b0/content.htm]
Edited by: Praveen Gujjeti on Feb 18, 2010 11:42 AM

Similar Messages

  • Difference between copying cube content using datamarts and direct copying

    Hi Experts,
    I have been going through the SDN for the last 6 months  and this is my first post
    I know two methods of copying the cube content from one cube to another.
    One is data mart method in which we create a datasource based on the cube and
    then create a transformation between the new cube and datasource.
    This method is used if our source cube is in same server or in diff server.
    Other method is directly copying the cube content from source to destination
    by creating a transformation between two cubes .
    this is used if source cube anddestc u be are in same server.
    My  doubt is if both the cubes are in same server then what is diff between first method
    and second method,
    Please clarify me

    Hi,
    Now Iam closing this thread with a conclusion .
    The question is what is the difference between copying cube
    content using datamarts and direct copying
    Also what are there any other methods to copy cube contents
    from one cube to another.
    The  diff bet using data marts and direct copying is
    In case of datamarts,ven if the source cube is changed in futute there is no effect on the target cube.
    In case of copying directly,whenever the source cube is changed,the transformation becomes inactive.
    so we have to activate the transformation again.
    ALso there are some other methods to copy cube contents fron one to other .
    But datamarts is sap standard one.
    Thankyo every one for giving answers
    Regards,
    Sundar

  • What is the difference between 'command delete' and using 'delete original and all versions'?

    My masters are not referenced and I usually have only one version.  What is the difference between using 'command delete' versus going to the top menu bar and using 'dele

    Good question  .
    When the Version is the only Version based on the Original of that Version, the two commands have the same effect.
    See this User Tip by master Aperturist Frank Caggiano.

  • Difference between audigy value and sound blas

    Since i am unable to find comparisions between soundblaster 24bit and AudigyValue in site , Anyone can give me the difference between these two ?

    Other than the name, not much. Both cards lack the EMU0K/2 chip, and have to do all processing in software (cpu processing instead of on the card). Oh yeah and the Audigy SE has newer drivers than the Value (and will probably install on the SB 24 bit).
    All things considering if you are looking at a card for gaming (or just about anything else) avoid both of them.

  • Difference between older Extreme and new one

    I have an Airport Extreme that is about 2 to 3 years old.  The difference between speed when I am plugged by ethernet into the network and when I am using the router is significant.  It drops by about 50% or more.
    Can I expect better performance from a new model?  I have mine set at 5GHZ and auto for Channel selection.
    Thanks,
    Deanna

    The new AirPort Extreme 802.11ac......which is really not so new.....can produce wireless signals theoretically approaching the same speed as an Ethernet connection......but.....and this is a big BUT......this speed will only be realized with the 802.11ac AirPort Extreme....IF....
    You also have a new Mac that is capable of receiving an 802.11ac signal....
    and....
    The Mac is located where it has line of sight with the 802.11ac AirPort Extreme.
    To be realistic, if you have a good connection with the new 802.11ac AirPort Extreme and the new Mac is located such that it has line of sight with the AirPort Extreme, you might expect to see a 25% drop in speed compared to the 50%+ that you see now.
    The current AirPort Extreme will be two years old in a few months, and Apple rarely keeps a current model for two years, so there may be a hint in there.

  • Difference between Child DC and used Component

    Hi,
    what is the difference between a child DC or when I use another DC via Interface?
    Best regards,
    Peter

    Ah okay, so a Child DC is only in the parent DC and can not be reused from other DC's.
    Thanks.
    Best regards,
    Peter

  • Difference between copied requisiton and a normal requisition

    Hi
    Is there any way we can find out if a requisition has been created using copy to cart functionality i mean whether it has been copied from old requisition in iProcurement. I want to know the way to distinguish a copied requisition and a normal requisition.
    Please let me know
    Thanks

    possibly burkepm is correct. however you may have a look at parameter old_req_line_id in POR_CUSTOM_PKG. if this were to be the id of line being copied from, then you could flag some attribute column from POR_CUSTOM_PKG
    Thanks
    Anil Passi

  • Difference between Adaptive webservice and deprecated one

    Hi Experts,
       Plz anyone tell me the exact differences between  Adaptive web service model and deprecated model.
    Also plz explain how an adaptive web service is working.
    Thanks in advance,
      john

    Hi John
    In old webservice No support to import URL which requires authentication but in adaptive web service
    Allows importing WSDL through URL which requires authentication
    In old web service Logical Ports are available at design time
    In adaptive web service Logical Ports are not available at design time
    In old web service No direct support for nested structure, thus application programmer has to manually bind the
    In adaptive web service Direct support of nested structure , no such manual binding is required
    These are the diffreense between old web service and adaptive web service
    Regards
    Ruturaj

  • OSB to Object Types: difference between NULL value and not available

    Hello all,
    I have a question about Object Types. More specifically, how to differentiate between an empty value (null) and a string not available.
    This is my case:
    I have created an object type with three parameters.
    CREATE OR REPLACE TYPE OSB_EMP_OBJ_TYPE AS OBJECT
    (EMP_ID NUMBER
    ,DEPT_ID NUMBER
    ,ORDER_ID NUMBER
    ,CONSTRUCTOR FUNCTION OSB_EMP_OBJ_TYPE
    RETURN self as result
    /I would like to see what happens when I put an empty string into emp_id, NULL into DEPT_ID and nothing into ORDER_ID.
    To do so I have this test script:
    declare
      p_emp OSB_EMP_OBJ_TYPE := OSB_EMP_OBJ_TYPE();
    begin
      p_emp.EMP_ID := '';
      p_emp.DEPT_ID := null;
    --  p_emp.ORDER_ID := null;
      if p_emp.EMP_ID is null
      then
        dbms_output.put_line('Empty');
      end if;
      if p_emp.DEPT_ID is null
      then
        dbms_output.put_line('NULL');
      end if;
      if p_emp.ORDER_ID is null
      then
        dbms_output.put_line('Not available');
      end if;
    end;The result of this is:
    Empty
    NULL
    Not availableIt seems that Oracle treats all three situations alike. What I would like to achieve is a way to see that p_emp.ORDER_ID was not initialized.
    To elaborate a bit: in our production system this procedure would be called from OSB and the object type would by the input for that procedure. Our database version is 10.2.0.5.0.
    Our procedures look something like this:
    procedure p_procedure ( p_emp in osb_emp_obj_type )
    is
    begin
      do_something;
    end;Can anyone tell me if there is a way to achieve this, so I can see whether or not a value in the object type was filled?
    Thanks in advance!

    Darn...
    Eventually we want to use this for an update procedure. The client gets all current data from the database by calling a webservice that (using OSB) selects the data from our database. What we want to achieve is that the client can update that data, by returning only the changed fields to an update procedure.
    We then handle an empty tag to update the field to null, and we ignore missing tags.
    OSB itself can handle this, but PL/SQL can't.
    I'm now thinking of adding an indicator to each optional field (clear_field_yn). OSB can still check for empty tags or missing tags. When a tag is empty, it's corresponding indicator will be set to 'Y'. If the tag is missing, then it will be set to 'N'.
    Is that a solution to consider, or is there a much simpler approach possible?

  • What is the difference between copy requirement and data transfer routines

    Hi Experts,
    I am writing a copy control routine for maintainence quote
    from sales quote.Where do i have to write it in VOFM?
    Is it in copying requirements or data transfer.
    Actually according to the business all the line items from the sales quote are copied
    into the maintainence quote and additional line items are added into maintainence quote
    and the line items copied from the source document are linked to the two newly added
    line items.
    Please advise.
    And is it possible to add the 2 new line items to the new document into VBAP at the runtime?
    Regards,
    Chitrasen

    First of all you have to have a link between the sales documents. You can check it in Tcode: VTAA. if not, talk to your functional people. Try to make this equal to quote to order but instead make it quote to quote.
    You need to put break point in copy requirement as well as in data transfers and check for your requirement.
    Well, the code you want to put in will be the requirement
    I am not sure if you can add 2 line items runtime into quote. this has to go through different checks and i dont think it is possible.
    Good luck

  • Difference between older Rmi and latest one ?

    can any 1 tell me about this, i was told latest one is easy to use can any 1 give me a tutorial or any information about it ?

    What do you mean by "older"?
    Read the RMI tutorial
    http://java.sun.com/docs/books/tutorial/rmi/
    http://java.sun.com/developer/onlineTraining/rmi/RMI.html

  • Can't see difference between new posts and old ones.

    Hi
    This may sound like a silly question......but why I can't see new posts everything looks the same, no indication of new posts.
    It's very silly not to be able to see new posts.
    Tony

    Agreed guys ! We risk to not answer to someone, because we don't see that the thread has been updated. Before it was very easy to do that, now it' quite difficult :-(
    Paul

  • Difference between report mc49 and MC48

    HI,
    i would like to display stock value (in order to date and purchase group) in report MC48 and MC49. The value is different becouse report MC48 shows average stock value and mc49 just stock value. What arleady means "average stock value"? What is the difference between stock value and average stock value?
    Thanks in advance
    Kasia Gac

    Hi Kazia,
    MC48 shows the stock value at the end of the period you enter on the selection screen. The default here is the last 3 months.
    MC49 shows you the average stock value for that period.
    Best,
    Ralf

  • I have bought an iPhone 4S in Brazil and I would like to know if I can replace my old iPhone for a new one (iPhone 5S), at some Apple Store in USA, if I pay just the difference between both values.

    I have bought an iPhone 4S in Brazil and I would like to know if I can replace my old iPhone for a new one (iPhone 5S), at some Apple Store in USA, if I pay just the difference between both values.

    You're welcome.
    I would advise against that for the reasons I provided.
    Could I have my iPad 2 for the new one paying the difference between their values?
    No. Sell the existing yourself and use the proceeds to purchase a new iPad.

  • I need to know the difference between planned SKF and Actual SKF from business view and when I can use one of them ?

    I need just to know the difference between plan SKF and Actual SKF in business example and when I use one of them.
    thanks

    Hi Salaam,
    Statistical Key Figure (SKF) is a base to allocate the cost between cost centers. Usually, common cost centers cost should allocate to respective department cost centers on monthly basis.
    Some of SKFs are: Calculating floor rent on SFT, Telephone charges on No. of units, and employees head count is with "Each" in SAP.
    Apart from Ajay's reply, you can consider the Canteen exp in an organization. Assume Admin, Fin and Mfg departments are getting food services from Canteen. Here, total monthly cost of Canteen exp should be allocated to respective departments. Here, we use SKF as total head count of each department and distribute the cost.
    Planned SKF is what you planned on the beginning of a period. (Assume head count was planned as 30 in the month beginning)
    Actual SKF is what exactly you consumed over the period. (Actual employees provided canteen services during the month is 25)
    BR, Srinivas Salpala

Maybe you are looking for