-
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 -
RE: Any way to include table field or table field in CSV Export?
Hello Mayra,
yes, if you do not wish to use the Platform .NET/REST API, then you need to convert the table field to a keyword field to a text field.
When Programming with the REST API, you can also export the data without needing to convert it.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: How to retrive count of row in table field?
Hello Mayra,
if you are using the .NET API, you can retrieve this info via DocumentIndexFieldTable.Row.Count() ( see Documentation )
Doing so in the Workflow Designer is probably not possible without getting all the values and counting them with a loop.
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant
-
RE: Is it possible to hide the thousand separator for a numeric field on Docuware 7.2?
Hello Mayra,
as the KB article mentions, this was only a feature for the Windows Client (prior to Version 6.7). The current DocuWare WebClient does not support this feature. (However, I already had several customers ask for this)
Maybe there is already an idea over at Uservoice.com - if not, you could create one.
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: Decisions can be made using stamps
Hello Kilian,
this is exactly what you need. The option "Decision can be made using stamps" enables stamps for this workflow task. The stamp has no extra configuration, it displays the same fields as the form/dialog box.
The only thing you can configure is which fields are actually stamped onto the document. This setting was introduced in 7.2.
See screenshot:
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: DocuWare Tray Disappears
Hi David,
are you talking about the old fat client trays or the new web client baskets?
Personally, I have never worked with the old fat client. Regarding the new web client baskets, I have never seen or heard of this.
Maybe the Basket User accessed the configuration and changed access rights to the basket or deleted the basket (in case he had configuration rights)? Can you still see the database table for this basket (if on-premise)?
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: REST API: Workflow list
Hello Chema,
I realized this the hard way just some weeks ago. There are two functions to access all the workflows in the system (see here).
If you use the method
you will only get workflows in which the User you used for creating the connection owns a task. All Workflows without active tasks or without tasks assigned to the logged in User will not appear with this function.org.GetWorkflowsFromWorkflowsRelation();
I then switched to use the second function:
This gets me all the workflows in which the User you used for creating the connection is a workflow controller, regardless of if there are tasks available or if he owns a task.org.GetWorkflowsFromControllerWorkflowsRelation();
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant -
RE: DocuWare Cloud
Hi John,
simply ask the support team (via a support ticket) over at support.docuware.com to schedule an update for you.
Hope this helps.
Greetings from Germany,
Simon H. Hellmann
DocuWare System Consultant