I have 2 documents.
Document A has a field: {INCLUDETEXT "document B"}
Document B has many MERGEFIELD's that I like to replace from a Map.
My code runs:
=======================================================================================
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new File("Document A"));
map = ( ... Load some data to a HashMap .... )
MailMerger.performMerge(wordMLPackage, map, true);
=======================================================================================
The generated file has only the field: {INCLUDETEXT "document B"}
What am I missing?
Is MergeDocx Enterprise can help me better?