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
7
votes
1 answer

The fastest way to fetch PropertyTemplate by symbolic name ising IBM FileNet CE API

The only way I know is to iterate through property templates of object store and find the one I need by comparing symbolic name with some String: String propertySymName = "someName"; ObjectStore os = Factory.ObjectStore.fetchInstance(...); //assume…
sermolaev
  • 975
  • 11
  • 23
6
votes
1 answer

Filenet P8 5.1 and 5.2 deleting/replacing document content with new content

One of the requirement is to update the document with new content also delete the old document. document Id and other properties of the previous document should be pointing to the new document with new content. There any sample snippet to do the…
Shiv Gopal
  • 539
  • 2
  • 10
  • 21
5
votes
1 answer

FileNet - Data to be copied exceeds space available error

some other team is calling our FileNet custom app for searching documents. I believe some of the users are facing intermittent failure because we are getting tickets(although none of the user has reported this issue) for the error below and I tried…
tiktok
  • 279
  • 2
  • 23
4
votes
2 answers

Query DateTime field using Date only in FileNet Content Engine

Is it possible to query using only a Date field such as '2017-03-02' in IBM FileNet? I have tried the below statement and it doesn't seem to work SELECT * FROM Table_Name WHERE EstimatedDate = '2017-03-02' OR SELECT * FROM Table_Name WHERE…
4
votes
1 answer

Filenet Change Document Class

I'm trying to change class for a given document and below is the code that I used Document p8Document = Factory.Document.getInstance(p8ObjectStore, oldDocumentClassName, new Id(documentId)); p8Document.changeClass(newDocClassName); …
bajji
  • 1,271
  • 3
  • 15
  • 37
4
votes
2 answers

How should i proper page queries in IBM FileNet?

Are there any methods to page queries in FileNet? I have a grid control with paging so i need to get count of elements total in query and possibility to get in example page 3 of results(with any page size). I found only TOP operator, but are there…
Horosho
  • 647
  • 1
  • 8
  • 22
4
votes
1 answer

SearchScope fetchRows vs fetchObjects (IBM FileNet CE API)

I've been using SearchScope.fetchObjects() method till this time, and then it just occurred to me that fetchRows might be the better choice in some cases (when you don't need metadata like class names, object stores etc). Something tells me it might…
sermolaev
  • 975
  • 11
  • 23
4
votes
2 answers

Getting object store properties without additional round-trip

I'm using IBM FileNet CE API 5.1 and facing perfomance problem because of additional refreshing in loop with great iteration amount (25000+). Here is code sample: for (Document document : documents) { ObjectStore objectStore =…
sermolaev
  • 975
  • 11
  • 23
3
votes
1 answer

FileNet P8 cannot checkout a document

I have an issue checking-out files in FileNet P8. It is possible for me to perform a checkout over documents with class "Document". Nevertheless, for any document from another class, the systems keeps telling me that the operation is not…
Rwanou
  • 431
  • 5
  • 24
3
votes
3 answers

Filenet Content Engine SECURITY_ANONYMOUS_DISALLOWED

We have an development enviroment, with the AE and CE in the same websphere instance. Now, we are trying to mount, the AE in one of our local machine, in a IRAD Websphere instance. When the application tries to access filenet objects we get the…
StackPointer
  • 83
  • 1
  • 5
3
votes
4 answers

Updating Creator property in FileNet P8

I am trying to update the Creator property in a FileNetP8 implementation. I tried to update it using the grant of "Modify Certain System Properties" however it seems that this grant does not apply to "Creator" and rather applies to other properties…
WiredCoder
  • 916
  • 1
  • 11
  • 39
3
votes
1 answer

Searching for a folder in FileNet ContentEngine and retrieving its class

I had gotten the code to work to search for folders and retrieve properties. Ref: Search folder hierarchy in FileNet for a particular folder I am trying to retrieve the class name of the folder object so as to differentiate between different types…
Hussain Akbar
  • 646
  • 8
  • 25
3
votes
1 answer

how do we debug the bulk action javascript from ACCE?

Can someone throw in their idea on how we can debug the javascript that we write from the bulk action script from ACCE? I understand that the alert or debug statement may not work there. What are the other options we have?
Venky.m
  • 101
  • 1
  • 8
3
votes
1 answer

Filenet user cache refresh

When a 'new' user is added to an existing AD group or we create a new AD 'group' we have to wait too long for the cache in P8 to be updated. If I transfer any workflow into the region it will update the cache immediately. Our java program is…
3
votes
2 answers

FileNet Content Engine - Database Table for Physical path

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…
Ryan Leeper
  • 53
  • 1
  • 3
1
2 3
10 11