Hello experts,
I have requirement where whever a user will import a zip file, all the files zipped inside it should get imported and not the zip file.
Can you let me know how it can be achieved?
Write a server job that will query for zip files. The server job can then export the zip to file system and execute java lib to unzip it and import the contained files.
I had a similiar requirement to be done in my process template anf achieved it using DFC. You can try writing a TBO and check for the content type and if it is a zip file, extract them, load them into documentum and just don't call the save() method on the zip object.