-
Hello Gisèle, <br>
<br>
this is totally not normal. You should raise a support request with your ADP or DocuWare directly to have a look at this issue.<br>
DocuWare Services should work the way your Admin expects.<br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Guten Morgen, <br>
<br>
kombinieren Sie die automatische Nummerierung mit einem "Daten zuweisen"-Workflowschritt im Anschluss an die Ablage.<br>
Dort können Sie mit VBA einfach ein Prefix vor die Nummer setzen lassen, z.B.: "XY" & DW_AUTONUMBER<br>
<br>
Gruß aus Neuss,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Mirco, <br>
<br>
DocuWare uses VBA Syntax here. You might want to compare with nothing, or use the ISNULL() function. <br>
<br>
https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/isnull-function<br>
<br>
Hope this helps.<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hello Andrew,<br>
<br>
about two years ago the forum received a complete rework, including a new design and a new URL structure.<br>
All links from before the rework are broken as a result.<br>
However, the end of the old URL is the title of the forum post and you might be able to find the post using the title.<br>
<br>
Hope this helps. <br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant<br>
-
Hi Steve, <br>
<br>
as the system requirements stated, Server 2012 is no longer supported (neither by DocuWare nor by Microsoft). If the customer is worried about security issues, they need to Upgrade the OS anyways because there will be no security patches by MS anymore after Oct 10, 2023.<br>
<br>
The DocuWare Update does not change the database at all as far as I know. If you want to update your database server, you need to do that separately from DocuWare. <br>
<br>
Hope this helps. <br>
<br>
Greetings from Germany, <br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Radler, <br>
<br>
nein, das ist technisch nicht möglich. <br>
Der einzige Workaround den ich sehe, wäre das Dokument in den Briefkorb zu kopieren, dort anzuheften und dann das gesamte neue Dokument an das bestehende zu klammern.<br>
<br>
Gruß aus Neuss, <br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Stephan, <br>
<br>
Notice the plural in the error message: that error happens because Split() and Trim() as well only work on string variables, not on an array of strings.<br>
You first need to retrieve the single string from the array and then use Split(). One option for this might be KeywordAsString().<br>
<br>
Also, Split()[1] returns the second element, so in your example " VAT rate". What you want to use is Split()[0] to get the first element, in your example "123456 ".<br>
<br>
Somewhere in the KB there is a PDF Document "Arithmetic Expressions - Workflow Expression Parser" which lists all available functions for arithmetic expressions, maybe that could help you find a good solution. <br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Brglez, <br>
<br>
die Rolle "Organization Administrator" gibt Rechte auf die beiden Bereiche Produktübersicht und Organisationseinstellungen. <br>
<br>
Gruß aus Neuss, <br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Tanzberger, <br>
<br>
seitdem ich vor 2 Jahren die Antwort oben geschrieben habe, hatte ich das Szenario bei keinem Kunden mehr.<br>
Ich denke, das wäre aber aktuell immer noch der beste Ansatz, meines Wissens nach hat sich die letzen Jahre wenig an der Mail senden Aktivität im WF getan. <br>
<br>
Gruß aus Neuss, <br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Óscar, <br>
<br>
I usually only work with the .NET API, so I can not give specific advice. <br>
However, here are 2 things I noticed:<br>
<br>
1. Your Item is <code>Item:CURL upload</code> , which looks like it is not interpreted as a string. I think it should be something like <code>Item:"CURL upload"</code> or <code>Item:'CURL upload'</code>, right?<br>
2. You are not providing the IndexField Property IsNull. I don't know if that is mandatory, I normally just provide it in any case: <code>IsNull:false</code><br>
<br>
<br>
Hope this helps. <br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant<br>