filenet tutorials

21
Interview Questions depends on ur profile, the area on which u have worked on.....There are few basic qustions, which I got in last 3 Yrs of Interviews :-) 1. What is ECM? 2. What is FIleNet and it's components (AE, CE, PE) 3. How AE n CE or CE n PE communicate with each others? 4. Which protocol got used while communication? 5. Whih version of FileNt u have used? 6. Diff b/w 3.5 and 4.0? 7. Diff b/w Custom Object, n FOlder and Document? 8. Descibe Work Item, Workflow definitions, Queue, Roster and WorkFlow? 9. Document Versioning means? Superseedd means..? 10. Other than this, they can ask for CE/PE APIs? 11. If you have worked on Process Designer, then How to create workFlows, How to route them, where to put security, where to add attachment etc.......... Difference between FileNet 3.5 and 4.5 a) FileNet 3.5 is a COM based application. FileNet 4.5 is java based application. b) The Routers in FileNet 3.5 is replaced by Connection points in FileNet 4.5. Therefore, the routers are no longer started and stopped as a service. c) The Process Engine 4.5 does not have direct communication with the LDAP unlike 3.5 environment. d) All the LDAP communication is via the Content Engine in FileNet 4.5.

Upload: gurram-rajesh-kumar

Post on 27-Oct-2014

286 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Filenet Tutorials

Interview Questions depends on ur profile, the area on which u have worked on.....There are few basic qustions, which I got in last 3 Yrs of Interviews :-)

1. What is ECM?2. What is FIleNet and it's components (AE, CE, PE)3. How AE n CE or CE n PE communicate with each others?4. Which protocol got used while communication?5. Whih version of FileNt u have used? 6. Diff b/w 3.5 and 4.0?7. Diff b/w Custom Object, n FOlder and Document?8. Descibe Work Item, Workflow definitions, Queue, Roster and WorkFlow?9. Document Versioning means? Superseedd means..?10. Other than this, they can ask for CE/PE APIs?11. If you have worked on Process Designer, then How to create workFlows, How to route them, where to put security, where to add attachment etc..........

Difference between FileNet 3.5 and 4.5a) FileNet 3.5 is a COM based application. FileNet 4.5 is java based application.

b) The Routers in FileNet 3.5 is replaced by Connection points in FileNet 4.5. Therefore, the routers are no longer started and stopped as a service.

c) The Process Engine 4.5 does not have direct communication with the LDAP unlike 3.5 environment.

d) All the LDAP communication is via the Content Engine in FileNet 4.5.

e) FileNet 4.5 global configuration is stored on a Database unlike the FileNet 3.5 where it is stored on a encrypted file “sysinit.dat”

f) FileNet 3.5 relied heavily on passing username and passwords for authentication to both the CE and PE. Due to the architectural changes to the CE 4.5, a much greater set of authentication options are now available. The two authentication standards that are now supported include the Java Authentication and Authorization Service (JAAS) and its 

FileNet RM (Record Manager) related informations

Page 2: Filenet Tutorials

* A document is a file which you'll create/save/retrieve/update. Also you can replac the previous version with new updated version.

* A record is a reference to information and provides metadata to manage the information. Records can electronic or physical (i.e. a document stored in CE or a physical book).

* A document which is added to an IBM FileNet P8 content repository, but it is not yet declared as a record is called as ‘document’, not a record. As soon as the document is declared as a record, we consider the document a record.

* Document objects are stored in the Records-enabled content Object Store (ROS) and the corresponding record objects are stored in the File Plan Object Store (FPOS).

* There is no limit on number of document stored on Records Category. The 'Record' is simply a custom object stored in database. 

* A record is a reference to information and provides metadata to manage the information. Records can electronic or physical (i.e. a document stored in CE or a physical book).

* An electronic record points to an electronic document, such as a Content Engine (CE) document or an email message.

* A physical record, sometimes referred to as a marker, is metadata about a physical document or other object, such as paper records, tape, or microfilm

Difference between Workplace and Workplace XT?Workplace XT comes with FileNet P8 4.0 onwards by default while workplace comes with FNet 3.5

Workplace XT is faster, user friendly and has features like drag and drop to add documents.

IBM launched Workplace XT to compete with documentum and Alfresco, who has similar web interfaces.

While most of the functionalities of Workplace XT are similar to the Workplace, it cannot be considered as product upgrade as Workplace XT is built using Java Server Faces (JSF) technology. 

Workplace XT has better folder structure and nicer way to organize favorites. 

