Rolf Kremer

Archive for the ‘Processes & Projects’ Category

XPages-Anwendungen über den Webbrowser erstellen

with 2 comments

Ein Beispiel wie XPages-Anwendungen über den Webbrowser erstellt werden können. Auszug aus der Ankündigung auf der Youtube-Seite des Videos:

Mit dem GBS AppDesigner können Unternehmen vorhandene IBM Domino Anwendungen webfähig modernisieren und neue Web-Anwendungen intuitiv erstellen. Und dass ganz ohne Programmierkenntnisse. Und mehr noch: Mitarbeiter aus Fachabteilungen können eigene Anwendungen nicht nur erschaffen, sondern auch mit Social Business Plattformen wie IBM Connections und Microsoft SharePoint integrieren.
Im Video wird am Beispiel eines Kreditkartenantrags die Erstellung einer Web-Anwendung und Integration mit IBM Connections gezeigt.

 

Written by rkremer

September 22, 2013 at 10:41 pm

BPMN 2.0.1 released as an ISO/IEC standard

leave a comment »

The version 2.0.1 of the Business Process Modeling and Notation (BPMN) was published as an ISO/IEC standard 19510:2013.  The International Organization for Standardization (ISO) writes in the abstract:

The primary goal of ISO/IEC 19510:2013 is to provide a notation that is readily understandable by all business users, from the business analysts that create the initial drafts of the processes, to the technical developers responsible for implementing the technology that will perform those processes, and finally, to the business people who will manage and monitor those processes. Thus, ISO/IEC 19510:2013 creates a standardized bridge for the gap between the business process design and process implementation.

You can download the standard as a pdf file on the > ISO page.

Written by rkremer

September 7, 2013 at 2:39 pm

Neuer Beitrag im GBS Blog

leave a comment »

Im > GBS Blog ist ein neuer Beitrag von mir erschienen: > Was ist eigentlich BPMN 2.0?

Written by rkremer

August 29, 2013 at 10:44 pm

BPMN 2.0 Modeling with Microsoft Visio

leave a comment »

In the last days I have used Microsoft Visio 2010 for modeling processes. Since Microsoft Visio 2010 does not support BPMN 2.0, I searched in the Internet whether a plugin or another tool is available. I found two good sites: The first is a validator for processes defined in Microsoft Visio: > BPMN Method and Style Validation for Visio 2010 Premium. This site converts internally a .vsd file into a BPMN 2.0 file and validates the method and styles. The second resource is a > BPMN 2.0 XML Export & Import Add-on for Microsoft Visio 2010. This tool was developed during the work at a > Bachelor Thesis.

Written by rkremer

May 22, 2013 at 8:18 pm

Grafical tools for usage with Lotus Notes

leave a comment »

Since some days the new release of > PAVONE Project Management 10 is available. It is a software to create, plan and monitoring projects. It has an user interface for Lotus Notes clients and web browsers. An essential tool is the grafical applet to create and plan projects, which contains a multi-histogram for cross-project capacity management. Further the Eclipse RCP-based client (PAVONE ProjectBuilder) to define project structure plans. The following two videos explain the usage of the gantt applet and the ProjectBuilder.

PAVONE ProjectBuilder (Eclipse RCP)

Gantt applet with histogram

Written by rkremer

July 14, 2011 at 11:20 pm

Powerful Java API of a Process Engine

leave a comment »

Yesterday, I attend a presentation about the Open Source > Activity BPM platform. A part of it is the Process Engine which has a Java-based API. You can find a > short tutorial about the API on the Activiti website. Of course, other available Process Engine have an API, too. For example > PAVONE Espresso Workflow, which is the core component of > PAVONElive, has a powerful Java API. This code snippet shows you how easy you can import a process definition, create a new process instance based on the process definition and complete the first task of the process.

// STEP 1: Import the process definition
// Imports the file LoanApplication.xml in the directory “c:\ProcessDefinitions”.
WfProcessDefinition wfDef = Session.importXMLProcessDefinition(“c:\\LoanApplication.xml”, “”);

// STEP 3: Initiate a process
// This step initiates a process based on the process definition called ‘Loan Application’
WfProcess process = pcsSession.initiateWfProcess( “”, “Loan Application” , “”, “”);

// STEP 4: Get the first task “Start Loan Application”
// First get all tasks which are in progress and then get the first task of this set.
Set tasks = process.getTasks ( TaskStatus.IN_PROGRESS );
Iterator iterator = tasks.iterator();
WfTask task = (WfTask)iterator.next();

// Place some operations on the task here
// … Your code …

// STEP 5: Complete the first task “Start Loan Application”
boolean success = task.complete();
if ( success == false ) {
// not successful, add error handling
return;
}

Further, you have access to several other features and all the data which will be handled by the engine.

(Source: Excerpt of the Getting Started Guide)

Written by rkremer

April 15, 2011 at 12:32 am

Posted in Processes & Projects

Tagged with

PAVONElive: Tip: View Resource Workloads and Availability

leave a comment »

If you are a project manager you can be interesting to get the workload of your resources. With > PAVONElive you can do this directly in your project plan. Open the project plan of your project and add an histogram for the desired resources of your project. First, the workload for the current project will be shown as column. But you can expand the data to show the workload for all projects. A red column shows you, that the resource is overloaded during the time. If you move the tasks to another time, the columns will be customized directly.

Written by rkremer

March 30, 2011 at 11:42 pm

Posted in Processes & Projects

Tagged with

PAVONElive: Tip: Use a Project as a Template

leave a comment »

If you work with projects, you can use an existing project as a template for a new project. This is very useful if the existing project has a similar structure as the new project. The structure defines the tasks, summary tasks, milestones and the dependencies between the tasks. If you create a new project you can select the template which should be used. Then, the project structure of the template will be copied to the new project. If you use a project management methodology, the methodology can be represented as a template. For more information go to > PAVONElive.

Written by rkremer

March 26, 2011 at 12:47 am

Posted in Processes & Projects

Tagged with

PAVONElive: Tip: Printing a Project plan with header

leave a comment »

If you like to print a project plan in > PAVONElive, you can add a header line, which contains the project name and the page number. For this, open the Print dialog, select a printer and click on Preview. In the preview pane you can click on the button to switch the page header. Afterwards you can print the project plan.

Written by rkremer

March 24, 2011 at 1:01 am

Posted in Processes & Projects

Tagged with

PAVONElive: Tip: Open multiple projects in a Project plan

leave a comment »

If you work with multiple projects in > PAVONElive and like to integrate they into a grafical project plan, you can do this easily. Switch to the Projects tab and select the projects you would like to integrate in the project plan. Then select ‘Open in Project plan’ and click on ‘Go’. Afterwards the Project plan with the selected projects will be opened. The Project plan is not editable if you have loaded more than one project into it.

Written by rkremer

March 23, 2011 at 8:50 am

Posted in Processes & Projects

Tagged with