Hi,
I'm importing PDF files using the Connections to External Sources/File Sources option. I have a PDF file and an XML file with the same name and I'm using the "Read from an XML file using an XPath expression" for creating the metadata. Everything works fine but I've now been asked to import multiple items into the same metadata field. These are objects that already exist in the system - it seems that this is a requirement. I've tried lots of ways to do this, e.g. putting a semicolon, comma, pipe, between the two object titles and putting quotes around each object and none of this works. I've tried adding the xml tag twice on two different lines but it only loads the first one. Does anyone know how to load more than one object into the same metadata field? An example of what I'm trying to do is the following:
<invoice>
<invoicenumber>12345</invoicenumber>
<ponumber>P-12345</ponumber>
<vendorid>123</vendorid>
<vendorname>VENDOR, INC.</vendorname>
<podocument>P-12345 - 6/16/2021</podocument>
<podocument>P-12345 - 6/17/2021</podocument>
</invoice>
In this case the first PO Document is added into the metadata field but the second one is ignored. If I do the following nothing is loaded into the PO Document field.
<invoice>
<invoicenumber>12345</invoicenumber>
<ponumber>P-12345</ponumber>
<vendorid>123</vendorid>
<vendorname>VENDOR, INC.</vendorname>
<podocument>"P-12345 - 6/16/2021" ; "P-12345 - 6/17/2021"</podocument>
</invoice>
Thanks for any help anyone can give!
Susan