filenet-content-engine

How can I translate the FileNet ID ID in DB2/Oracle into friendly GUID?

て烟熏妆下的殇ゞ 提交于 2021-01-29 09:03:08
问题 The IBM Technote "How to translate the unique identifier as displayed within FileNet Enterprise Manager so that it matches what is stored in the Oracle and DB2 databases" outlines how DB2 & Oracle store guids in a byte reversed order. How can I convert them into a friendly guid? 回答1: Presuming that object_id is char(16) for bit data , the following expression returns the same. '{'||translate( 'GHEFCDAB-KLIJ-OPMN-QRST-UVWXYZ012345' , hex(F.object_id) , 'ABCDEFGHIJKLMNOPQRSTUVWXYZ012345')||'}'

FileNet Content Engine - Database Table for Physical path

二次信任 提交于 2020-04-13 08:04:58
问题 I realize this is possible with the FileNET P8 API, however I'm looking for a way to find the physical document path within the database. Specifically there are two level subfolders in the FileStore, like FN01\FN13\DocumentID but I can't find the reference to FN01 or FN13 anywhere. 回答1: You will not find the names of the folders anywhere in the FN databases. The folder structure is determined by a hashing function. Here is an excerpt from this page on filestores: Documents are stored among

FileNet Content Engine - Database Table for Physical path

丶灬走出姿态 提交于 2020-04-13 08:03:09
问题 I realize this is possible with the FileNET P8 API, however I'm looking for a way to find the physical document path within the database. Specifically there are two level subfolders in the FileStore, like FN01\FN13\DocumentID but I can't find the reference to FN01 or FN13 anywhere. 回答1: You will not find the names of the folders anywhere in the FN databases. The folder structure is determined by a hashing function. Here is an excerpt from this page on filestores: Documents are stored among

Search folder hierarchy in FileNet for a particular folder

纵然是瞬间 提交于 2019-12-11 10:58:36
问题 I am new to accessing FileNet CE from Java. From my test program, I can connect, create folders, upload files and retrieve the list. Now, I need to find a folder within the ObjectStore. That is to say, given a hierarchy of folders within folders: Folder1 -- Folder1a -- Folder1b ---- Folder1b1 ---- Folder1b2 -- Folder1c ---- Folder1c1 ---- Folder1c2 Folder2 ... How do I search for a folder given its name? It could be N levels deep. Similarly, how do I search using wildcards in the name?

Filenet - Get Email Id out of user id in Filenet Workflow

两盒软妹~` 提交于 2019-12-11 10:13:29
问题 I am new to Filenet BPM and I am working on an approval system workflow where an attached document is either approved Or rejected based on the response. I have to send an email to Originator that the document is approved Or rejected and I am able to fetch the userId/AliasId of a person who launched the workflow but I am unable to get the emailId out of a userid. We already had an LDAP configuration settings at domain level but I don't know what should I do to achieve this functionality.