Workplace XT does not provide a development environment for customization; however, Workplace continues to provide the Workplace Application Toolkit and related development tools for Workplace customization.

client side validation in BPF

Page 3: Filenet Tutorials

Use EventHandler.js for client side validation.

file is available in the BPF war file and here is the sample code:

Suppose we need to put validation for employee salary

Step 1: make a eventHandler and call oneBeforeAction on that handler

Step 2: eventHandlers.onBeforeAction = function(resName, resId) { if(resName=="ABC"){ if (currentCase != null ) { var employeeSalary=0; employeeSalary = parseInt(Salary.value); if(employeeSalary < 10000){ alert("Salary too less !"); return false; } }}return true;}

Create Object Store in FileNet using FEM1) Must : Create GCD database in separate table space (GLOBAL database)

2) Try to get separate table space for object store DB. 

3) Steps : Create the oracle user, configure the XA and Non-XA data source for that user under WAS , and test the connection 

4) Then move on to FEM and create object store by supplying correct data source name. This is applicable to GCD too. 

5) If the Object store creation wizard fails, make sure you request DBA to drop /clean that table space and then try. 

6) make sure you create a folder called jars on CE server and drop the correct version jdbc driver file and update the WAS env

Page 4: Filenet Tutorials

What is BPF?FileNet BPF provides a configurable framework for rapid development of BPM application. BPF Web Application, an Ajax based application provides a user friendly interface to the business users.

Along with the pre defined screens and functionality, FileNet BPF provides a framework to develop and customize the application to meet business requirement.

FileNet BPF has two components:

1. BPF Web Application: Deployed on a J2EE server, the BPF Web Application is an out-of-the-box, customizable, and configurable portal for BPM applications, and a UI container with relevant components for BPF applications. 2. BPF Explorer: BPF Explorer is a Microsoft Management Console (MMC)-based

What is ISRA (Image Services Resource Adaptor)?The Image Services Resource Adaptor (ISRA) is a set of Java classes for interacting with IBM FileNetImage Services. These classes conform to the J2EE Connector Architecture (JCA). Using thisprogrammatic interface, you can connect to an Image Services repository. You can then query for andretrieve documents from the Image Services repository, as well as create documents to be stored in therepository.

P8 Core ComponentsFileNet P8 core components: 1. Content Engine (CE) 2. Application Engine (AE) and 3. Process Engine (PE)

Content EngineContent Engine is designed to handle the heavy demands of a large enterprise. It is capable of managing enterprise-wide workflow objects, custom objects, and documents by offering powerful and easy-to-use administration tools. Using these tools, an administrator can create and manage the classes, properties, storage, and metadata that form the foundation of an Enterprise Content Management system.

Key architectural aspects include: Object-oriented, extensible metadata model – Enables Content Engine to provide complex andflexible data representation; and a rich event framework provides the means to trigger an action in

Page 5: Filenet Tutorials

response to activities performed against Content Engine objects. Application Programming Interfaces (APIs) – Provide an extensible platform for developmentand cross-repository queries, and lets administrators configure systems programmatically. A JavaAPI provides a rich set of Java classes which map to object store objects, such as Document,Folder, or Property Description; a Web Service API allows customers to author applications in aplatform and language independent manner by exposing the object model in a small number ofgeneric methods suitable for deployment in a Web environment; a .NET API (which is functionallyequivalent to the Java API) provides for development of applications using the .NET platform.

J2EE-compliant application server – Offers reliability, scalability, and high availability features, as well as support for a wide range of operating system platforms, application servers, anddatabase technologies. Scalable – Can be deployed to suit the demands of the enterprise. As the enterprise's needschange, you can reconfigure the system by replacing, adding, or removing servers or applicationswithout bringing the system down. You can add members to Web server farms and Content Engineserver farms at any time.

Unicode-based – Unicode is a universal character encoding standard that enables Content Engineto be targeted to multiple platforms, languages, and countries without re-engineering, and it allowsdata to be transported through many different systems without corruption.

Process EngineProcess Engine provides software services for managing all aspects of business processes (also called workflows), such as process execution, process routing, rules management, process simulation and modeling, and workflow analysis. Process Engine components allow you to create, modify, and manage workflows implemented by applications, enterprise users, or external users (such as partners and customers).The preceding diagram includes the following services and management components:• Process Service – The core of the business process management system. It provides workflowservices on behalf of Process Engine.

Few Imp things before creating workflow:Precaution while creating workflow

