Hello all,I was able to fix the first issue by changing the binding,
somehow when the 2nd page is rendering it does not like references with
"[*]", which defines multiple occurences of the same field. Removing
"[*]" in the binding worked out, Example instead of binding
asInvoiceHeader.InvoiceReferences[*].PurchaseOrderReference.PurchaseOrderNumber.Reference.RefNumchanged
it to
InvoiceHeader.InvoiceReferences.PurchaseOrderReference.PurchaseOrderNumber.Reference.RefNumthis
worked. But am still hav...