Friday, July 14, 2023

How to get folder Name from doc id in filenet?

 

            public static void main(String[] args) {

                        String uri = <MTOM Url>

                        String username = user id;

                        String password = password;

                        String objectStoreName = osSymbolicName

 

                      String docId = "{1233-213-214-324-4-32423424}";

 

                        Connection conn = Factory.Connection.getConnection(uri);

                        Subject subject = UserContext.createSubject(conn, username, password, <jazzname>);

                        UserContext.get().pushSubject(subject);

                        Domain domain = Factory.Domain.fetchInstance(conn, null, null);

                UserContext.get().pushSubject(UserContext.createSubject(conn, username, password, null));

                ObjectStore objectStore = Factory.ObjectStore.fetchInstance(domain, objectStoreName, null);

 

                                                // Fetch the source document

Document doc= Factory.Document.fetchInstance(objectStore, docId ,null);

                                                FolderSet folders = doc.get_FoldersFiledIn();

                                                Properties props= doc.getProperties();

                                                if (folders != null & !folders.isEmpty()) {

                                                            Folder folder = (Folder) folders.iterator().next();

                                                            System.out.println("Folder Name " + folder.get_FolderName());

}

Monday, July 25, 2022

Merge PDFs into one using Java & PDFBox API

 //Suppose we want to merge one pdf with another main pdf


              InputStream is1 = null;


              if (file1 != null) {

                     FileInputStream fis1 = new FileInputStream(file1);

                     byte[] file1Data = new byte[(int) file1.length()];

                     fis1.read(file1Data);

                     is1 = new java.io.ByteArrayInputStream(file1Data);

              }


              //

              InputStream mainContent = <ur main content>


              org.apache.pdfbox.pdmodel.PDDocument mergedPDF = new org.apache.pdfbox.pdmodel.PDDocument();

              org.apache.pdfbox.pdmodel.PDDocument mainDoc = org.apache.pdfbox.pdmodel.PDDocument.load(mainContent);

              org.apache.pdfbox.multipdf.PDFMergerUtility merger = new org.apache.pdfbox.multipdf.PDFMergerUtility();


              merger.appendDocument(mergedPDF, mainDoc);


              PDDocument doc1 = null;


              if (is1 != null) {

                     doc1 = PDDocument.load(is1);

                     merger.appendDocument(mergedPDF, doc1);

                    //1st file appended to main pdf");

              }

             


              ByteArrayOutputStream baos = new ByteArrayOutputStream();

              mergedPDF.save(baos);


//Now either u save it here or convert into InputStream if u want

              ByteArrayInputStream mergedInputStream = new ByteArrayInputStream(baos.toByteArray());

             

              


Monday, April 18, 2022

Java : Magic Method to get a string between 2 words or in any paragraph

 

String readBetweenWords(String para, String string1, String string2) {

 

              int a= para.indexOf(string1);

              if (a== -1) {

                     return "";

              }

              int b= para.lastIndexOf(string2);

              if (b== -1) {

                     return "";

              }

              int aa= a+ string1.length();

              if (aa>= b) {

                     return "";

              }

              return para.substring(aa, b);

 

       }

Thursday, September 9, 2021

What is BAW?

 Starting a new series for BAW learnings:

Intro: 

IBM Business Automation Workflow is a platform to create workflow applications to improve

productivity. Workflow applications coordinate work between tasks that are performed by humans and

automated tasks to improve daily business operations. Workflow applications have four main

components:

▪ An authoring environment to create and configure the application.

▪ Frameworks or models for sequencing and delegating work. With Business Automation

Workflow, the models can be either structured processes or unstructured cases. You can

choose your model based on the pattern of your workflow and not be limited to a case or a

process.

▪ A user experience for interacting with the application. To provide consistent user

experiences, standardized workflows can be reused across the organization.

▪ Administrative tools for optimizing how the application runs, deploying new versions and

managing security.

IBM Business Automation Workflow is part of the IBM Digital Business Automation platform, which

includes various product offerings that you can use to digitize all aspects of business operations,

while providing real-time insight into your business. IBM Digital Business Automation is a flexible

automation platform that automates repetitive human tasks, content management, process

workflows, data capture, and business decisions.

Monday, September 6, 2021

Few Sample Certification Questions: IBM FileNet Business Process Manager v5.1

QUESTION NO: 1

 

You are installing a Process Engine server that will be a part of an IBM Case Manager installation. What is a requirement for the Process Engine installation?

 

A.  The Process Engine can only have one virtual server.

B.  IBM Case Manager and Process Engine must be on the same server.

C.  The Content Engine and Process Engine must be on the same server.

D.  You must use the same database for both the Content Engine and Process Engine.

 

Answer: D :

 

 

 

QUESTION NO: 2

 

There is a need to generate the Case Analyzer reports based on fields in the workflow. Which two configuration steps are required to do this? (Choose two.)

 

A.  Configure the Case Analyzer pruning schedule

B.  Expose the workflow fields in the Process Engine Event Log

C.  Expose the workflow fields in all queues associated with the workflow

D.  Expose the workflow fields in the Roster associated with the workflow

E.  Create new data fields in Case Analyzer based on these workflow fields

 

Answer: B,E :

 

 

 

QUESTION NO: 3

 

Which two adaptors are supported by IBM FileNet P8 Business Process Manager out-of-the-box? (Choose two.)

 

A.  C#

B.  Java

C.  JMS

D.  .NET

E.  TIBCO

 

Answer: B,C


:

 

 

 

 

QUESTION NO: 4

 

How do you configure multiple Component Managers to access the same Component Queues?

 

A.  Create exact replicas of Component Manager instances on the same host accessing the same component queues.

B.  Create exact replicas of Component Manager instances on different hosts accessing the same component queues.

C.  Create the Component Manager instances each with a different Service User name to access the same component queues.

D.  Create duplicates of the Component Queues and have each Component Manager point to a copy of the component queue.

 

Answer: C :

 

 

 

QUESTION NO: 5

 

You are installing a Process Engine server that will be a part of an IBM Case Manager installation. What configuration setting must be set to establish the connection between an object store and an isolated region for IBM Case Manager?

 

A.  A Region id must be created in the object store.

B.  The Runtime Options tab must be configured in Process Configuration Console.

C.  A symbolic link between the object store and the isolated region must be created.

D.  The IBM Case Manager server host name must be specified on the Server Connections tab on the Process Engine Process Task Manager.

 

Answer: C :

 

 

 

QUESTION NO: 6

 

Where in a workflow policy configuration do you choose which pages of an ITX form template are available for each step in a workflow?


A.  Define Step Maps, Map Form Fields

B.  Define Step Maps, Advanced Options, Page options

C.  Define Step Maps, Advanced Options, Form Options

D.  Define Step Maps, Advanced Options, Region Layout

 

Answer: B :

 

 

 

QUESTION NO: 7

 

A Business Analyst has defined business rules in the ILOG Business Rules Management System (BRMS) and deployed it as a web service. How would you integrate these rules into the workflow?

 

A.  Use the WaitForCondition system function

B.  Enable System Messages in Process Configuration Console

C.  Implement the rules using Conditional routes specified on a step

D.  Use an invoke system instruction to consume this ILOG rules web service

 

Answer: D :

 

 

 

QUESTION NO: 8

 

How do you define a web service end point in a workflow?

 

A.  Using Partner Links

B.  Using XML Data Fields

C.  Using Component Queues

D.  Using Workflow Data Fields

 

Answer: A :

 

 

 

QUESTION NO: 9

 

Which two are mandatory steps when providing a web service via FileNet BPM? (Choose two.)

 

A.  Publish the web service to a WSRR Registry


B.  Specify the Partner Link and Port Definition in the Workflow Properties.

C.  Specify the malfunction workflow map to use for faults and exceptions.

D.  Add one Receive step and optional Reply Steps to the Workflow Definition.

E.  Import the WSDL (Web Services Definition Language) file for the service into the workflow definition.

 

Answer: B,D :

 

 

 

QUESTION NO: 10

 

A developer in your organization has created a custom HTML Step Processor which they would like to use for a subset of approval tasks in a business process. What must the System Administrator do before the new Step Processor can be used in the business processes?

 

A.  Configure the Step Processor in the Process Task Manager (PTM).

B.  Define the HTML step processor's parameters in the Process Designer.

C.  Configure the Step Processor in the Process Configuration Console (PCC).

D.  Define a java class which contains the HTML step processor's associated business logic.

 

Answer: C :

 

 

 

QUESTION NO: 11

 

Which two Web Services registry service options are supported by FileNet Process Designer? (Choose two.)

 

A.  RMI

B.  UDDI

C.  WSDL

D.  WSRR

E.  Partner Link

 

Answer: B,D :

 

 

 

QUESTION NO: 12


In the following scenario the 'Approve Loan' step is performed by the 'loan_officer_group' group.

 


 

 

What would be the result of launching this workflow with a 'loan_amount' of $200,000?

 

A.  The 'Approve Loan' step will be routed to Olivia for processing.

B.  The 'Approve Loan' step will be routed to Oscar for processing.

C.  A malfunction will occur, you can only assign users to workflow groups when the workflow launches.

D.  An error will occur, the users must be assigned to the workflow group in the step before the 'Approve Loan' step.

 

Answer: A :

 

 

 

QUESTION NO: 13

 

Which interchangeable format allows you to easily transfer and deploy multiple related workflows between environments and is supported by FileNet BPM 5.1?

 

A.  XPDL

B.  BPEL

C.  WSDL

D.  BPMN

 

Answer: A :

 

 

 

QUESTION NO: 14

 

What administration tools can be used to export FileNet objects from one environment to another?


A.  FileNet Enterprise Manager and Process Task Manager

B.  Process Configuration Console and Process Administrator

C.  Process Configuration Console and Process Task Manager

D.  FileNet Enterprise Manager and Process Configuration Console

 

Answer: D :

 

 

 

QUESTION NO: 15

 

A workflow step has multiple outgoing paths, and there is a routing condition on each path. The routing conditions are based on workflow data field values. How does the Process Engine route a work item when it is dispatched from that workflow step, but its data fields do not fulfill any of the routing conditions?

 

A.  The work item is terminated.

B.  The work item goes to the Conductor queue.

C.  The work item takes the first path in the routing order.

D.  The work item stays at the same workflow step after being dispatched.

 

Answer: A :

 

 

 

QUESTION NO: 16

 

In order to create custom application interfaces without application programming, which two tools could be used? (Choose two.)

 

A.  IBM Lotus Forms

B.  IBM FileNet eForms

C.  IBM Enterprise Records

D.  Java Step processor template

E.  HTML Step processor template

 

Answer: A,B :

 

 

 

QUESTION NO: 17


Which statement is correct regarding Step Processors?

 

A.  Java Step Processors require a 3rd party security certificate.

B.  For each Step Processor created an associated Launch Processor much be created.

C.  A workflow can use either HTML Step Processors or Java Step Processors, not a combination of both.

D.  HTML Step Processors do not require the downloading of the Process Engine API jar files to the user's workstation.

 

Answer: D :

 

 

 

QUESTION NO: 18

 

Which two IBM FileNet out of the box application components allow implementation of FileNet BPM user interfaces? (Choose two.)

 

A.  Workplace

B.  Workplace XT

C.  Process Administrator

D.  IBM Enterprise Records

E.  Process Configuration Console

 

Answer: A,B :

 

 

 

QUESTION NO: 19

 

As your role as a Technical Advisor in a large banking project you have noticed there is a high percentage of workflow and steps that are candidates for reuse. Which FileNet BPM feature can be used to ensure consistent processing across related workflows, and establish a more modular implementation of your business process application?

 

A.  Workflow submaps

B.  Workflow collections

C.  Workflow inheritance

D.  FileNet Process Designer

 

Answer: C :


 

 

 

 

 

QUESTION NO: 20

 

A client application gets a message that a work item is locked by a user who no longer works at the company. How do you unlock the work item?

 

A.  Work items can only be unlocked by the owner of the lock.

B.  Use Process Configuration Console to initialize the isolated region

C.  Use vwspy to create a new user with the same name as the original lock owner, then unlock the work item.

D.  Login to the the Process Administrator UI as a member of the Process Engine Administrator Group, query for the work item, select the item and use the context menu to unlock it.

 

Answer: D :

 

 

 

QUESTION NO: 21

 

How do you start the ISA (IBM Support Assistant) Lite data collector tool for the Process Engine?

 

A.  Log into vwtool tool and use its startup command.

B.  Start it in the Process Engine Process Task Manager.

C.  Run the ISA Lite startup script from the command prompt.

D.  Edit and place the ISA Lite logging configuration file into the Process Engine server installation directory.

 

Answer: C :

 

 

 

QUESTION NO: 22

 

The Process Server appears to be taking longer than usual to return results to clients. You suspect that the slowness is related to the amount of work that the Process Server is being asked to do. How do you find out how much work the Process Server is doing?

 

A.  Use the Process Administrator

B.  Use the vwtool dump command

C.  Use the vwtool loadstatus command


D.  Use the Process Task Manager (PTM)

 

Answer: C :

 

 

 

QUESTION NO: 23

 

If you use vwtool to turn on or off the Process Engine tracing, when do the changes take effect?

 

A.  When you exit from vwtool

B.  When the Process Engine server is restarted

C.  Immediately after you complete the vwtool trace command

D.  After the Process Engine server's trace option polling interval has elapsed

 

Answer: C :

 

 

 

QUESTION NO: 24

 

How can you enable the IBM FileNet Process Engine 5.0 ISA (IBM Support Assistant) Data Collector tool?

 

A.  You can enable it in the Process Engine Process Task Manager.

B.  You can set logging options in a Process Engine configuration file.

C.  You can download and install the ISA Lite zip file from the IBM support site.

D.  It is automatically enabled with the installation of the Process Engine and no additional action is necessary.

 

Answer: C :

 

 

 

QUESTION NO: 25

 

Where is the Process Engine system log file, pesvr_system.log, located in a FileNet BPM 5.0 Process Engine server's file system?

 

A.  In the /tmp directory

B.  in the /fnsw/local/logs directory


C.  In the fnsw user's home directory

D.  In the <Process_Engine_installation_directory>/data/pesvr.

<Process_Engine_virtual_server_name>/logs directory

 

Answer: D :

 

 

 

QUESTION NO: 26

 

You know the logical name of a queue that you can see in the process user interfaces (e.g. you see the name of a work queue in Process Configuration Console). You need to know the physical name of the corresponding database table to help you interpret a pesvr_trace.log file containing database access traces from the Process Engine Server. How can you find the physical name of the table for a given logical queue name ?

 

A.  Turn on database tracing using vwtool

B.  Use vwtool config or queueconfig commands

C.  The physical name is the same as the logical name

D.  Use Process Configuration Console context menu to view the queue properties

 

Answer: B :

 

 

 

QUESTION NO: 27

 

How can you turn on Process Engine tracing?

 

A.  Use the vwtool trace command

B.  Use the vwspy process command

C.  Use the Process Task Manager (PTM)

D.  Use the trace button in Process Administrator

 

Answer: A :

 

 

 

QUESTION NO: 28

 

The P8 FileNet BPM Process Engine server ships with a sample log4j properties file in the

<process_engine_instance_name>/data directory that can be used to turn on client side logging


for the Process Engine client features. What is the name of the sample client log4j properties file?

 

A.  log4j.properties.sample

B.  fnlog4j.properties.sample

C.  clientlogging.properties.sample

D.  visualworkflow4j.properties.sample

 

Answer: B :

 

 

 

QUESTION NO: 29

 

You want to know the total number of work objects in an isolated region. You have access to the process engine server command line. Which command should you use?

 

A.  vwtool count command

B.  vwtool dump command

C.  vwtool config command

D.  vwtool loadstatus command

 

Answer: A :

 

 

 

QUESTION NO: 30

 

What is the difference between deleting work and terminating work in Process Administrator?

 

A.  Delete Work command processes the work item to completion while the Terminate Work command will send the work item to the Terminate map.

B.  Delete Work command ends processing of that work item while Terminate Work command sends the work to the Terminate map and immediately issues a second terminate command.

C.  Delete Work command locks the work item, a modification is made and the work item is dispatched to the next step while the Terminate Work item reassigns the work item to a different participant.

D.  Delete Work command sends the work to the Terminate map and immediately issues a second terminate command, while the Terminate Work command ends processing of that work item without sending it to the Terminate map.

 

Answer: D :


 

 

 

 

 

QUESTION NO: 31

 

Which of these commands is used to start the Process Engine Manager manually on an AIX environment?

 

A.  whatsup

B.  startpemgr

C.  vwtaskman

D.  initfnsw -y start

 

Answer: B :

 

 

 

QUESTION NO: 32

 

If you assign a group to the Configuration group in the Process Task Manager Security tab what can the members of the group do?

 

A.  The members of the group can modify Site Preferences.

B.  The members of the group can assign Access Roles to users and groups.

C.  The members of the group can modify any workflow map in Process Designer.

D.  The members of the group can make configuration changes to the workflow database.

 

Answer: D :

 

 

 

QUESTION NO: 33

 

What does initializing an isolated region in configuration console do?

 

A.  It recreates the entire workflow database.

B.  It creates the database views for the queues and rosters

C.  It adds more queues, rosters and event logs to the existing structure.

D.  It removes all of the current structures and data, and recreates the initial configuration.

 

Answer: D :


 

 

 

 

 

QUESTION NO: 34

 

What two tasks can you carry out using the Process Administrator tool? (Choose two.)

 

A.  Design workflow solutions.

B.  Edit workflow data and properties.

C.  Manage the workflow database configuration.

D.  Display statistical information about workflow.

E.  Assign users to or remove users from a workflow group.

 

Answer: B,E :

 

 

 

QUESTION NO: 35

 

What can the vwlog utility do?

 

A.  It can display the database views.

B.  It can display the load on the system.

C.  It can show the step processors that are configured in the workflow database.

D.  It can move log records and purge log data from the Process Engine database.

 

Answer: D :

 

 

 

QUESTION NO: 36

 

Which two actions in the Process Configuration Console do NOT require the commit changes action? (Choose two.)

 

A.  Initializing an isolated region

B.  Removing the workflow database

C.  Exposing a data field in the Event log

D.  Deleting a user-defined index on a roster.

E.  Setting the Jaas Login security on the CE_Operations Adapter tab.

 

Answer: A,B


:

 

 

 

 

QUESTION NO: 37

 

What are milestones in a workflow used for?

 

A.  To track which users access a workflow.

B.  To specify where a rule can be set in a workflow.

C.  To facilitate tracking of the progress of a workflow.

D.  To track what data field values have been entered in a workflow.

 

Answer: C :

 

 

 

QUESTION NO: 38

 

What is the most important thing to remember when changing the Service User and Process Engine Administrative group?

 

A.  Make sure all tracker items are processed before deleting the Service User.

B.  To delete the Service User before deleting the Process Engine Administrative group.

C.  Delete the Service User from the environment cache before deleting from the Directory Server.

D.  To not delete the existing user or group from your directory service until the change is complete.

 

Answer: D :

 

 

 

QUESTION NO: 39

 

What IBM product can be used to quickly create functional form-based user experiences for FileNet BPM?

 

A.  IBM eForms

B.  IBM DB2 Forms

C.  IBM Enterprise Records

D.  IBM Cognos Business Intelligence


Answer: A :

 

 

 

QUESTION NO: 40

 

Which of the following database is supported for Case Analyzer?

 

A.  DB2

B.  Oracle

C.  MySQL Server

D.  Microsoft SQL Server

 

Answer: D :

 

 

 

QUESTION NO: 41

 

In your role as a FileNet Workflow Developer you have been asked to design solution using FileNet BPM 5.1 which leverages JMS (Java Message Service) to update another system. Which of the following FileNet workflow system component would you leverage?

 

A.  The IBM Process Engine Web Services interface

B.  The system steps in a Process Engine workflow.

C.  The IBM Process Engine Java API on the Process Engine

D.  The Component Integrator triggered by a component step in the workflow map.

 

Answer: D :

 

 

 

QUESTION NO: 42

 

Which feature of the FileNet BPM 5.1 workflow system segregates data to help facilitate the logical separation of applications and lines of business?

 

A.  Objectstores

B.  Multi-tenancy

C.  Isolated regions

D.  Workflow queues


Answer: C :

 

 

 

QUESTION NO: 43

 

When you expose a new dimension on Case Analyzer for use in the Case Monitor project to be used with IBM Cognos Real-time Monitoring, which two workbench objects need to be created? (Choose two.)

 

A.  a new View

B.  a new Cube

C.  a new Dimension

D.  a new Data Stream

E.  a new Lookup Table

 

Answer: C,E :

 

 

 

QUESTION NO: 44

 

In order to prevent Oracle listener backlog full conditions on the Process Engine database, which parameter in the listener.ora file should have its value increased?

 

A.  QUEUESIZE

B.  BATCHLENGTH

C.  LISTENER_SIZE

D.  OPEN_SESSIONS

 

Answer: A :

 

 

 

QUESTION NO: 45

 

Each isolated region caches workspaces. By default, the cache holds 10 workspaces, which is enough in most situations. You can monitor the cache size. Which vwtool command can you use to monitor the cache size?

 

A.  trace


B.  memory

C.  logquery

D.  loadstatus

 

Answer: D :

 

 

 

QUESTION NO: 46

 

How do you obtain the IBM FileNet Case Monitor Project files?

 

A.  They are installed as part of the Case Analyzer Client Installation.

B.  They are installed as part of the Case Analyzer Server Installation.

C.  They are installed as part of the Process Engine Server Installation.

D.  They are installed as part of the Cognos Realtime Monitor Installation.

 

Answer: B :

 

 

 

QUESTION NO: 47

 

To minimize out of memory errors during high volume Component Manager activities, what utility should be used to adjust the Java Virtual Machine (JVM) heap size?

 

A.  vwtool

B.  P8 Process Task Manager

C.  Process Configuration Console

D.  FileNet Enterprise Manager (FEM)

 

Answer: B :

 

 

 

QUESTION NO: 48

 

The Process Engine uses DB2 9.7. The DB2_WORKLOAD parameter can be configured to avoid unnecessary locking. What should its value be?

 

A.  IBM


B.  FILENET_CM

C.  FILENET_IBM

D.  FILENET_BPM

 

Answer: B :

 

 

 

QUESTION NO: 49

 

When changes rarely occur on the Directory Service, what parameter should we set to disable the automatic background refreshing of the environment records?

 

A.  vwsynch

B.  CacheSyncInterval

C.  Cached Entry Timeout

D.  Directory Service Refresh Interval

 

Answer: C :

 

 

 

QUESTION NO: 50

 

Given the following scenario: The com.ibm.CORBA.ConnectionMultiplicity custom property in WebSphere causes a Process Engine ORB client to multiplex communications to each ORB server. Each ORB server cannot have more than n concurrent sockets at any one time, as defined by this parameter. The default value is 1. Increasing this value might increase throughput under certain circumstances, particularly when a long-running, multithreaded process is acting as a client. Which value is a good setting for the com.ibm.CORBA.ConnectionMultiplicity property?

 

A. 100

B.  number of concurrent threads

C.  maximum number of JMS connections

D.  maximum number of JDBC connections

 

Answer: B :

 

 

 

QUESTION NO: 51


Which test confirms connectivity to the FileNet P8 Process Engine?

 

A.  A connection point exists in FileNet Enterprise Manager.

B.  The Process Engine Process Task Manager can be started.

C.  In Workplace or WorkplaceXT, you can open the Search Designer.

D.  In Workplace or WorkplaceXT, you can open the Process Designer.

 

Answer: D :

 

 

 

QUESTION NO: 52

 

How do you have to configure the Process Engine ports when you are setting up multiple virtual servers on the same machine?

 

A.  The main ports have to be the same for all virtual servers.

B.  All the main ports and naming service ports must be different.

C.  The naming service ports have to be the same for all virtual servers.

D.  All main ports have to be the same, and all service ports have to be the same for all the virtual servers.

 

Answer: B :

 

 

 

QUESTION NO: 53

 

Which tool can you use to configure the step processors for FileNet eForms for P8?

 

A.  FileNet Enterprise Manager.

B.  Process Configuration Console.

C.  Process Engine Process Task Manager.

D.  Workplace or WorkplaceXT Site Preferences.

 

Answer: B :

 

 

 

QUESTION NO: 54


Which tool can you use to confirm that an isolated region has been initialized for a Process Engine virtual server?

 

A.  vwtool

B.  vwmsg

C.  Filenet Enterprise Manager

D.  Process Engine Process Task Manager

 

Answer: A :

 

 

 

QUESTION NO: 55

 

What configuration steps do you have to take to enable Process Engine clients to communicate with the Process Engine server?

 

A.  First, in Filenet Enterprise Manager, create an initial site. Second, create a Process Engine connection point.

B.  First, in Filenet Enterprise Manager, create a Process Engine Region id. Second, create a Process Engine connection point.

C.  First, in Process Task Manager, create an isolated region and a region key. Second, in Filenet Enterprise Manager, create an initial site, and then a Process Engine connection point.

D.  First, in Filenet Enterprise Manager, create a Process Engine Region id and Process Engine connection point. Second, in Process Task Manager, create an isolated region, and associate it with the Process Engine connection point.

 

Answer: D :

 

 

 

QUESTION NO: 56

 

While installing the IBM P8 Process Engine, how do you specify which users can make workflow configuration changes in the Process Engine database?

 

A.  Add users to the Process Engine configuration group.

B.  Add users to a Process Engine workflow group using Process Designer.

C.  Make sure the users have administrative rights in the operating system.

D.  Add the Process Engine database user to the database administrative group.

 

Answer: A


:

 

 

 

 

QUESTION NO: 57

 

How can you add a new Process Engine instance to a Process Engine farm?

 

A.  Define the new instance with the vwtool on only one of the Process Engine farm nodes.

B.  Define the new instance with the vwtool on all the Process Engine nodes in the Process Engine farm.

C.  Define the new instance in the Process Task Manager on only one of the Process Engine farm nodes.

D.  Define the new instance in the Process Task Manager on all the Process Engine nodes in the Process Engine farm.

 

Answer: C :

 

 

 

QUESTION NO: 58

 

You are configuring a hardware load balancer to monitor the availability of nodes in a Process Engine server farm. The load balancer can test the availability of the nodes by pinging the Process Engine IOR ping page at certain intervals and wait for a certain timeout period for a response. You have to specify the interval and the timeout period. The general format of the Process Engine IOR ping page is http://[IP address]:32776/IOR/ping. Which configuration will ping a specific Process Engine node with the least amount of risk of a Process Engine overload?

 

A.  Process Engine ping URL: http://[PE farm virtual IP address]:32776/IOR/ping Interval: 1 second

Timeout: 3 seconds

B.  Process Engine ping URL: http://[PE farm virtual IP address]:32776/IOR/ping Interval: 30 seconds

Timeout: 91 seconds

C.  Process Engine ping URL: http://[PE node physical IP address]:32776/IOR/ping Interval: 1 second

Timeout: 3 seconds

D.  Process Engine ping URL: http://[PE node physical IP address]:32776/IOR/ping Interval: 30 seconds

Timeout: 91 seconds

 

Answer: D :


 

 

 

 

 

QUESTION NO: 59

 

Which software components must be co-located with the IBM P8 Process Engine when you install the Process Engine with the Composite Platform Installation Tool?

 

A.  Process Engine and Process Engine Client application.

B.  The IBM P8 Process Engine and IBM Enterprise Records.

C.  All P8 components and the IBM P8 Process Engine database.

D.  The Composite Platform Installation Tool does not install the IBM P8 Process Engine.

 

Answer: C :

 

 

 

QUESTION NO: 60

 

When installing FileNet P8 Case Analyzer, where do you enable Case Analyzer functionality?

 

A.  Process Configuration Console.

B.  Case Analyzer Process Task Manager.

C.  Workplace or WorkplaceXT Site Preferences.

D.  The Server Connections tab in the Process Engine Process Task Manager.

 

Answer: A :

 

 

 

QUESTION NO: 61

 

When configuring FileNet P8 Process Simulator, where do you specify the location of the Process Simulator within the FileNet P8 system?

 

A.  Process Configuration Console.

B.  Case Analyzer Process Task Manager.

C.  Workplace or WorkplaceXT Site Preferences.

D.  The Server Connections tab in the Process Engine Process Task Manager.

 

Answer: C :


 

 

 

Topic 2, Volume B

 

 

QUESTION NO: 62

 

In which directory are the Process Engine configuration files located?

 

A.  fnsw/bin

B.  <install_directory>/k2/common/

C.  <Process_Engine_installation_directory>/data

D.  <Content_Engine_installation_directory>/ContentEngine

 

Answer: C :

 

 

 

QUESTION NO: 63

 

Why is it important to purge Process Engine event log information from the database on a regular basis?

 

A.  To prevent the build up of logon- logoff event types

B.  Statistical data can become meaningless if not maintained.

C.  Event logs can grow quickly and negatively impact system performance.

D.  To help Case Analyzer obtain the Process Engine events from the Event log.

 

Answer: C :

 

 

 

QUESTION NO: 64

 

Which of these commands is used to stop the Process Engine Manager manually on an AIX environment?

 

A.  killfnsw

B.  stoppemgr

C.  vwtaskman

D.  initfnsw -y stop

 

Answer: B


:

 

 

 

 

QUESTION NO: 65

 

What does the CacheSyncInterval do when set in the Process Task Manager?

 

A.  Sets the timeout value for requests from Process Engine to a database.

B.  Sets the time interval for refreshing the Process Engine environment records.

C.  Sets the interval for refreshing Process Engine user and group cache entries.

D.  Synchronizes the Process Engine environment record email addresses with the email addresses in the directory server.

 

Answer: B :

 

 

 

QUESTION NO: 66

 

Why is it necessary to specify the Content Engine server in the Process Task Manager Security tab?

 

A.  To enable email notification to work.

B.  So that the Process engine can change the Service User.

C.  So that the Process Engine can have access to the Application Engine.

D.  The Process Engine relies on the Content Engine for authentication and Directory Services access.

 

Answer: D :

 

 

 

QUESTION NO: 67

 

How can the database row size be exceeded in a Process Engine database?

 

A.  Creating numerous rules.

B.  Transferring many workflows.

C.  Creating many custom Component Queues.

D.  Exposing many data fields in the queues, rosters and logs.


Answer: D :

 

 

 

QUESTION NO: 68

 

Which access role do you need to be a member of to be able to view the Process Administrator link in the list of Admin tools in Workplace or WorkplaceXT?

 

A.  PSConsole

B.  PWDesigner

C.  PWConfiguration

D.  PWAdministration

 

Answer: D :

 

 

 

QUESTION NO: 69

 

Where do you reset the password for the Process Engine database user in the Process Task Manager?

 

A.  Security tab

B.  Database tab

C.  Advanced tab

D.  Server Connections tab

 

Answer: B :

 

 

 

QUESTION NO: 70

 

A project manager asked you to create a new Process Engine server on the same machine where the default Process Engine server has already been running. How can you fulfill the project manager's request?

 

A.  Use the peinit tool to create a new virtual server.

B.  Use the vwtaskman script to create a new virtual server.

C.  Copy the directories and files of an existing instance to a new location, and use the Process


Task Manager to configure virtual server.

D.  Inform the project manager that his request cannot be fulfilled, since the Process Engine does not support multiple server instances on the

same machine.

 

Answer: B :

 

 

 

QUESTION NO: 71

 

You are installing the IBM P8 Process Engine on a Microsoft Windows server, and you do not have local administrative user rights to the server. How can the installation of IBM P8 Process Engine be completed?

 

A.  The installation cannot be completed. The Process Engine installation user account requires local administrator rights on Windows.

B.  You can run a silent installation of the Process Engine, because it does not require local administrator rights to complete the installation of the

Process Engine.

C.  You can configure minimum required file permissions for the Process Engine installation user account and install the Process Engine. The

installation will complete successfully and no more actions are necessary.

D.  You can configure minimum required file permissions for the Process Engine installation user account and install the Process Engine. After

that, you can ask a user with local administrator rights on Windows to run a script to edit the registry and create the Process Engine Manager

service to complete the installation.

 

Answer: D :

 

 

 

QUESTION NO: 72

 

How do you keep the Case Analyzer software level compatible with the P8 FileNet BPM core components?

 

A.  You only have to install the Process Engine client files on the Case Analyzer server.

B.  You have to install the Process Engine and the Content Engine client files on the Case Analyzer server.

C.  You have to install the Process Engine and the Content Engine client files on the Case Analyzer server and Case Analyzer clients.


D.  You have to install the Process Engine and the Content Engine client files on the Case Analyzer server, and you have to install the Case

Analyzer client files on the Process Engine and the Content Engine servers.

 

Answer: B :

 

 

 

QUESTION NO: 73

 

Which log file(s) can you review to confirm a successful Process Engine installation?

 

A.  The Process Engine elog file.

B.  The Process Engine vwtrace file.

C.  The Process Engine installation log file.

D.  The Process Engine installation log file and the log4j trace file enabled for the Process Engine installation.

 

Answer: C :

 

 

 

QUESTION NO: 74

 

Which test confirms Filenet P8 Process Engine functionality?

 

A.  In Workplace or WorkplaceXT, you can browse an object store.

B.  In Workplace or WorkplaceXT, you can access a P8 user's Inbox.

C.  In Workplace or WorkplaceXT, you can open the Search Designer.

D.  A connection point can be configured in Filenet Enterprise Manager.

 

Answer: B :

 

 

 

QUESTION NO: 75

 

When creating a Region id for a farmed Process Engine, what property do you have to specify for the Process Engine Server DNS name in Filenet Enterprise Manager?

 

A.  The Process Engine Server Virtual Host name.


B.  The Process Engine database server host name.

C.  The host name of one of the Process Engine server nodes.

D.  The IP address of one of the Process Engine server nodes.

 

Answer: A :

 

 

 

QUESTION NO: 76

 

Which configuration is a working Process Engine farm?

 

A.  Two load-balanced Process Engine nodes using two different databases.

B.  Two stand-alone Process Engine servers using the same database and different isolated regions.

C.  Two load-balanced Process Engine nodes using the same database and different database user accounts.

D.  Two load-balanced Process Engine nodes using the same database and the same database user accounts.

 

Answer: D :

 

 

 

QUESTION NO: 77

 

Which series of steps do you have to take to create and initialize a Process Engine isolated region?

 

A.  In Process Task Manager, create the isolated region. Then in FileNet Enterprise Manager, create an initial site and assign a connection point

name. Then in Process Configuration Console, connect to the isolated region and initialize it.

B.  In Process Task Manager, create the isolated region. Then in Filenet Enterprise Manager, create a connection point name. Then specify the

connection point in Workplace Site Preferences. Then in Process Configuration Console, connect to the isolated region and initialize it.

C.  In FileNet Enterprise Manager, create a Region id, assign a connection point name, and configure a region administrator user. Then specify

the connection point in Workplace Site Preferences. Then in Process Configuration Console, connect to the isolated region and initialize it.

D.  In FileNet Enterprise Manager, create a Region id and assign a connection point name. Then in Process Task Manager, create the isolated

region, and associate it with the Process Engine connection point. Then specify the connection


point in Workplace Site Preferences. Then in

Process Configuration Console, connect to the isolated region and initialize it.

 

Answer: D :

 

 

 

QUESTION NO: 78

 

When installing FileNet eForms for P8, where do you enable P8 eForms functionality?

 

A.  FileNet Enterprise Manager.

B.  Process Configuration Console.

C.  Process Engine Process Task Manager.

D.  Workplace or WorkplaceXT Site Preferences.

 

Answer: D :

 

 

 

QUESTION NO: 79

 

Which FileNet P8 Process Simulator configuration is supported?

 

A.  Storing both production data and simulation data in the same database.

B.  Using a single IBM FileNet Case Analyzer instance for both production and simulation activity.

C.  Collocating Process Simulator and Case Analyzer servers where Case Analyzer is used in a simulation context.

D.  Collocating Process Simulator and Case Analyzer servers where Case Analyzer is used in a production context.

 

Answer: C :

 

 

 

QUESTION NO: 80

 

When installing the IBM P8 Process Engine with the Composite Platform Installation Tool (CPIT), which of the following software components are a prerequisite and have to be installed before running CPIT on the server?


A.  The database software for the IBM P8 Process Engine database only.

B.  The Composite Platform Installation Tool does not install the IBM P8 Process Engine.

C.  The database software for the IBM P8 Process Engine database and the IBM P8 Content Engine.

D.  The CPIT requires a server with no existing IBM FileNet P8 Platform components or middleware software installations.

 

Answer: D :

 

 

 

QUESTION NO: 81

 

Which FileNet Process Engine region objects can be exported from development to other environments?

 

A.  Work Queues, Component Queues, User Queues, Rosters, and Workflow policies

B.  Work Queues, Component Queues, User Queues, Rosters, and Document classes

C.  Work Queues, Component Queues, User Queues, Rosters, Event logs and Application Spaces

D.  Work Queues, Component Queues, User Queues, Rosters, Property Templates and Application Spaces

 

Answer: C :

 

 

 

QUESTION NO: 82

 

Which two out of the box step processors implementations are available for FileNet BPM applications? (Choose two.)

 

A.  C# Step processor

B.  .Net Step processor

C.  XML Step processor

D.  Java Step processor

E.  HTML Step processor

 

Answer: D,E :


QUESTION NO: 83

 

A group of people at a business unit is responsible to process workflows. They all have to be able to look at the work items received by the business unit. In order to complete the processing of the work items, the business processes require that at least one person in the unit review workflow data. It is sufficient that one person completes the processing of the work items, although all workers in the business unit may have to view them. How many workflow queues in a workflow map does the business unit need at a minimum?

 

A.  The business unit needs one work queue.

B.  Each person in the business unit needs one personal inbox.

C.  Two: one for incoming work items and one for work items being reviewed.

D.  Each person in the business unit needs one personal inbox and the business unit needs a work queue.

 

Answer: A :

 

 

 

QUESTION NO: 84

 

Which condition is required for a workflow that is exposed as a service to be launched automatically in response to an invoke system function?

 

A.  The Receive system function can only be in a submap and not the main map

B.  The Receive system function should be accompanied by a Reply system function.

C.  The workflow that is exposed as a service must be configured to auto launch using Workflow Subscriptions

D.  The system step with the Receive system function or Receive step must be immediately after the Launch step

 

Answer: D :

 

 

 

QUESTION NO: 85

 

Which Web Service step is NOT available on the Web Services Palette in FileNet Process Designer?

 

A.  Call

B.  Reply

C.  Invoke


D.  Receive

 

Answer: A :

 

 

 

QUESTION NO: 86

 

Which type of workflow participant provides flexibility of runtime assignment along with direct control over who is allowed to process the work?

 

A.  F_Originator

B.  Work Queue

C.  Workflow Group

D.  User (LDAP User)

 

Answer: C :

 

 

 

QUESTION NO: 87

 

A workflow step in a Process Engine workflow has multiple participants assigned. Which participant has to complete a work item at that workflow step before the work item is dispatched to the next workflow step?

 

A.  All participants.

B.  The majority of participants.

C.  Any participant who opens the work item.

D.  The first participant who opens the work item.

 

Answer: A :

 

 

 

QUESTION NO: 88

 

What are the two supported message types for a workflow exposed as a web service? (Choose two.)

 

A.  IOR


B.  XML

C.  Text

D.  JSON

E.  Parameter

 

Answer: B,E :

 

 

 

QUESTION NO: 89

 

If your solution contains workflow subscriptions, what must you remember to do when transferring a workflow into production?

 

A.  Check in a new version of the workflow subscription.

B.  Update the workflow subscription to point to the new version of the workflow.

C.  Always transfer the workflow and workflow subscription in the same package.

D.  Before transferring the workflow ensure all workflow subscriptions point to a 'symbolic' version label.

 

Answer: B :

 

 

 

QUESTION NO: 90

 

What is the purpose of the Java Authentication and Authorization Service (JAAS) when developing Java modules which will be implemented as Component Steps?

 

A.  Provides Single Sign On (SSO) functionality between the Process Engine and Content Engine.

B.  To provide an authentication and authorization service into FileNet P8 (Process Engine & Content Engine).

C.  To provide an authentication and authorization service for systems which the java component must access.

D.  Mandatory requirement for processing work items in the component queue. Without JAAS the component would not be able to dispatch work

items.

 

Answer: C :


QUESTION NO: 91

 

You have created a multi-participant step in a workflow with two responses 'Approve' and 'Reject'. The business requirement states that the workflow should only continue to the approval flow if the majority of the performer approves the task. Which of the following route logic could you use to test this?

 

A.  ALL(Approve)

B.  ANY(Approve)

C.  COUNT(Reject) > COUNT(Approve)

D.  COUNT(Approve) > COUNT(Reject)

 

Answer: D :

 

 

 

QUESTION NO: 92

 

A developer has created a component which connects to the process engine and content engine to generate documents. They have provided you with the following files:

 


 

 

Given the following architecture of the Production Environment and assuming the Isolated Region pre-exists:

 



Where must you deploy each of the files for the new Java component to function correctly?

 


 

A.  Option A

B.  Option B

C.  Option C

D.  Option D

 

Answer: A :

 

 

 

QUESTION NO: 93

 

Which utility can you use to run the flushusercache command?

 

A.  vwtool

B.  FileNet Enterprise Manager

C.  Process Configuration Console

D.  Process Engine Process Task Manager

 

Answer: A :

 

 

 

QUESTION NO: 94

 

A standalone process engine client is accessing 10 concurrent threads to the process engine. What should be the minimum sizing to the JVM argument: filenet.pe.peorb.pool.min?


A.  0

B.  1

C.  -1

D.  10

 

Answer: D :

 

 

 

QUESTION NO: 95

 

Which utility can be used to increase the size of the workspace cache by specifying the WorkSpaceCacheSize parameter value?

 

A.  vwtool

B.  FileNet Enterprise Manager

C.  Process Configuration Console

D.  Process Engine Process Task Manager

 

Answer: D :

 

 

 

QUESTION NO: 96

 

Which component links the Process Engine and the IBM?WebSphere Business Monitor server?

 

A.  JMS Component Adapter

B.  Java Component Adapter

C.  WebService Component Adapter

D.  Common Based Event (CBE) Adapter

 

Answer: D :

 

 

 

QUESTION NO: 97

 

Where do the IBM FileNet Case Monitor dashboards get their data from?

 

A.  Process Engine event logs


B.  Content Engine Solution folders

C.  FileNet System Monitor log files

D.  Active cases, tasks, work Items, workflows

 

Answer: D :

 

 

 

QUESTION NO: 98

 

The Process Engine is using a DB2 database. DB2 has been upgraded to 9.7. Which task should be executed to take advantage of the new LOB inlining feature?

 

A.  TRUNCATE TABLE

B.  COMPRESS LOB columns

C.  COMPUTE STATISTICS on the LOB columns

D.  REORG TABLE with the LONGLOBDATA option

 

Answer: D :

 

 

 

QUESTION NO: 99

 

To enable the WebSphere Java Virtual Machine (JVM) to read the entire Object Request Broker (ORB) message, before attempting to dispatch a work item, what should the com.ibm.CORBA.FragmentSize parameter be set to?

 

A.  1

B.  0

C. 4096

D. 1,048,576

 

Answer: B :

 

 

 

QUESTION NO: 100

 

End users are complaining that the Process Engine tasks are running slow. You suspect memory and disk I/O problems on the Process Engine in the UNIX environment. Which two tools can be run to gather memory and disk information? (Choose two.)


A.  ls

B.  ps

C.  iostat

D.  vmstat

E.  netstat

 

Answer: C,D :

 

 

 

QUESTION NO: 101

 

What P8 component can FileNet BPM be integrated with to perform what-if scenarios that would assist in streamlining business processes?

 

A.  IBM Case Monitor

B.  IBM Case Analyzer

C.  IBM Process Simulator

D.  IBM Business Process Framework

 

Answer: C :

 

 

 

QUESTION NO: 102

 

Which two of the following platforms are NOT supported in FileNet BPM 5.1? (Choose two.)

 

A.  AIX 6.1

B.  Ubuntu Linux

C.  Redhat Enterprise Linux 6.x

D.  Microsoft Windows Server 2008

E.  Microsoft Windows Server 2003

 

Answer: B,E :

 

 

 

QUESTION NO: 103

 

Your organization has IBM Case Manager (ICM) deployed to manage credit card applications and the business users has requested a weekly report and chart to be generated which includes task


completion times for platinum customers. Which one of the following components would be used to assist in the generation of the report?

 

A.  IBM System Dashboard

B.  IBM FileNet Case Monitor

C.  IBM FileNet Case Analyzer

D.  IBM FileNet Process Simulator

 

Answer: C :

 

 

 

QUESTION NO: 104

 

Which requirement is mandatory if you are using Process Engine as part of an IBM Case Manager installation?

 

A.  The Process Engine and Application Engine must reside on the same server(s).

B.  The Isolated Region and target Object Store must be located in the same database.

C.  The Process Engine and Application Engine must run on the same operating system.

D.  The Process Engine can only be used for the ICM application (not general purpose applications).

 

Answer: B :

 

 

 

QUESTION NO: 105

 

Using vwtool interactively, how do you turn off all tracing?

 

A.  Use the resetalltraces command.

B.  Quit vwtool, all tracing will be turned off on exit.

C.  Enter <Ctrl+T> followed immediately by <Ctrl+X>.

D.  Enter the trace command with no parameters, and enter "n" at the <trace_destination> prompts.

 

Answer: D :


QUESTION NO: 106

 

What is the function of the IBM FileNet Process Engine 5.0 ISA (IBM Support Assistant) Data Collector tool?

 

A.  It enables logging for the Process Engine.

B.  It automates the collection of basic diagnostic information.

C.  It generates reports based on statistical information for extensive workflow analysis.

D.  It collects and analyzes Process Engine event log information to diagnose problems.

 

Answer: B :

 

 

 

QUESTION NO: 107

 

The size of the event logging table is causing concern for a customer. The event logging table contains a very large number of rows and the customer would like to remove old records from the table. Which tool should you use to purge records from the event logging table(s)?

 

A.  vwlog

B.  vwtool

C.  Process Administrator

D.  Database tools, for example SQLplus

 

Answer: A :

 

 

 

QUESTION NO: 108

 

A workflow was launched with no users in the F_Trackers workflow group field. You want to use the Process Tracker application to see how the workflow executed. How do you launch the Process Tracker to view the work item?

 

A.  Start Process Tracker from Process designer

B.  You cannot use Process Tracker because there are no users in the in the F_Trackers workflow group.

C.  Find the work object number using vwtool, then pass that number to the vwtracker command line program.

D.  Find the workflow using the Process Administrator and from the context menu of the work item open it in Tracker


Answer: D :

 

 

 

QUESTION NO: 109

 

You are using vwtool to examine a Process Engine Isolated region. You want to capture the output from your interactive vwtool session in a text file. Which vwtool command should you use to save the output of vwtool to a file?

 

A.  the cbe command

B.  the config command

C.  the hardcopy command

D.  the pagebreak command

 

Answer: C :

 

 

 

QUESTION NO: 110

 

A work item has malfunctioned and is now in the Conductor queue. You want to find out what caused the Process Engine to send the work item to the Conductor queue. Which two techniques can help you to find out what error occurred and what step the error occurred on? (Choose two.)

 

A.  Use vwspy to examine the work item stack.

B.  Use Process Task Manager (PTM) to examine the history of the malfunctioning process.

C.  Use vwtool to do a wobquery for the work item and look at the Stack and F_LastErrorText.

D.  Open the workflow definition with Process Designer and figure out how an exception might occur.

E.  Use Process Administrator to query for the work item, then use the work item context menu to view information stack.

 

Answer: C,E :

 

 

 

QUESTION NO: 111

 

When you use vwtool to turn on tracing, what is the name of the trace file produced by the Process Engine server process?


A.  vwtrace

B.  tracefile.txt

C. el20111024

D. pesvr_trace.log

 

Answer: D :

 

 

 

QUESTION NO: 112

 

When using a file to turn on or off Process Engine server tracing, when do changes made to the file take effect?

 

A.  When the file is saved

B.  When the file is renamed

C.  When permissions on the file are changed

D.  When the Process Engine server is started

 

Answer: D :

 

 

 

QUESTION NO: 113

 

You look at the pesvr_system.log and notice that it contains exceptions with java stack dumps. Why do java stacks appear in the server log?

 

A.  Client java API code sometimes records client stacks in the server log file

B.  For security reasons java stacks will never appear in the pesvr_system.log

C.  Stacks are occasionally recorded in the pesvr_system.log as an indication that the Process Engine server is doing work.

D.  The Process Engine server has been ported to java and exceptions are recorded along with a stack to show the server context of the exception.

 

Answer: D :

 

 

 

QUESTION NO: 114

 

What is required for data collection with the ISA (IBM Support Assistant) tool on the Process


Engine?

 

A.  Process Engine must be stopped.

B.  Process Engine must be installed on Windows or Linux.

C.  ISA Lite has to be installed on the Process Engine server.

D.  The ISA (IBM Support Assistant) Workbench has to be installed on the Process Engine server.

 

Answer: C :

 

 

 

QUESTION NO: 115

 

You are installing a Process Engine server that will be a part of an IBM Case Manager installation. Which tool can you use to establish the connection between an object store and an isolated region for IBM Case Manager?

 

A.  peinit

B.  vwtool

C.  Process Task Manager

D.  Filenet Enterprise Manager

 

Answer: A :

 

 

 

QUESTION NO: 116

 

In order to be able to use P8 eForms and Lotus Forms in a workflow, what needs to be configured?

 

A.  A Document Policy

B.  P8 step processors for IBM FileNet eForms

C.  F_StepComplete cell needs to exist on the form.

D.  A data field in a workflow, mapped to a cell on the form.

 

Answer: B :

 

 

 

QUESTION NO: 117


Which two component queues are configured by IBM Enterprise Records? (Choose two.)

 

A.  RM_Operations

B.  RM_Input_Queue

C.  RM_Workflow_Util

D.  RM_Record_Queue

E.  RM_Record_Component

 

Answer: A,C :

 

 

 

QUESTION NO: 118

 

You are installing a Process Engine server that will be a part of an IBM Case Manager installation. What is a requirement for the Process Engine installation?

 

A.  The Process Engine can only have one isolated region.

B.  IBM Case Manager and Process Engine must be on the same server.

C.  The Content Engine and Process Engine must be on the same server.

D.  You must use the same database account for both the Content Engine and Process Engine.

 

Answer: D :

 

 

 

QUESTION NO: 119

 

There is a need to manipulate documents in an IBM FileNet Content Engine repository from a workflow. How would you accomplish this task?

 

A.  Use Workflow Subscriptions

B.  Use an Assign system function

C.  Use Content Extended Operations via the CE_Operations Component Queue

D.  Use a DBExecute System Instruction to communicate to the repository database directly

 

Answer: C :

 

 

 

QUESTION NO: 120


There is a need to automate the processing of a workflow step using a java operation defined by an external entity. How would you achieve this?

 

A.  By using Workbaskets

B.  By using a Workflow Subscription

C.  By using a Java Component Queue

D.  By using an Assign System Instruction

 

Answer: C :

 

 

 

QUESTION NO: 121

 

When creating form policies to integrate eForms into Workplace, which policy is used to define the relationship between form template, workflow definition and form data entry template?

 

A.  Security Policy

B.  Template Policy

C.  Workflow Policy

D.  Document Policy

 

Answer: C :

 

 

 

QUESTION NO: 122

 

What is an example of a valid name for an index that you create in process Configuration Console?

 

A.  F-abc

B.  Fabc_1

C.  F_abc1

D.  VWVabc 1

 

Answer: B