1. Try to use submap in workflow as much as possible....2. Step name should be same as steps defined in requirement document.3. If a component step is used at multiple locations in workflow then separate queue should be defined for processing of work items from that queue.This is to optimize processing time for work items.4. try to put general description on each step to make workflow more descriptive.5. Try to more business logic should be handled in workflow definition instead of code.6. Try to use more out of the box functionality, if feasible.7. Always check sequence of routing condition like first true condition then next

• E-mail Notification – Enables automatic transmission of e-mail to users when specified processrelated events occur; e-mail notification can also be used to track workflows.

Page 6: Filenet Tutorials

• Rules Connectivity Framework – Provides a framework for rules integration. A process designer orbusiness analyst creates business rules using rules software acquired from another vendor andassociates the rules with the steps of a workflow. When a running workflow encounters a rule, ProcessEngine sends a request to the Rules Listener to execute a rule set. Rules Listener executes the rules

in the rule set and returns the results to Process Engine. The rules engine provider must implement aspecific API in order to integrate with Process Engine.• Process Task Manager – Provides administrative tools for configuring and managing process-relatedservices on the Process Engine server.• Process Analyzer – Provides analysis capabilities to determine cycle times, find bottlenecks, andgenerate reports and charts to analyze the processes deployed in the Process Engine system.

• Process Simulator – Allows you to simulate processes or perform “what-if” scenarios withhypothetical or historical data.Workflow database – Contains Process Engine configuration information as well as runninginstances of workflows.• Component Integrator – Provides an extensible integration framework that allows you to easilycreate connectors. Java and JMS adaptors are ready for you to use without modification.

• Process Web Services – Provides a Web services API to Process Engine.• Workflow auto-launch – Event-driven component that launches workflows in the Process Enginesystem. You can configure this component to launch a specific workflow in response to specificevents. For example, filing a document in a folder might launch a review process in the ProcessEngine system.

Directory Services – Directory service functionality is accessed through the Content Engine server.Content Engine supports several LDAP providers and single-sign-on (SSO) functionality. This passthrough approach simplifies directory services configuration by centralizing it for both Content Engine and Process Engine.

Application EngineApplication Engine is the FileNet P8 component that hosts the Workplace Web application, Workplace java applets, and application development tools. It is the presentation layer for both process and content. Application Engine protects user credentials passed between Workplace and Content Engine and, if configured, provides SSL security.

The services and applications included in Application Engine are:• Workplace – An end-user Web application that provides access to the document managementcapabilities and is tightly integrated with the business process management capabilities of FileNet P8.Workplace also supports extended FileNet P8 capabilities such as forms management, recordsmanagement, and portals.Workplace XTWorkplace XT is an optional FileNet P8 component (similar to Application Engine) that hosts the Workplace XT Web application, providing access to the process and content functionality of FileNet P8. You can install Workplace XT in addition to or in place of Application Engine. Workplace XT protects user credentials passed between Workplace XT and Content Engine and, if

Page 7: Filenet Tutorials

configured, provides SSL security.

Rendition EngineRendition Engine converts documents from a variety of formats, such as those produced by Office programs (Word, Excel, PowerPoint) to PDF and HTML formats. Multiple Rendition Engines can be configured to support large numbers of conversion requests.An application requests that a document be published by submitting a publish request through one of the FileNet P8 APIs. A publish request might simply create a copy of the document in a new folder, with new security attributes, or it might also transform the document content to another format (HTML or PDF). The publish request is queued in the Content Engine server. The publishing background task dequeues the publish request and calls the appropriate publishing event handler. If a format conversion is a part of the publish request, then the handler sends the document to the Rendition Engine server to perform the necessary transformation.

What is FEM (FileNet Enterprise Manager)?Enterprise Manager is a Microsoft Management Console (MMC) based tool that administrators use tomanage Content Engine. Enterprise Manager provides a graphical, wizard-based user interface to performthe following tasks:• Create and manage object stores and file stores• Create and manage classes and properties• Create and manage security policies and default security for object authorization• Create and manage lifecycle policies• Create and manage event subscriptions• Import and export objects and metadata definitions as XML• Search and perform bulk updates on search results• Configure XML classification• Perform document management tasks (for example, checkin and checkout)• Configure trace logging

