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

Filenet - How to get the Property values in Workflow group

I have 2 Filenet Workflows where the firstWF takes the userids and store it on document property as String separated by comma. What I want from my SecondWF is that it should take that userids and assign it to workflow group when secondWF launch. I…
0
votes
1 answer

Filenet - Copy value from a workitem to document Property

I am new to Filenet BPM and I am trying to set a value from a workitem to document Property. Here is my requirement - I have a Workflow with a document attached which should go to approval process, If it is approved then I have to set a property…
0
votes
2 answers

Check if folder exists

my structure is as follows MyRootFolder └──subfolder1 └──subfolder2 . . . └──subfolder n I have a requirement where-in I need to check if a sub-folder exists within a root folder and if not create it. I can't find a direct API to check for the…
bajji
  • 1,271
  • 3
  • 15
  • 37
0
votes
1 answer

Object security dynamic setting

I currently have a requirement to implement security on Document objects (non-existing, yet to be added) based on a property of type String/list in which based on the value chosen, the security of the object should change (security is role based).…
WiredCoder
  • 916
  • 1
  • 11
  • 39
0
votes
1 answer

Uploading large documents to FileNet Content Engine

Using FileNet Java API version 5.1.0.3 I am trying to upload big document to P8. I am reading file using FileInputStream and setting the input stream to contentTransfer.setCaptureSource(file); I am getting OOM exception (complete stacktrace below).…
0
votes
1 answer

Deleting objects in a specific folder using sweep policy

I have several folders inside my object store, and i want to implement a sweep policy for housekeeping. The idea is that any files/subfolders/documents inside one of my several "main" folders needs to be deleted if they are more than one month…
0
votes
2 answers

FileNET P8 5.2.1 FP2 - edit permissions on document creation

We're asked to set up permissions when a document is created. Basically the code part written is reproduced below : public void onEvent(ObjectChangeEvent event, Id eventId) { if (event instanceof CreationEvent) { Document doc =…
Amessihel
  • 5,891
  • 3
  • 16
  • 40
0
votes
1 answer

IBM Content Collector FS to P8 Archiving

In my current project using IBM Content Collector 4.0.1 SP5 with IBM Filenet P8 Content Engine 5.2.1 I need to collect files from file system and add them to a certain P8's object store. Report files are added into folders eight fixed folders and…
abarisone
  • 3,707
  • 11
  • 35
  • 54
0
votes
1 answer

Factory.Folder.fetchInstance method not working with paths

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 obtain the connection object with code like this: Connection connection =…
abarisone
  • 3,707
  • 11
  • 35
  • 54
0
votes
1 answer

Can't set permissions on Filenet P8 folder

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 add some permissions to an existing folder using the following code: public Folder…
0
votes
1 answer

How to query distinct documents that contain Unordered List properties in FileNet P8?

I am trying to send a dynamically built query to FileNet 5.2 using the .Net API. The Document Class that I am trying to query has three properties in the select list that have a cardinality of Unordered List and type String. When I send over the…
Rob
  • 161
  • 1
  • 1
  • 10
0
votes
1 answer

Reclassifying document parent class in FileNet CPE

I have a document class hierarchy such as the following: Document ----- L1----- L2 ----- L3 My current setup does not allow for creation of instances from L1 or L2, only L3 has allowInstance=true and hence all the document instances in the…
WiredCoder
  • 916
  • 1
  • 11
  • 39
0
votes
2 answers

Filenet query number conversion in order by

I have this Filenet query: SELECT [This], [Ente], [IDAtto], [Numero], [Tipologia], [DataEmissione] FROM [AttoNormativo] WHERE ([DataEmissione] > 20160405T215959Z AND [DataEmissione] < 20160408T220001Z) ORDER BY …
0
votes
1 answer

Why WebSphere's threads hangs up?

I have WAS 7 and Filenet CE 5.1 and have a troubles. Why WebSphere's threads hangs up. Is it JDBC driver error? Could you kindly advice me. Thank a lot! [22.06.16 13:14:58:921 YEKT] 0000001d ThreadMonitor W WSVR0605W: Thread "WebContainer : 15"…
0
votes
1 answer

IBM Filenet p8 concurrently reading document content

I want to read a document content from FileNetP8 parallel to reduce my reading time. Also the issue is I write into a OutputStream. Is there anyway or any API from where I can parallelize my reads into a OutputStream. I am asking this because I am…
Raghuveer
  • 2,859
  • 7
  • 34
  • 66