Posted Sat, 20 Mar 2021 17:10:01 GMT by Edwin Fabian Donato TI
Hello,

I am following KBA-35471 to the letter, which indicates a process to mass load the documents, for this case I want to do it on the option <by definition in the metadata file> however it always throws an error: below I refer the code and the error.

<ControlStatements xmlns="http://dev.docuware.com/Jobs/Control" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Document>
<InsertFile path="C:\Doumentos contailidad\DW2.pdf" />
<InsertFile path="C:\Doumentos contailidad\DW1.pdf" />
</Document>
<Page>
<FileCabinet name="CONTABILIDAD"/>
<Field dbName="EMPRESA" type="Text" value="EMPRESA DE PRUEBA NUMERO 3"/>
<Field dbName="A_O" type="Text" value="2021"/>
<Field dbName="SUBSERIE" type="Text" value="BANCOS"/>
<Field dbName="TIPO_DOCUMENTAL" type="Text" value="EGRESO"/>
</Page>
</ControlStatements>

What other alternative is there? I need to upload more than 20 thousand files massively with 4 indexing fields


 
Posted Sat, 27 Mar 2021 17:10:01 GMT by Matthias Wieland DocuWare Europe GmbH Sr. Director Support EMEA
Dear Edwin Fabian Donato! It looks like the Community cannot answer your question. That's why we have opened a Support Request with the Number SR-147189-R8Y4K for you. A Software Support Specialist will contact you directly to follow up. We will update this thread with the solution as soon as we have resolved the Support Request. With best regards, DocuWare Support Team
Posted Sun, 28 Mar 2021 13:47:23 GMT by Craig Heintz SE
The xml shown is missing some info.  Here is a sample I use to compare to when troubleshooting this type file.  Keep in mind the order in which you list the documents dictates the order they are clipped in the final document.

<?xml version="1.0" encoding="utf-8"?>
<ControlStatements xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://dev.docuware.com/Jobs/Control">
<Document>
<InsertFile path="TestFile1.pdf" />
<InsertFile path="TestFile2.pdf" />
</Document>
<Page>
<Field dbName="DOCTYPE" value="PO" />
<Field dbName="DATE" value="2015-10-12" />
<Field dbName="COMPANY" value="ABC Company" />
<FileCabinet name="Documents"/>
</Page>
</ControlStatements>

You must be signed in to post in this forum.