What is eForms Designer?FileNet eForms Designer is a powerful forms design application that runs on the client desktop. Youcan use it to:• Create any form.• Add intelligence such as automatic calculations, data validations, and formatters to the form template toassist users while they are using the forms and help to prevent data entry errors.• Configure connectivity with external data sources to enable data lookups that reduce user data entry.You can use the integration features to easily manage form templates in eForms Designer, such asconveniently checking form templates in and out and adding form templates to an object store.

Page 8: Filenet Tutorials

Integration also provides centralized content management, version control, and security for your form template.

What is eForms management?FileNet P8 eForms allows customers to create and manage online forms in a Web browser that canappear the same as hard copy paper forms, yet are more advanced, easier to use, and less costly toimplement. Online forms created using eForms Designer can reduce data entry time, improve dataaccuracy, and are the first step in streamlining and accelerating transaction processing.eForms provides the ability to process electronic forms as stand-alone documents or to use an electronic form as the user interface for business process workflow. eForms allows creation of high-fidelity, highly intelligent electronic forms without custom programming.eForms provides the following features and benefits that are ready for you to use without modification.

Forms as a type of document:• Can be filled out, saved, and stored using Workplace.• Are tightly integrated with other FileNet P8 features such as document classes and entry templates.• Use document property mapping to automatically populate form data document metadata withvalues from the form when the form is saved.• Incorporate digital signatures.Forms to process workflows:• Include all of the features of document forms and allow tight integration with Process Engine andworkflows.• Automatically map values in the form to workflow data fields for use in process decisions.• Map values from workflow data fields to form fields to pre-fill the form with process-specific data.• Act as the user interface to workflow steps:• Features such as data checking and error messages make the workflow process easy to managefor the user and minimize data entry errors.• Fields on the form can be linked to workflow data fields without having to write HTML code andJavaScript.• Page display can be controlled at each workflow step.Form Policy WizardA form policy is an object store document that describes how a particular form is to be used. There are two types of form policies: one for document forms and one for workflow forms. It is the form policy document that a user clicks when he wants to create a new form.

The form policy wizard is a point-and-click interface within Workplace that allows you to create form policy documents. This interface requires no coding and allows you to specify many form behaviors including:• Which form template to display.• The Entry Template used to store the form data in the object store.• The mapping of form data to document properties.• Simple customization of the form window’s interface to add HTML banners and sidebars.In addition, for workflow policies you can specify:

Page 9: Filenet Tutorials

• Whether the form is the primary content of a step, displayed directly in the step processor userinterface.• Which pages of the form are to be displayed at a particular step.

What is Versioning?You can create different versions of content to maintain a history of changes and to control which users can change the content at a given time. The set of versions for a single document is called a version series.Content Engine supports a two-level versioning scheme, in which a document version is either a major or minor version. Minor versions typically denote an “in-progress” document, whereas a major version typically denotes a completed document. In addition to version numbers, the system maintains a state property indicating the current state of each version of the document, as follows:• In Process – A work in progress version. Only one version of a version series can be in this state.• Reservation – A document currently checked out for modification. Only the latest version of a version series can be in this state.• Released – A document released as a major version. Only one major version of a version series canbe in this state. • Superseded – A version superseded by another version. Many versions in the version series can besuperseded.

What is Search?Content Engine supports property and content-based searching. Key capabilities of search include thefollowing:• A single search can span multiple object stores in different databases.• Workplace users can search for documents, folders, and custom objects. Searches can be designed tospecify multiple folders, including a common folder name used in multiple object stores.• Content-based searching using IBM FileNet P8 Content Search Engine supports extensive contentsearch capabilities that account for misspelled words, typographical errors, phonetic searching, wordstem searching, synonym expansion, and wildcard searching.• Content searches return matches on properties and content.Search results can optionally be displayed in a “document summary” format, which includes a brief text summary extracted from result documents.• Search results can be ranked by relevancy.• Searching makes use of the Autonomy multilingual features.• Bulk operations can be performed on search results in Enterprise Manager, where the operations canbe scripted, or selected from a set of predefined operations such as delete, cancel checkout, file,

Page 10: Filenet Tutorials

unfile, and change security.• Searches can be created and stored for easy execution of common queries.• Search templates provide a simple user interface for entering search criteria.• Shortcuts to searches can be saved so it is easy to find them later.• Searches can be expanded to retrieve documents, folders, and custom objects in the same searchspecification.

Question 1:Answer:   A document is a file that you can be create, save, and subsequently retrieve and update, replacing the old

version with the updated version.

A record is a reference to information and provides metadata to manage the information. Records can electronic or physical (i.e. a document stored in CE or a physical book).

