Break association between original object and transformation copies?

Hi,
After I had created an array of duplicates for the original drawing object, I found that once the original object is modified, all its copies are changed automatically afterwards.
Is it possible to break the association between the original object and is transformation copies, so that subsequent editing can be made on each individual copy?
Bob

Modify>Separate Attributes. This will give you the objects as a group. The Transform Effect is no longer in effect.
Judy Arndt

Similar Messages

  • Relation between Query Object and InfoObject

    Someone know the sap bw 3.5 table with the association between Query Object and InfoObjects/Calculated Variables used in?
    Thanks a lot!
    Emiliano

    Can you explain what you mean with try rsrt->query name?
    There are no interesting tables with RSRT prefix name.
    Thanks
    Emiliano

  • Difference between abap object and function

    hi all,
    i read the book on abap object of the difference between abap object and classical abap.
    i know that there is only 1 instance of a specific function group but somehow i still not so clear why subsequent vehicle cannot use the same function. i also can use the do and loop to call the function? if cannot then why?
    hope can get the advice.
    thanks
    using function *********
    function-pool vehicle.
    data speed type i value 0.
    function accelerate.
    speed = speed + 1.
    endfunction.
    function show_speed.
    write speed.
    endfunction.
    report xx.
    start-of-selection.
    *vehicle 1
    call function 'accelerate'.
    call function 'accelerate'.
    call function 'show_speed'.
    *vehicle 2
    *vehicle 3
    *****abap object*******
    report xx.
    data: ov type ref to vehicle,
             ov_tab type table of ref to vehicle.
    start-of-selection.
    do 5 times.
    create object ov.
    append ov to ov_tab.
    enddo.
    loop at ov_tab into ov.
    do sy-tabix times.
    call method ov->accelerate.
    enddo.
    call method ov->show_speed.
    endloop.

    Hi
    Now try this:
    REPORT ZTEST_VEHICLEOO .
    PARAMETERS: P_CAR   TYPE I,
                P_READ  TYPE I.
    *       CLASS vehicle DEFINITION
    CLASS VEHICLE DEFINITION.
      PUBLIC SECTION.
        CLASS-DATA: MAX_SPEED   TYPE I,
                    MAX_VEHICLE TYPE I,
                    NR_VEHICLES TYPE I.
        CLASS-METHODS CLASS_CONSTRUCTOR.
        METHODS CONSTRUCTOR.
        METHODS ACCELERATE.
        METHODS SHOW_SPEED.
        METHODS GET_SPEED EXPORTING E_SPEED TYPE I.
      PRIVATE SECTION.
        DATA: SPEED      TYPE I,
              NR_VEHICLE TYPE I..
    ENDCLASS.
    *       CLASS vehicle IMPLEMENTATION
    CLASS VEHICLE IMPLEMENTATION.
      METHOD CLASS_CONSTRUCTOR.
        NR_VEHICLES = 0.
      ENDMETHOD.
      METHOD CONSTRUCTOR.
        NR_VEHICLES = NR_VEHICLES + 1.
        NR_VEHICLE  = NR_VEHICLES.
      ENDMETHOD.
      METHOD ACCELERATE.
        SPEED = SPEED + 1.
        IF MAX_SPEED < SPEED.
          MAX_SPEED   = SPEED.
          MAX_VEHICLE = NR_VEHICLE.
        ENDIF.
      ENDMETHOD.
      METHOD SHOW_SPEED.
        WRITE: / 'Speed of vehicle nr.', NR_VEHICLE, ':', SPEED.
      ENDMETHOD.
      METHOD GET_SPEED.
        E_SPEED = SPEED.
      ENDMETHOD.
    ENDCLASS.
    DATA: OV     TYPE REF TO VEHICLE,
          OV_TAB TYPE TABLE OF REF TO VEHICLE.
    DATA: V_TIMES TYPE I,
          FL_ACTION.
    DATA: V_SPEED TYPE I.
    START-OF-SELECTION.
      DO P_CAR TIMES.
        CREATE OBJECT OV.
        APPEND OV TO OV_TAB.
      ENDDO.
      LOOP AT OV_TAB INTO OV.
        IF FL_ACTION = SPACE.
          FL_ACTION = 'X'.
          V_TIMES = SY-TABIX * 2.
        ELSE.
          FL_ACTION = SPACE.
          V_TIMES = SY-TABIX - 2.
        ENDIF.
        DO V_TIMES TIMES.
          CALL METHOD OV->ACCELERATE.
        ENDDO.
        CALL METHOD OV->SHOW_SPEED.
      ENDLOOP.
      SKIP.
      WRITE: / 'Higher speed', VEHICLE=>MAX_SPEED, 'for vehicle nr.',
                VEHICLE=>MAX_VEHICLE.
      SKIP.
      READ TABLE OV_TAB INTO OV INDEX P_READ.
      IF SY-SUBRC <> 0.
        WRITE: 'No vehicle', P_READ.
      ELSE.
        CALL METHOD OV->GET_SPEED IMPORTING E_SPEED = V_SPEED.
        WRITE: 'Speed of vehicle', P_READ, V_SPEED.
      ENDIF.
    Try to repeat this using a function group and I think you'll undestand because it'll be very hard to do it.
    By only one function group how can u read the data of a certain vehicle?
    Yes you can create in the function group an internal table where u store the data of every car: in this way u use the internal table like it was an instance, but you should consider here the example is very simple. Here we have only the speed as characteristic, but really we can have many complex characteristics.
    Max

  • Difference between Original copy and free copy of application server 10g

    what are the difference between Original copy and free copy of application server 10g

    Hi,
    I think that there aren't free copy of Oracle AS.
    If you are a developer or a system architect, you may download Oracle AS for your test.
    Mauro

  • Difference Between Business Object And Class Object

    Hi all,
    Can any one tel me the difference between business object and class Object....
    Thanks...
    ..Ashish

    Hello Ashish
    A business object is a sematic term whereas a class (object) is a technical term.
    Business objects are all important objects within R/3 e.g. sales order, customer, invoice, etc.
    The business objects are defined in the BOR (transaction SWO1). The have so-called "methods" like
    BusinessObject.Create
    BusinessObject.GetDetail
    BusinessObject.Change
    which are implemented (usually) by BAPIs, e.g.:
    Business Object = User
    User.Create => BAPI_USER_CREATE1
    User.GetDetail => BAPI_USER_GET_DETAIL
    CONCLUSION: Business Object >< Class (Object)
    Regards
      Uwe

  • Differeence between Lock object and enqueue_e_table

    Hi  ,
    what is diff between Lock object and enque_e_table.  Where to use enqueue_e_table and where to use lock object.
    I think with a lock object i can lock more than one table (passing tables  in secondary table). Please correct me.

    A lock object does not really "lock a table" though most of lock objects refer to a database table.
    I explain:
    The principle is that when 2 programs lock at the same time with the same lock object, only the first will succeed.
    If you have a program which does not use the lock, it may update the database table without any problem.
    All programs which update a table have to use the same lock object. Note that users are always able to update this table via SM30 as they don't know the lock object to be used.
    enqueue_xxxx is the name of the generated function module used to lock the xxxx lock object. E_TABLE lock is ONLY used by SM30 if I remember well, so that to prevent one table from being updated via SM30 by 2 persons at the same time. But it is not related at all with programs which would also update this table.
    Edited by: Sandra Rossi on Mar 14, 2010 9:53 PM

  • What are the differences between PD objects and PA objects?

    can any one tell me What are the differences between PD objects and PA objects?

    PA is based on Infotypes 0000-0999. PD is based on Infotypes 1000-1999, chief being Objects Infotype 1000. Objects Infotype is the source of different Object Types such as Person, Position, Org Unit etc. You can check that through transaction OOOT.
    Regards
    Lincoln

  • I am having trouble establishing file association between .PDF files and Adobe Reader.

    I am having trouble establishing file association between .PDF files and Adobe Reader.  When I click on a .PDF file, Adobe Reader does not open the file.  I installed Adobe Reader on a Lenovo G480 laptop using Windows 8.  When I attempted to open a file called I believe G480_user_guide.PDF, a file called something like Nitro_PDF opened.  When I right clicked G480_user_guide.PDF and chose Open With, I found that Nitro_PDF was the default program for opening the file.  I tried to change to another program but found that Adobe Reader was not listed.  I chose the option for searching the computer for a file to open.  I found the folder Adobe in Program Files x64 but I was not able to find an executable.  Where is the Adobe Reader executable or what other method can I use for establishing file association between .PDF files and Adobe Reader.

    Yes, I have now learned how to make a search with the Google search engine.  I am gradually learning how to use my new Lenovo laptop computer with Windows 8.  I learned yesterday that I can make a search with the Google search engine if I enter the search query in the address bar of the Google Chrome browser.  I think it was the Bing search engine that gave me the sites advertising Adobe Reader download but actually provided the download of a reader other than Adobe.
    In my opinion, Windows 8 is significantly different from Windows 7 and that it has hazards and pitfalls.
    I thank all of those who have replied to the initial inquiry.

  • Diff between context object and x path

    hi gurus,
      what is difference between context object and x path?

    Hi rohit,
    If u have multiple receiver system then to determine the reciever u can use context object.....
    Context objects are alternative to XPATH expressions. It is like macros in other programming langugage. If you define this , you can use this object in the receiver determination while doing conditional receiver determination
    To better idea see the blog...
    /people/prasadbabu.nemalikanti3/blog/2006/09/20/receiver-determination-based-on-the-payload-of-input-dataextended-xpathcontext-object
    Check out these also...
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d6/e44fcf98baa24a9686a7643a33f26f/content.htm
    /people/prasadbabu.nemalikanti3/blog/2006/09/20/receiver-determination-based-on-the-payload-of-input-dataextended-xpathcontext-object
    Here is a scenario where context objects were used for BPM
    Technical Context Object in ccBPM
    Get the details here:
    http://help.sap.com/saphelp_nw04/helpdata/en/d6/e44fcf98baa24a9686a7643a33f26f/frameset.htm
    Technical Context Objects :
    http://help.sap.com/saphelp_nw04/helpdata/en/d6/e44fcf98baa24a9686a7643a33f26f/frameset.htm
    A list of the Technical Context Objects names can be found here:
    http://help.sap.com/saphelp_nw04/helpdata/en/6e/ff0bf75772457b863ef5d99bc92404/content.htm
    XPath to show the path (Multiple Receivers)
    /people/shabarish.vijayakumar/blog/2005/08/03/xpath-to-show-the-path-multiple-receivers
    Customize your 'XPATH' Expressions in Receiver Determination
    /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination
    regards
    biplab
    Use a Good Subject Line, One Question Per Posting - Award Points

  • Pages won't break line between quote mark and parenthesis?

    Working on a manuscript in Pages, I find it won't do a line break between a quote mark and a parenthesis. For instance, there is the following text string:
    Buddha” (buddhavacana)
    Pages insists on keeping this string together, even if there's plenty of room on the previous line for the word Buddha” -- it will space out the previous line horribly to keep these two words together. If I remove the close-quote ” (which can be either a typewriter-style quote mark or curly), or the open parenthesis before the next word, it moves Buddha to the previous line. Doesn't matter what the words are, either; it can be:
    xxx” (xxxxxxxxxxxxxx)
    When I go to another paragraph and add a close quote to a word at the end of a line, then an open parenthesis to the word at the beginning of the next line, suddenly they're stuck together, both moved to the second line, leaving the first line grossly spaced out.
    If there's both a quote mark and an open parenthesis (even though they are separated by a space, thus should break between them when appropriate), Pages insists they have to stay together. The only way I can separate them is by putting a paragraph break (return) between them, which causes other problems.
    Anyone have any idea why this happens, if Pages can be told not to do it?

    I wrote about that because I was surprised to get a closing curly one when I typed a straight one just after the word buddha.  I assumed, wrongly, that, as there was no opening double quote before, I would get an opening one.
    I understood later that the app decipher the typed char as a kind of apostrophe which is highly surprising when the app is running in French. The English curly quote buddha” may make sense (I'm not convinced that it really does) but the French chevron buddha» doesn't.
    Forcing the opening char:
    buddha“ or  buddha«gave the same behavior which I thought to be odd.
    I know that it's not a common practice but when I study a behavior, I try to examine it in all its aspects.
    Back to what make or doesn't make sense, I understand the behavior of buddha’ but not the buddha” 's one.
    I never saw a double quote used as an apostrophe character.
    So, I will file a report to Bugs Hunters.
    Yvan KOENIG (VALLAURIS, France) samedi 28 mai 2011 17:48:37
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Mapping errors between data object and automated activity

    Hi,
    in a automated activity of a bpm process I try to call a web service method ("addBook") which exptects an object called u201CbookWrapperu201D. The object "bookWrapper" consist of three variables: u201Cbidu201D (Integer), u201Cauthoru201D (String), u201Ctitleu201D (String).
    When I try to directly map, for example u201Ctitleu201D, out of an existing Data Object (Filled by an human activity: u201CDO_CreateBooku201D) I got the error:
    Expected: xsd:string
    Found list of u2018com.sap.dictionary.stringu2019
    Severity and Description     Path     Resource     Location     Creation Time     Id
    The literal: "Expression for target path 'DO_BookWrapper/title' has errors." do not have type, in expression: "#erroneous=true;sources=TaskOutput/UIResponse/start/title#TaskOutput/UIResponse/start/title".     LocalDevelopmentLocalDevelopmentbook_chapter_process~demo.sap.com/src/bpmn     create book and chapter.bpmn     Expression for target path 'DO_BookWrapper/title' has errors. [Galaxy, Rule, Literal]     1260878200220     4720
    I do not know why this error occurs because both type are strings. Is it due to the fact that I do not have an object instead of variables as input parameters? I used the automatically generated data types as data objects.
    May anybody help me please? Can I make casts?
    Regards

    Hi Martin,
    From the error that you get, it is indicated that you try to map a list to a single variable.
    If you want to do so, please see the documentation http://help.sap.com/saphelp_nwce711/helpdata/en/47/63604e42bf6831e10000000a421937/frameset.htm where it is said:
    If you map a node, whose content is a list or a node, with one or more parents that are lists, to a single-valued node, you get an error. Depending on your needs you could provide custom expression, for example to aggregate the list to a single value, or you could do parent mapping between the multi-valued parent nodes.
    So you need to create an EJB function that does the conversion between a list and single value type. Here is the help for functions: http://help.sap.com/saphelp_nwce711/helpdata/en/47/63604e42bf6831e10000000a421937/frameset.htm and especially for EJB functions http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/609c9982-39af-2b10-768b-e5bd8813c1f3.
    I hope this helps you.
    Best regards,
    Radost

  • Link Between Business Object and Transaction

    <b>How is Business Object linked to transactions?</b>
    For example, how is business object BUS2032 (Sales order) linked to transaction VA01 (Create sales order)?

    Hi Ben,
    I'm not sure that you link a business object and a transaction code explicitly. Normally in the business objects methods you have coded what transaction code should be called. Therefore if you use the methods of the business objects it then knows what transaction to call.
    Conversely on the workflow side you will find that down in the depths of the coding for VA01 (as an example) it calls workflow function modules and raises events. When doing so it provides the business object id and key to the business object (i.e. the sales order number). Indirectly I guess the change documents that are raised for most things in SAP like sales documents are uniquely identified and therefore can also be translated to the business object key (e.g. sales documents will have their own change document type).
    A brief example in my 4.6c system can be found in include LIEDPF4C in the form finsta_kontoauszug_buchen with a call to function SAP_WAPI_CREATE_EVENT. You see the the parameter "object_type" has a variable passed to it "objtype_finsta". If you drill back on objtype_finsta you see that is hardcoded to the value BUS4499.
    I guess you could say the developer of the business object knows what transaction codes the business object should use and the developer of the code in the transaction code knows what business objects he should be raising events for if necessary.
    Hope this helps.
    Regards,
    Michael

  • What is different between conflict object and lingering object in AD

    Hi
    I found lots of conflict object in my Forest on AD 2k8R2 with FFL & DFL 2k3 with dsquery filter "(name=*\0ACNF:*).
    But Only I can see 4 to 5 AD object in ADUC.
    How can I found others.
    Also these conflict object are replicated with AD replication? and due to these conflict object, can be any issue in AD replication like slow replication or delay replication?
    If I delete them then how can I delete and which command or tool like LDP?
    Also Is conflict AD Object and lingering objects means are same?
    Please suggest and guide..
    See below link of my conflict object ..
    http://sdrv.ms/19DUTbi

    IT means... If I don't find duplicate or conflict object in ADUC then I no need to worry about it as after AD tombstone lifetime period, these conflict object would be delete automatically ...?
    Conflict objects can be duplicate or lingering objects both & you need to worry. Consider an example, if you have a system named abc & you try to join another system with the same name from other site DC where connection b/w other DC's are down &
    ABC information is not present in that local DC, it will allow you to join system in the domain with the same name, then the object joined later vl have CNF added.
    Another case, two new systems are joined together from two different AD site with the same name, it will allow you to join & once replication occurs, you will find duplicate name with CNF.
    Same problem happens, when you connect old DC which has crossed TSL. WHat happens here is you have most recent DC with the deleted objects, when you connect old DC which has not received replication & crossed TSL, again during replication, you will see
    objects with CNF which will be lingering objects.
    So, CNF objects can be duplicate & lingering objects both & in both the case, i'll worry. Lingering objects are not visible directly, you can find out using repadmin tool. It is really complex to clean them if they exists in the ready only partition
    of the GC.
    http://technet.microsoft.com/en-us/library/cc738018%28v=ws.10%29.aspx
    Awinish Vishwakarma - MVP
    My Blog: awinish.wordpress.com
    Disclaimer This posting is provided AS-IS with no warranties/guarantees and confers no rights.

  • Transfer between cost center and to copa

    Dear Forum,
    I have 3 points to clarify.
    1) Assessment or distribution, sender cost center is credited and receiver cost center will be debited. cost in sender will reduce and receiver will increase. correct?
    2) For keu3 where cost center to copa, will cost in cost center reduce when transfer to cops?
    3) For keu3, how is the double entry like with the use of assessment cost element when transfer to copa?
    Thanks

    HI,
    when defining an aassessment cycle within T-Code KEU5 the sender is cost center / cost element (or a group of them), the receiver is always a combination of CO-PA characteristics that you define within the segment definition.
    This characteristics combination + some technical infos are stored with the key PAOBJNR (profitabilty analysis object number).
    SO the cost center is credited and the CO-PA receiver (a PAOBJNR) is debited during assessment execution.
    Best regards, Christian

  • Relationship between Authorisation objects and Tcode

    Dear all, </br>
    In 4.6C </br></br>
    I go to Tcode SU01-> Tcode assignment->provide MB1A for tcode->F8-> value list, then I get the list of Authorization objects associated to this tcode.</br></br>
    Access to Tasks in General Notifications</br>
    Authorization for document activities</br>
    CS BOM Authorizations</br>
    Authorization for Class Types</br>
    Consolidation: Authorization for subgroup</br>
    PM: Task List</br>
    PM: Transaction Code</br>
    CO-CCA: Cost Center Planning</br>
    EC-PCA: Delete transaction data</br>
    EC-PCA: Actual Data Transfer</br>
    Warehouse Number / Storage Type</br>
    Transaction Codes in the Warehouse Management System</br>
    Document Type in Purchase Requisition</br>
    Purchasing Group in Purchase Requisition</br>
    Plant in Purchase Requisition</br>
    Purchasing Organization in Purchase Order</br>
    Evaluation Structure: Application</br>
    Material Master: Maintenance Statuses</br>
    Personnel Planning</br>
    HR: Reporting</br>
    HR: Master Data</br>
    HR: Master Data - Extended Check</br>
    HR: Master Data - Personnel Number Check</br>
    Use of Group Codes</br>
    Quality Notification Types</br>
    QM Transaction Authorization</br>
    Business Process Quality Notifications</br>
    System Authorizations</br>
    ALV Standard Layout</br>
    Background Processing: Background Administrator</br>
    Background Processing: Operations on Background Jobs</br>
    Administration Functions in the Change and Transport System</br>
    C Calls in ABAP Programs</br>
    Authorization for File Access</br>
    ABAP Workbench</br>
    SE61 Documentation Maintenance Authorization</br>
    Authorization for GUI activities</br>
    IMG: Authorization to Perform Functions in IMG</br>
    Language administration</br>
    SAPoffice: Authorization for an Activity with Documents</br>
    SAPoffice: Attribute of Office User</br>
    Authorization Object for Sending</br>
    OLE Calls from ABAP Programs</br>
    ABAP: Program run checks</br>
    IMG: New Authorizations for Projects</br>
    Authorization check for RFC access</br>
    Change documents</br>
    Spool: Device authorizations</br>
    Spool: Restriction on Maximum Number of Pages</br>
    Cross-client Table Maintenance</br>
    Table Maintenance (via standard tools such as SM30)</br>
    Authorization Check for Transaction Start</br>
    Transport Organizer</br>
    SAP ArchiveLink: Authorizations for access to documents</br>
    Sales Document: Authorization for Sales Document Types</br>
    Sales Document: Authorization for Sales Areas</br></br></br>
    This information is fetched from the table USOBX where name = MB1A and type = 'TR'</br></br>
    When I  create a role in PFCG say ZTEST_ROLE and assign the <b>only one tcode MB1A</b>, I get additional authorisation objects below</br></br>
    CO-PC: Product Costing</br>
    Material Master: Company Codes</br>
    Material Master: Warehouse Numbers</br></br>
    Why do I get these additional objects ? What is the logic behind this?</br></br>
    My requirement is to check the authorisation objects associated to a Tcode.</br></br>
    Thankyou.

    hi
    there would be many authorisation objects for a tcode (like create,change display).....so if user is having that particular authorisation object only then he can do a particular activity in that tcode.
    Regards
    Sajid

Maybe you are looking for

  • XI adapter in BPM

    Hi Experts, I have a scenario where a BPM is triggered by a Proxy from SAP. Within BPM some Exception Handling takes place and the correcspodng status is sent back to the sender SAP system. I was asked to use an XI adapter for communication b/w BPM a

  • FormsCentral is discarding dropdown export values when importing PDF form

    I would like to disclose that I am fairly new to this process. I have created a pdf from a word document. After creating the form portion in Adobe Acrobat XI Pro and adding in javascript validations and calculations, sourced mainly from these communi

  • Problem in datasource in embedded oc4j 10.1.3

    Hi, I have created a data source with following details. Connection Pool Name: jdbc/pool/xyz and enter all details in the connection Factory. Then am trying to create a connection as follows javax.naming.InitialContext ic = new javax.naming.InitialCo

  • XServe Running Tiger, not Server Version?

    Can we install the standard (non-server) version of Tiger on an XServe? We use to render video and run video at concerts and are having lots of render crashes under Final Cut as well as some tasks apparantly running in the background which is making

  • Calculate salary of employee from April to December ??

    Hi all, I want to find the salary of the employee from April to December month for that particular year entered on the selection screen, and then from January to March as well. How is it possible? I tried looking into various infotypes, but I couldn'