How do I relate saved dataslot document files to the directo

Posted by Rafael Fontes on 13-Dec-2017 12:28

Hello everyone!

How do I relate saved dataslot document files to the directory with the BPM ID process?

Thank you in advance, thank you very much.

Rafael Fontes

All Replies

Posted by jawaharsurapaneni on 07-Mar-2018 18:55

Hi,

In order to retrieve saved document dataslot files, with the Process ID, i believe, you need to write some custom java code which can be wrapped inside custom adapter.

The following are the list of methods you can use to perform respective operation

Retrieving documents

public com.savvion.sbm.dms.svo.Document getDocumentById(java.lang.String docId)

You can get the Document with the specified document id.

public com.savvion.sbm.dms.svo.Document getDocumentByName(java.lang.String docName)

You can get the Document with the specified name.

public java.util.List<java.lang.String> getDocumentNames()

You can get the list of document names in the document dataslot.

public java.util.HashMap<java.lang.String,com.savvion.sbm.dms.svo.Document> getDocuments(java.lang.String[] docNames)

You can get the List with the name specified in the docNames array.

public java.util.List<com.savvion.sbm.dms.svo.Document> getList()

You can get the List of documents for the document dataslot.

public java.util.List<com.savvion.sbm.dms.svo.Document> getList(java.lang.String creator)

You can get the list of documents belonging to the specified creator.

Regards,

Jawahar.

This thread is closed