A document which is added to an IBM FileNet P8 content repository, but it is not yet declared as a record is called as ‘document’, not a record. As soon as the document is declared as a record, we consider the document a record.

Document objects are stored in the Records-enabled content Object Store (ROS) and the corresponding record objects are stored in the File Plan Object Store (FPOS).

     0 Comment(s) - Read / Post Comments   Question 2:

Should all the properties of CE replicated to RM?

Answer:   No. One should avoid duplicating the properties unless and until it represent a specific requirement.

Properties which have functional need for document management should be used in CE, while properties which have functional need for records management should be used in RM. If a property happens to be needed for both, then it should exist in both.

Many ECM architects use the exact same properties in ROS (CE) and FPOS (RM) for simplicity.     0 Comment(s) - Read / Post Comments  

 Question 3:

How many document can be stored a Records Manager's ‘Record Category’?

Answer:   There is no limit on number of document stored on Records Category. The 'Record' is simply a custom object stored in database. 

A record is a reference to information and provides metadata to manage the information. Records can electronic or physical (i.e. a document stored in CE or a physical book).

An electronic record points to an electronic document, such as a Content Engine (CE) document or an email message.A physical record, sometimes referred to as a marker, is metadata about a physical document or other object, such as paper records, tape, or microfilm.

what is Life Cycles?Administrators can use document lifecycles to define a sequential set of states that a document will go through over its lifetime, as well as the actions that are triggered when it transitions from one state to another. A user or application can “promote” or “demote” an object to move it forward and backward in its lifecycle.

Page 11: Filenet Tutorials

Life Cycle Actions are promote or Demote. And life cycle states are 1. Draft 2. Review 3. Publish and 4. Close

Events provide a mechanism for initiating actions that are invoked when objects are created and modified in, and deleted from, an object store. For example, creating a document in an object store triggers a create event, which launches a workflow that approves the new document and posts the approved content to a Web site.

A subscription is the association of a particular event trigger with an event action. In the previous example, create is the event trigger and the event action is the workflow launch. Many different subscriptions might be associated with a particular event trigger. The following diagram illustrates how several events might be triggered when a new loan application document is created in an object store.

What is Properties ?Content Engine object properties can be used to reference objects that reside in any object stores within the same FileNet P8 domain.Properties have a type, which can be Binary, Boolean, String, DateTime, Integer, Float, ID, and Object.Object-valued properties are useful for defining relationships between objects. The Customer propertyshown in the loan example in the previous section illustrates how both the Loan and the Loan Application can point to the same Customer object. The properties that are associated with objects can have a single value or multiple values. For example, you might define a multi-valued property named Telephone Numbers in which multiple telephone numbers, such as home and cell phone numbers, are stored. You can then search for objects by creating a search expression that searches for more than one value for the same property.Properties can also be configured to have default values that are set when a new object is created. Inaddition, the system can be configured to restrict the values for the property to a choice list. A choice list is a list of possible values that the user can select from when assigning a value to the property.

What is CustomeObject?A custom object is used to store and manage data that does not have content (and thusdoesn’t support versioning) or a lifecycle. For example, a customer might be represented in the object storeas a custom object because there is no requirement for content. Custom objects:• Have system properties that the system manages automatically, such as Date Created.• Can have custom properties for storing business-related metadata.• Are secured.• Can participate in business processes as workflow attachments.

Page 12: Filenet Tutorials

• Can generate server events when they are created, modified, or deleted. These events are then usedto customize behavior.

What is Annotation?An annotation object, illustrated at right, representsincidental information that can be attached to an object for thepurpose of annotating or footnoting that object. You can associateannotations with custom objects, documents, and folders.Annotations:• Are independently securable. Default security is provided bythe class and by the annotated object. An annotation canoptionally have a security policy assigned to it.• Can have subclasses.• Can have zero or more associated content elements, and thecontent need not have the same format as its annotatedobject.• Are uniquely associated with a single document version, andthus are not versioned when a document version is updated.• Can be modified and deleted independently of the annotated object.• Can be searched for and retrieved with an ad hoc query.• Can subscribe to server-side events that fire when an action (such as creating an annotation) occurs.• Can participate in a link relationship.• Can be audited.

What is Folder?A folder is a container that is used to group other objects. Folders are the primary mechanismthrough which users access documents. Users typically think of folders as a place where documents arestored;, however, filing documents in multiple folders does not create extra copies of those documents, butrather creates a logical association between the folder and the document. Folders:• Have system properties that the system manages automatically, such as Date Created.• Can have custom properties for storing business-related metadata.• Are secured.• Are hierarchical, in the sense that a folder can have subfolders.• Can contain documents and custom objects.• Can generate server events when they are created, modified, or deleted. These events are then used

