-
Hi Sebastian, <br>
<br>
your section id should be numeric, starting at 0.<br>
In your example, you only have one section, so instead of "1-1" you should use "0".<br>
Same goes for page number, the first page is page 0.<br>
<br>
Hope this helps. <br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Ashton, <br>
<br>
the download is currently only available for ADPs in the Partner Portal and Partner Info. It will become publicly available next month. <br>
<br>
Hope this helps.<br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Nalmpantis, <br>
<br>
ich meinte direkt in der Datenquelle, also der Datenbank, nicht irgendwo innerhalb von DW.<br>
Hier würde ich anstatt direkt auf eine Tabelle zuzugreifen, eine View erstellen (lassen), in welcher die Datumswerte in strings konvertiert sind.<br>
An manchen Stellen tut sich DocuWare leider schwer mit unterschiedlichen Datentypen.<br>
<br>
Gruß aus Neuss,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Nalmpantis, <br>
<br>
darf ich die Frage stellen, weshalb Sie die Daten überhaupt im Formular benötigen?<br>
Mitarbeiternamen bzw. Personalnummer haben Sie ja bereits ein eindeutiges Kriterium, über welches Sie dann nach Erstellung des Formulars die übrigen nötigen Daten über eine "Daten zuweisen"-Aktivität im Workflow aus der Personaldatenbank automatisch direkt in die Indexdaten und in die Formularzonen auf dem Dokument füllen können, ohne dass diese erst noch einmal vom Mitarbeiter angeklickt werden müssen.<br>
<br>
(Zur ursprünglichen Frage: Ich würde in der Datenquelle (View) das Datum bereits in nvarchar bzw. string konvertieren, damit DW damit keine Probleme mehr hat)<br>
<br>
Gruß aus Neuss,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hallo Herr Brunn, <br>
<br>
das ist das normale Verhalten von Connect to Mail.<br>
Was möchten Sie denn erreichen?<br>
<br>
Gruß aus Neuss, <br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Jalila, <br>
<br>
you could try to work with checking the box "replace" and use an arithmetic expression like the following:<br>
<code>Split(KeywordAsString(GV_List__NewClient,";") & ";" & DW_NEWCLIENTn,";")</code><br>
<br>
This will first take the values from your list and put it into a string separated with ";", then add the new value to the end and split it again into a keyword field.<br>
Example:
<pre class="linenums prettyprint">// Starting values:
Yes
No
// next value to add:
No
// result after: <code>KeywordAsString(GV_List__NewClient,";")
</code>Yes;No
// result after: <code>KeywordAsString(GV_List__NewClient,";")</code> <code>& ";" & DW_NEWCLIENT3
Yes;No;No
</code>// result after: <code>Split(KeywordAsString(GV_List__NewClient,";") & ";" & DW_NEWCLIENT3,";")
Yes
No
No</code>
</pre>
<br>
Hope this helps.<br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Quentin, <br>
<br>
the API Access is not restricted in trial cloud environments, so you probably have an error in your code or invalid credentials.<br>
<br>
Please check <a href="https://developer.docuware.com">developer.docuware.com</a> for the API documentation.<br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Winston, <br>
<br>
you can use the regular UploadFile Methods without adding files. That will create a data record.<br>
<br>
Hope this helps.<br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
Hi Pierre, <br>
<br>
please share this KB article with your IT, it contains everything they need to deploy the Desktop Apps.<br>
<br>
<a href="https://support.docuware.com/en-us/knowledgebase/article/KBA-36543">https://support.docuware.com/en-us/knowledgebase/article/KBA-36543</a><br>
<br>
Greetings from Germany,<br>
Simon H. Hellmann<br>
DocuWare System Consultant
-
 Hallo Frank, <br>
<br>
den Zwischenschritt über die GV kannst du dir sogar seit einigen Versionen sparen.<br>
Eine Datenzuweisung wie folgt sollte genügen:
<pre class="linenums prettyprint">Indexdaten des Dokuments | IBAN | Arithmetischer Ausdruck | Replace(DW_IBAN, " ", "")</pre>
<br>
Gruß aus Neuss,<br>
Simon H. Hellmann<br>
DocuWare System Consultant<br>
 <br>