Needful things Part A

Some helpful tiny DQL queries:

Select all Documents which are currently running in a Workflow

select distinct
d.object_name as document_name,
d.r_object_id as doc_identifier,
f.object_name as wfl_name,
f.r_act_name as wf_type,
f.supervisor_name as started_by,
f.r_object_id as wf_id 

from dmi_package p, dm_workflow f, dm_document (all) d
where r_workflow_id in (select r_object_id from dm_workflow)
AND p.r_workflow_id = f.r_object_id
AND p.r_component_id = d.r_object_id
ORDER BY 5 ASC
enable (row_based)

Documents attached to workflow tasks in a user’s Inbox that are overdue

SELECT DISTINCT r_object_id,due_date 
FROM dm_dbo.inbox_docs i, dm_document (ALL) d
WHERE
i.r_object_id = d.r_object_id 
AND i_latest_flag = 1 
AND DATEFLOOR(day, due_date)<=DATEFLOOR(day, DATE(NOW)) 
AND due_date IS NOT NULLDATE 
ORDER BY due_date,r_object_id
14. März 2013Permalink

Jerry Silver says a farewell to the xCP Developer Edition

The preconfigured developer environment will not be available for the latest xCP version 2.0.

The Developer Edition for xCP 1.5 is still available and supported.

EMC focused their strategy to delivering solutions with a minimum of code like xCP 2 and D2 version 4.0

Perhaps the Developer Edition will return in one of the future releases.

24. Januar 2013Permalink

Merry Christmas from EMC.

The Information Intelligence Group (IIG) from EMC announced the general availability of Documentum xCP 2.0.

David Mennie from EMC posted a short xCP overview in the Documentum Blog at the end of November 2012.

Everyone with a EMC Powerlink account can download the software!

I will publish more articles and short tutorials about xCP2.0 in January 2013.

Merry Christmas from Mr. Crazyapple

 

 

 

7. Dezember 2012Permalink

The major changes of xCP 2.0

The xCelerated Composition Platform version 2 is nearly a new development. There are so many changes between the first and the second version.  Some features are not compatible to the old version. The following table displays the major changes including a small description.

xCP 1.x xCP 2.0
Structured Data Types* Business Objects replaced SDT
* BO are flexible, have relationships, events and are persist after the process completes
Types-bayed ObjectsTBOs will still supported but unnecessary
User Interface* old WDK will be unsupported
* new ExtJS interface
* RESTful Service interaction
* Browser independent, becasue GUI based on HTML 5 (best performance with google Chrome)
Forms Adaptors* Adaptors from the FormsBuilder are not longer supported
* Data Services will be used
they are more flexible (realtime, historical/ external) Queries
Taskspace* Taskspace not longer GUI of xCP
* Native xCP viewer
* Zero footprint technology on all Browsers and Devices
* Big Data Services with Greenplum
* Syncplicity (data synchronization between many devices and the repository with permission sets for each object)
* easy connection to additional EMC Products (Captiva 7, xPression , etc)
Process DebuggerThe ProcessBuilder Debugger the will not be included in the 2.0 release. Dan said on the Momentum this year that the Debugger must be completely rewritten and this will take some time. But the deployment on the test environment is very fast and should not be a big obstacle.

 

Momentum Vienna 2012

Momentum Vienna 2012

 

20. November 2012Permalink