Page 13: Filenet Tutorials

to customize behavior.• Can be annotated.

What is document?Most users think of a document as a file they create with an application such as Word. Theuser stores the document in the document management system so that a history of changes to thedocument is maintained and the document can be easily found and edited. Users who design enterprisecontent management applications and those who manage them will need to understand how documentscan be leveraged to support a variety of application needs. A document might be used to maintain atraditional electronic file as well as other types of data, such as an XML document or content that ismanaged in an external repository. Documents:• Have system properties that the system manages automatically, such as Date Created.• Can have custom properties for storing business-related metadata about the document.• Are secured.

• Can have content that can be indexed for searching.• Can point to content that is outside of the object store (external content).Can have no content (metadata only).• Can be versioned to maintain a history of the content over time.• Can be filed in folders.• Can have a lifecycle.• Can participate in business processes as workflow attachments.• Can generate server events when they are created, modified, or deleted. These events are then usedto customize behavior.• Can be rendered to different formats, such as PDF and HTML.• Can be published to a Web site.• Can be annotated.• Can be audited.

What is Filenet P8?The FileNet P8 family of products includes back-end services, development tools, and applications thataddress enterprise content and process management requirements. This section presents informationabout features and product capabilities. The Architecture section includes an architectural overview of the FileNet P8 platform components.z

Some imp info abt Content Java API

Page 14: Filenet Tutorials

* Annottaion can be added to Documents, Custom Objects and FolderReturn the value of head property referentialContainmentRelationship.get_Head();Retreive the annotation of a particular documentobjectStore.getObject("Annotations",documentPath);Promote document from "In Progress" to "Completed"document.changeState(LifeCycleChangeFlags.PROMOTE);Retreive Child Documents from a Compound Documentsdocument.get_ChildDocuments();* To implement Java Event Handler, first implement the EventActionHandler interface and onEvent(...)* To determine ACE (Access Control Entry), on a folder has allow/deny access::: accessPermission.get_AccessType()* Auditing for CE Objects can be done using by either CE Java APIs or FEM (FileNet Enterprise Manager)* Publishing mechanism create a new document object. Any changes made to original document, after initial publication will not be reflected in published document.* Document.getContentElements() to retreive content elements associated with document.Retreive choice List associated with a document ClasspropertyDescription.get_ChoiceList();Create an instance of custom objectFactory.CustomObject.createInstance(objectStore,"CustomObjclass");* Factory class provide type-specific static inner classes for creating instances of CE classes.Retreive the audi history for deleted objects in CECall searchScope.fetchObjects(...). The SearchSQL object that is passed in must have an SQL statement to query the DeletionEvents.* folder.getContainees() retreives the collection of Document and CustomObject objects filed in a folder. * SearchScope object determines which ned to be searched

Very Useful Code Related Informations for Process EngineHow to Ends a PE Session and free all resources:vwSession.logOff();Method to retreive Event LogsvwSession.fetchEventLog(eventLogName);Fetch name of all workflows within a Isolated RegionString names[] = vwSession.fetchWorkClassNames(true);Retreive a VWWorkFlowMileStones CollectionvwProcess.fetchreachedWorlflowMilestones(level);How to write User Response to VWStepElementsvwStepElements.setSelectedResponse(...);Retreive available response from VWStepElementsvwStepElement.getStepResponses();

Page 15: Filenet Tutorials

Which VWStepElement methos will unloack a work item w/o updating it's fieldsdoAbort();How to Retreive launch step info of a specified workflow?vwSession.createWorkflow("Name of the workflow");

Steps to return VWRosterQuery objectS1: Create a VWSession object and log onS2: Retreive the required VWRoster object from SessionS3: Perform a query from retreived VWRoster objectRetreive current user InfovwSession.fetchCurrentUserInfo();doDispatch() is the method of VWStepElement which save changes to work object and advances it to next workflow objectTo use PE java component, ur java class shld contain public methods and class must have a constructor with no parameterHow to logon to PE and make connectiontestPESession = new VWSession (user name, password, connectionPointName);VWWorkObject provides access to all of the fields of work item doReassign(user id, false, null) of VWStepElement will moves a work item to another user InboxThe only Exception thrown by P8 Process Java ApI methos is VWException object