Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to MDS and haven't installed yet, just starting to read about it. I was wondering, when you commit a Version of master data, does a new version get automatically created or do you have to manually create the next version, or perhaps if there a procedure you can call to do this?

Thanks!

share|improve this question

1 Answer

You would have to manually create a new version by copying an existing one. However, the version you copy must be a committed version. Here's the lifecycle of an MDS version:

  1. When you create a new MDS model a version (usually called VERSION_1) is created along with it.

  2. VERSION_1 is what is called an Open version. Which is to say that the data within this version is open for editing.

  3. To create a new version, you must Lock VERSION_1 (use the Manage -> Versions menu under the Version Management function on the home page). Locking a version makes it read-only to all users other than the administrators.

  4. You must then Validate VERSION_1 (use the Validate Version menu item in Version Management). This will apply any business rules that exist on that model on the data in that version.

  5. After the version has been successfully validated (that is, all the members in the version are Valid) you need to Commit VERSION_1 (again, use the Validate Version menu item in Version Management).

  6. Now that VERSION_1 is committed you can Copy it to create a new Version. The new version will be Open by default.

Note that you can have any number of versions in a model and each of them can be Open, Locked or Committed. It is even possible to Uncommit committed versions and Open them again. This might be more information than you are looking for but I figured it was worth documenting the whole Version lifecycle to really clarify things.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.