Book a Demo

Author Topic: Copy package or object from one model to another  (Read 5618 times)

abeljda

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1 Gold!
    • View Profile
Copy package or object from one model to another
« on: February 13, 2003, 06:24:09 am »
Anyone ever tried to copy a package or object from one EA project ot another? We have multiple programmers working on the same project and we need to split it up, then bring it back together. We can generate the code for the class or data models and reverse engineer them back into the original model, but it seems we should be able to just copy objects. Any ideas out there?

CJ

  • EA User
  • **
  • Posts: 288
  • Karma: +0/-0
    • View Profile
Re: Copy package or object from one model to anoth
« Reply #1 on: February 13, 2003, 08:12:23 am »
G'day,

Have you looked into controlled packages for team collaboration?
Cheers and best regards.

potterm

  • EA User
  • **
  • Posts: 126
  • Karma: +0/-0
    • View Profile
Re: Copy package or object from one model to anoth
« Reply #2 on: February 13, 2003, 12:57:09 pm »
Try right-clicking on the package you want to export, and select the Import/Export option, which allows you to dump the package (and all elements/sub-packages to an XML file).

Open up the other model, right click on the parent package and select the Import/Export option again to pull the XML file into the model.

If the package already exists in the model I would suggest you delete it before importing (otherwise you risk getting GUID clashes during the import).

Hope that helps.
Cheers,
Martin.

abeljda

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1 Gold!
    • View Profile
Re: Copy package or object from one model to anoth
« Reply #3 on: February 18, 2003, 01:07:44 pm »
That does the trick, thanks! ;D