1

I am trying to change document content and save the changes into current version itself without increment the document version number using filenet java API.

Any one help me on this topic.

ᄂ ᄀ
  • 5,669
  • 6
  • 43
  • 57
Murali Raju
  • 43
  • 1
  • 4

3 Answers3

2

Changing content always leads to the creation of a new version. It is not possible to directly accomplish what you want.

If you need the version number intact, delete the current version and save the changes. Then create a new version.

ᄂ ᄀ
  • 5,669
  • 6
  • 43
  • 57
1

As fnt said, the main goal of an ECM platform is to guarantee that a version content stays unchanged. The only thing doable, is to update as much times as you need the content of the checked out version (reservation). That can be useful for a Save (without CheckIn scenario). Don't know if that is useful to you. If not, you need to delete/re-create a new version to keep the same version number.

-1

Delete, make changes to the document and recreate the same with updated content is the only solution.