I have a word template in my repository. In Workflow, I want to find this document using a Search Repository activity (configured to return only the first result), then use it as the source document for an Update Word Document activity.
The problem is that Update Word Document can only grab the "Output Entries" token from the Search activity, rather than the First Result token.
As a result, Workflow tries to use the XML that is returned for Output Entries in the Update Word Document activity, and obviously fails.
This inconsistency/counter-intuitive behavior has me stuck. I also tried using a Find Entry activity to find the word template since that only returns one result, but Update Word Document can't use that as its source?
Also tried to iterate through the Search activity's Output Entries using a For Each Entry loop, but that had the same issue: Update Word Document couldn't use the Current Entry as the source document.
So the question is: how do I find a single word document in the repository using Search or Find and feed that to the Update Word Document activity?