-
RE: Patchday April
Hallo Herr Esser,
vielen Dank für die Info. Allerdings verhalten sich die Download Links unterschiedlich. Der 7.2 Downloadlink im KB-Artikel ist ein Direktlink zum Download, während der 71 KB-Artikel mit dem Link auf das entsprechende Dokument im PartnerPortal enthält.
Sollten nicht eigentlich beide Links auf das PartnerPortal zeigen?
Gruß aus Neuss,
Simon H. Hellmann
DocuWare System Consultant -
RE: DocuWare Import Jobs Folder - Import files with .xml Metadata
Hi Alain,
the metadata file may not end with.xml
- instead, the file ending needs to be.dwcontrol
.
So your test file would be namedstyle-guide-fr.dwcontrol
DocuWare import ignores other file endings, including.xml
, when looking for metadata files.
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: Berechtigung um SQL-Anweisung in Listenkonfiguration zu nutzen
Hallo Constanze,
die Einstellung findet sich in der Administration im Bereich System -> Allgemein -> Allgemein -> Datenbankzugriff über SQL-Statement zulassen.
Für Cloud-Systeme ist die Einstellung nicht verfügbar.
Gruß aus Neuss,
SImon H. Hellmann
DocuWare System Consultant -
RE: SDK - Platform.NETClient Sample - Errors on Load to Visual Studio
Hi Chris,
first of all, please remove the information about your cloud system from the attachments.
Second, you created a console application in C# - console applications always just do what is defined in the method "main" and then quit - this is just how the C# logic works.
To be able to call other methods defined in the same class "Program", you would need to call the following code in your main method:static void Main(string[] args) { Program program = new Program(); //call whatever methods you need program.GetDocumentById("Inbox",true,123); }
However, this is not really best practice. If possible, you should aim to put your methods into a new class and create an instance of the new class which contains all the logic.
For example, I recently created a test application with this Main method (don't call your productive class like that though):static void Main(string[] args) { DoThings doThings = new DoThings(); doThings.CheckForNewDocuments(); }
If you want to have dynamic search criteria, you might want to think about building a WPF or Windows Forms application instead so the user can input their criteria into a GUI.
If it is something which should run automatically, you should either stay with the console application and have it start through task planning or switch over to a windows service with a timer.
In any case, you might want to use a configuration file to set your search criteria - have a look at how the App.config works, that is probably the easiest way in C#.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: SDK - Platform.NETClient Sample - Errors on Load to Visual Studio
Hi Chris,
can you post some of your code which errors out for you here?
Hard to say anything about it if we do not know error messages or the methods called.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: Import einer bestehenden Ordnerstruktur mit automatischer Indexierung
Hallo Herr Hingst,
die Möglichkeit besteht über den Windows Explorer Client.
Sie benötigen dazu die Desktop Apps installiert (mit Windows Explorer Client) sowie eine konfigurierte Ordnerstruktur.
Dann können Sie auf einfachem Wege Dateien/Verzeichnisse aus einer Ordnerstruktur in Ihre DocuWare Ordnerstruktur kopieren.
Gruß aus Neuss,
Simon H. Hellmann
DocuWare System Consultant -
RE: Automatischen Stempel im WF Manager setzen
Hallo Herr Frank,
soweit ich weiß gibt es dazu mit Bordmitteln nur zwei Wege (Stand 7.2). Möglichkeit 1 ist seit V 7.1(?) verfügbar. Im Workflow gibt es eine Option "Einfügebereich auf Dokument füllen" im Daten zuweisen Schritt. Diesen können Sie allerdings nur nutzen, wenn das Dokument über DocuWare Forms erstellt wurde.
Die zweite Möglichkeit wäre eigene Programmierung an die .NET/REST API - siehe hier: .NET API Stempel setzen
Alternativ gibt es meines Wissens nach mehrere DocuWare Partner, die Tools zum automatischen Stempeln anbieten - mir fallen da als erstes die Kollegen von DocuScan ein: DocuScan StampRobot
Gruß aus Neuss,
Simon H. Hellmann
DocuWare System Consultant -
RE: unsichtbare Stempel setzen
Hallo Herr Becker,
dazu gibt es eine Einstellung in der Stempelkonfiguration, siehe Screenshot.
In der neuen Stempelverwaltung in der Web-Konfiguration ist diese Einstellung leider noch nicht vorhanden (Stand V7.2).
Gruß aus Neuss,
Simon H. Hellmann
DocuWare System Consultant
-
RE: Uhrzeit bei Zeitverzögerung setzen
Hallo Herr Becker,
auf dieses Problem bin ich kürzlich auch gestoßen.
Wenn Sie ein "Date"-Feld in ein "DateTime"-Feld konvertieren, wird als Standard-Uhrzeit immer 12 Uhr Mittags UTC verwendet.
DocuWare verwendet intern überall nur UTC, die Umwandlung in die lokale Zeitzone passiert am Client bzw. Background Process Service, daher kommt Ihr Eintrag von 14 Uhr = 12 Uhr UTC.
Sie können das "DateTime"-Feld über einen "Daten zuweisen" Schritt manipulieren und so die UTC-Zeit ändern.
Verwenden Sie folgenden Arithmetischen Ausdruck:
DateAdd(DateInterval.Hour,-11,GV_DateTime)
Mit "DateInterval.Hour" geben Sie an, dass Stunden aufaddiert/abgezogen werden sollen, "-11" ist die Anzahl der Stunden und "GV_DateTime" ist die globale Variable von welcher Sie subtrahieren wollen.
Obiger Befehl würde also aus 12 Uhr UTC -> 1 Uhr UTC machen. 01 Uhr UTC in unserer Sommerzeit wäre also 03 Uhr.Siehe auch: Forum: Add 3 years to DateTime
Und: DateAdd in VBA
Gruß aus Neuss,
Simon H. Hellmann
DocuWare System Consultant -
RE: Adding 3 years to current year
Hi Koen,
you are using the wrong syntax. Please refer to this page: DateAdd in VBA
Your command should be:
DateAdd("d",5,GV_ApproveDate)
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant