Questions tagged [filenet-content-engine]

FileNet Content Engine (CE) is central software component of IBM FileNet P8 platform. It is integral part of FileNet Content Platform Engine (CPE).

156 questions
3
votes
1 answer

Remove SID from documents - FileNet

We are using FileNet 5.1 and some other team has accidentally deleted a group say 'ABC' from prod. Now the documents who had 'ABC' applied are now having SID on them. We have now created a group with the same name & identified the affected GUIDs. I…
tiktok
  • 279
  • 2
  • 23
2
votes
1 answer

How to get the count of documents for the object store using FileNet API's

I have more than a million documents in object store, and I want to know the count of documents for a specific time period. How can I get the count using FileNet CE api's The code I use is below, which gives me only a maximum of 200…
Salman
  • 21
  • 2
2
votes
1 answer

org.omg.CORBA.TRANSACTION_ROLLEDBACK: vmcid: 0x0 minor code: 0 completed: No

i am using Filenet 5.2.1 on Websphere 8.5.5.13 and when trying to connect to filenet connection point to retrieve work items as follows : workObject = (VWWorkObject) rosterElement.fetchWorkObject(false, false); I get the following…
2
votes
3 answers

Fetch absolute or relative path using file object in IBM filenet

String mySQLString = "select * from document where documentTitle like '%test%' "; SearchSQL sql = new SearchSQL(mySQLString); IndependentObjectSet s = search.fetchObjects(sql, 10, null, true); Document doc; PageIterator iterator =…
2
votes
1 answer

Access FileNet Content Engine from servlet

I am trying to access IBM FileNet P8 V5 datastore from a servlet and need help in getting the WebSphere configuration correct. I have a fresh install of FN P8 on a RedHat 7 server with IBM WebSphere. I tried the example code given on…
2
votes
2 answers

CE Update Event: any way to pass before/after property values to a workflow?

I've configured a FileNet workflow subscription on Add, Update and Delete events. The workflow calls a Java component to send a notification message (to a third party). We would like to see "before" and "after" property values in the notification…
paulsm4
  • 114,292
  • 17
  • 138
  • 190
2
votes
1 answer

Document with multiple content elements

I have documents within FileNet Multiple content elements (both pdf's). When I open this document from ICN filmstrip view, I can scroll down to see both documents. If I double-click the document, it opens in a viewer and I can see both of them side…
bajji
  • 1,271
  • 3
  • 15
  • 37
2
votes
2 answers

Acquiring retrieval name for latest version of a document in a DocumentSet using FileNet API

I have this piece of code: Folder fold = Factory.Folder.fetchInstance(os, folderPath, null); DocumentSet docs = fold.get_ContainedDocuments(); Iterator it = docs.iterator(); Document retr; try { while (it.hasNext()) { retr =…
2
votes
1 answer

How to deploy a Java Action Handler in IBM Filenet?

Filenet P8 Content Platform Engine 5.2.1 and WebSphere 8.5.5 are used in my current project. My goal is a creation Java Action Handlers. I have a jar file with needed functionality. I wanna store action handler as a CodeModule object. I can create…
2
votes
0 answers

FileNet P8 - Insert WHERE condition properties values in a Stored Search

In my current project using Filenet P8 Content Platform Engine 5.2.1 with WebSphere 8.5.5.3, Eclipse Mars 4.5.2 and Apache Maven 3.3.1 I'm trying to insert programmatically some where condition properties values in a Stored Search (starting from…
abarisone
  • 3,707
  • 11
  • 35
  • 54
2
votes
2 answers

Get Access Rights for another user with FileNet Java API

We have a build system on which we need to fetch documents for other user's builds. We don't have their password but only their login and we will use a service account. Is there a way to get the access rights for another principal with the FileNet…
2
votes
2 answers

Whats the correct and efficient way to delete a versioned document in Filenet P8 4.5 or higher?

I want to delete documents for which a specific property has been set in the current version. If this property has been set all versions of that document need to be removed. My current implementation which searches for IsCurrentVersion = TRUE and…
Marged
  • 10,577
  • 10
  • 57
  • 99
2
votes
2 answers

FileNet - SQL for a date property between specific hours

I would like to fetch documents that a property date hour is between midnight and 4 AM. I tried this: SELECT [This], [Date], FROM Folder_Type_1 WHERE DATEPART(hh,[Date]) >= 0 AND DATEPART(hh,[Date]) <= 4 ORDER BY Date and SELECT [This], [Date],…
Sphax
  • 85
  • 1
  • 1
  • 8
2
votes
3 answers

Filenet P8 how to attach Javadoc for jace.jar

I'm new to Filenet and I was asked to develop an event action handler in Java. I'm trying to define a Javadoc for the jace.jar library, but with no success. Does anybody know what's the URL for this Javadoc? (I need it for com.filenet.api package)
user1579191
  • 91
  • 2
  • 10
2
votes
1 answer

How to optimize page size for IBM FileNet search

It's common situation when building some server-side reports to use simple Iterator instead of PageIterator when iterating through FileNet collections because you don't need to send document "portions" to clients. SearchScope ss = new…
sermolaev
  • 975
  • 11
  • 23
1
2
3
10 11