Sikke vi er i vælten for nærværende
Friday, March 18, 2011
Thursday, March 17, 2011
Danske Exformatics vil udrydde interne e-mails
Værd at læse. Vi har sådan set sagt dette siden 2003 men som altid tager det tid at få den slags budskaber ud.
Tuesday, January 11, 2011
Lean med SharePoint
ESDH OG LEAN SIKRER EFFEKTIVITETEN I TELE GREENLAND
Læs mere om Lean og ESDH hos Tele Greenland her.Monday, January 10, 2011
Sunday, January 09, 2011
Design of a Distributed Case Management System using Dynamic Condition Response Graphs
We present a case study of a design of a distributed case management system using Dynamic Condition Response (DCR) Graphs, a recently proposed declarative notation for distributed processes. The case study was carried out jointly with our industrial partner Exformatics, a danish provider of knowledge and workflow management systems. We present an early prototype design and simulation tool and outline the proposal for the continued work of the two last authors towards the PhD degree, developing the model, technologies and tools further to make it applicable to component and model based design of distributed systems.
Highly recommended if you wish to understand the 21st century business workflow.
Highly recommended if you wish to understand the 21st century business workflow.
Wednesday, October 13, 2010
SharePoint is case-sensitive - documents upload into root-folder
It took us quite a while to figure out this issue. It turns out that SharePoint sitenames og document libraries are case-sensitive. If you try to navigate to a folder using it's URL and type the site og document library in the wrong case it seems to work. However, when trying to upload documents it fails. Documents are then placed in the root-folder of the document library as outlined below.
Given a standard document library "Documents" you create a new folder "Folder1".
Now, try to enter the URL of the folder directly in your browser in this case enter
where "Documents" is modified to "documents" (little d).
As you can see everything seems to work as they should:
However, when you try to click Upload
the document is not uploaded into the folder
Given a standard document library "Documents" you create a new folder "Folder1".
Navigate to the folder
and then click Upload to upload a document, "My New Document.docx", and everything works as it should:Now, try to enter the URL of the folder directly in your browser in this case enter
where "Documents" is modified to "documents" (little d).
As you can see everything seems to work as they should:
However, when you try to click Upload
the document is not uploaded into the folder
but instead the document ends up in the root-folder of the Document library:
Quite a scary error in a standard product used by so many people in the world. When I presented the problem to a Microsoft representative claiming SharePoint to be case-sensitive they didn't believe me until I presented the above example.
Therefore. Remember that site-names and Document Libraries in SharePoint are case-sensitive.
Tuesday, April 20, 2010
Sæt strøm til processerne - fra arbejdsgang analyse over BPMN til digitale arbejdsgange
Exformatics har i foråret 2010 sammen med Kommunernes Landsforening arbejdet med at digitalisere arbejdsgange. Med udgangspunkt i en arbejdsganganalyse og efterfølgende modellering i BPMN er arbejdsgangen placeret i KL's arbejdsgangbank.
Exformatics har på baggrund af fremsendt BPMN diagram (i XPDL) mappet dette til vores arbejdsgang motor (Exformatics Process) således at arbejdsgangen efterfølgende er faciliteret digitalt.
Læs om projektet på KL's hjemmeside.
Exformatics detaljerede besvarelse af KL's opgave kan findes på dette link.
Exformatics har på baggrund af fremsendt BPMN diagram (i XPDL) mappet dette til vores arbejdsgang motor (Exformatics Process) således at arbejdsgangen efterfølgende er faciliteret digitalt.
Læs om projektet på KL's hjemmeside.
Exformatics detaljerede besvarelse af KL's opgave kan findes på dette link.
Labels:
arbejdsgang,
arbejdsgangbank,
BPMN,
SharePoint,
XPDL
Monday, March 22, 2010
Wednesday, March 17, 2010
Wednesday, February 10, 2010
Office 2007 and MOSS - custom document properties
When adding Office 2003 documents to MOSS custom document properties in Office 2003 are added as SharePoint properties in a content class. Setting custom documents properties in Office 2003 is easy and well known.
When uploading Office 2007 documents to MOSS with custom documents properties set in the same manner as in Office 2003 documents, MOSS properties are not set.
I found this blog which points out a solution and it works fine if you're working with Office 2007 templates. However, if your template is a Office 2003 DOT-file and saves the document as an Office 2007 it doesn't work anyway.
Update: I found the following msdn blog which is worth reading.
When uploading Office 2007 documents to MOSS with custom documents properties set in the same manner as in Office 2003 documents, MOSS properties are not set.
I found this blog which points out a solution and it works fine if you're working with Office 2007 templates. However, if your template is a Office 2003 DOT-file and saves the document as an Office 2007 it doesn't work anyway.
Update: I found the following msdn blog which is worth reading.
Friday, January 22, 2010
Professionshøjskolen Metropol får ESDH fra Exformatics
Professionshøjskolen Metropol får nu ESDH fra Exformatics. Uddannelsesinstitutionen skal fremover bruge Exformatics ESDH til sagsstyring i administrationen, der sørger for den daglige drift af uddannelser på flere forskellige adresser i København.
Læs mere på Version2 eller Exformatics.
Læs mere på Version2 eller Exformatics.
Tuesday, January 05, 2010
Identify Publish a Major Version
For some strange reason SharePoint doesn't raise an ItemCheckingIn or ItemCheckedIn event when documents are published in new major versions, unless you do a Checkin and select major version in the same operation.
How can you identify a "Publish a Major Version" with other events? I did some googling and experiments and found out that using BeforeProperties and AfterProperties in the ItemUpdating handler might do the job. Similar posts can be found here, but I didn't get the same result.
int iBefore, iAfter;
iBefore = int.Parse(properties.BeforePropeties["vti_level"]);
iAfter = int.Parse(properties.AfterPropeties["vti_level"]);
Using the value of iBefore and iAfter I was able to identify the following events:
So if (iBefore == iAfter) you a facing a "Publish a Major Version" event.
How can you identify a "Publish a Major Version" with other events? I did some googling and experiments and found out that using BeforeProperties and AfterProperties in the ItemUpdating handler might do the job. Similar posts can be found here, but I didn't get the same result.
int iBefore, iAfter;
iBefore = int.Parse(properties.BeforePropeties["vti_level"]);
iAfter = int.Parse(properties.AfterPropeties["vti_level"]);
Using the value of iBefore and iAfter I was able to identify the following events:
| Event | iBefore | iAfter |
| CheckIn Minor Version | 255 | 255 |
| CheckIn Major Version | 255 | 1 |
| Publish a Major Version | 2 | 2 |
So if (iBefore == iAfter) you a facing a "Publish a Major Version" event.
Wednesday, December 02, 2009
Images in a dropdown list - SELECT
Rumours says that Microsoft will announce support for jQuery in SharePoint 2010, so better get started. We have used AJAX and more recently jQuery for the last 3 years in combination with SharePoint and it has proved very useful. And even if Microsoft don't support jQuery I believe it will be a major development platform for advanced end-user interfaces in the future - also for SharePoint.
Check out this example for how to enhance your existing drop down lists to include images - yes, it looks so much nicer - and navigation is like a dream.
Check out this example for how to enhance your existing drop down lists to include images - yes, it looks so much nicer - and navigation is like a dream.
Labels:
AJAX,
jQuery,
MOSS,
SharePoint,
SharePoint 2010
Monday, November 30, 2009
Panel for dokumentoplysninger kunne ikke indlæses
When opening an Excel dokument based on a standard Excel XLT template stored in SharePoint I get the error outlined below. Ideas appreciated.
An English example can be found in this blog. The error Outlined is:
The form contains schema validation errors.
Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
How can this happen?
The schema is outlined at MSDN.
Errors have been reported by many here and here.
Friday, November 27, 2009
SharePoint 2010 wiki's
Using Wiki's in SharePoint 2007 can be done, but it is a first version type of product. Luckily Microsoft has announced better wiki support in SharePoint 2010 with Managed Keywords which can be used to create tag clouds and home pages can be edites as wiki's - a huge step forward for WYSIWIG editing. I found this blog interesting.
Thursday, November 26, 2009
Få forretningen til at håndtere arbejdsprocesserne
En af de centrale udfordringen at sætte strøm til arbejdsprocesser er at få forretningsbrugerne til at formulere processen og efterfølgende få denne designet og implementeret af IT folk. Der tales forskellige sprog og der er langt fra tanke til handling.
Tænk hvis det var muligt at forretningsbrugeren på en og samme tid udtrykker arbejdsgangene og dermed samtidig designer og implementerer processen i et IT system. Dermed vill man sikre at forretningsbrugeren kunne tage ansvaret for arbejdsgangene da de ikke som udgangspunkt skal have IT folk involveret i processen.
Exformatics taler på ITU seminar mandag den 7. december 2009 om udfordringerne ved at realisere en sådan tankegang.
Tænk hvis det var muligt at forretningsbrugeren på en og samme tid udtrykker arbejdsgangene og dermed samtidig designer og implementerer processen i et IT system. Dermed vill man sikre at forretningsbrugeren kunne tage ansvaret for arbejdsgangene da de ikke som udgangspunkt skal have IT folk involveret i processen.
Exformatics taler på ITU seminar mandag den 7. december 2009 om udfordringerne ved at realisere en sådan tankegang.
Friday, November 20, 2009
Monday, October 26, 2009
Linking iPhone with SharePoint
Exformatics now links SharePoint with Apple iPhone in order to facilitate mobile connectivity to corporate knowledge bases. Read more here.
Here too or here.
Eller her.
Scan-Jour lukkes og Exformatics overtager.
Here too or here.
Eller her.
Scan-Jour lukkes og Exformatics overtager.
Saturday, October 24, 2009
Creating a Web Part Page programmatically
Using Microsoft.SharePoint API is often not the most easy thing in the world. As an example adding a web part page programmatically is not an easy job - unless you're lucky and hit the right page on MSDN.
I have been trying to add a pages using the SPFolder.Files.Add(, SPTemplateFileType.StandardPage) - but the page was not added as a WebPartPage so I couldn't add web parts to the page in a proper manner.
It was not until I came across the NewWebPage method on MSDN that I managed to get the job done.
I have been trying to add a pages using the SPFolder.Files.Add(
It was not until I came across the NewWebPage method on MSDN that I managed to get the job done.
Tuesday, October 20, 2009
Subscribe to:
Posts (Atom)






