asked on July 13, 2020
A customer has a profile for Import Agent that imports PDFs into the repository, then files/names/attaches metadata to them, and converts them to a TIFF file. However, it is not using the profile's setting to Prepend pages when a duplicate Laserfiche document name exists. Is there a command that can be added or changed in the following list xml to accomplish this?
<?xml version="1.0" encoding="utf-8"?>
<LF:importengine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://laserfiche.com/namespaces/importengine ImportEngine.xsd"
xmlns:LF="http://laserfiche.com/namespaces/importengine" version="1.0">
<LF:toc on_document_conflict="merge" on_folder_conflict="merge">
<LF:folder name="HR">
<LF:childentries>
<LF:folder name="HR Active">
<LF:childentries>
<LF:folder name="EID - Last, First">
<LF:childentries>
<LF:document name="EID - Last, First" template="HR File">
<LF:metadata>
<LF:field_values>
<LF:field_value name="EmpID">EID</LF:field_value>
<LF:field_value name="First Name">First</LF:field_value>
<LF:field_value name="Last Name">Last</LF:field_value>
</LF:field_values>
</LF:metadata>
<LF:electronic_document content_type="application/pdf" extension="pdf">
<LF:fileref ref="C:\Network Location\Incoming\DOC-EID-Last,First.pdf" />
</LF:electronic_document>
</LF:document>
</LF:childentries>
</LF:folder>
</LF:childentries>
</LF:folder>
</LF:childentries>
</LF:folder>
</LF:toc>
</LF:importengine>