Issue in Docx from Dynamic template

Certified Associate Developer

Hello,

I am using DocxFromDynamitecTemplate smart service for generating the dynamic table in  Docx file from given template.

but i am getting the only column names, data is not populating in the table.

Here is the xml data that i am passing  in a script task.

concat(
    "<info><row><name>",
   toHtml("John Samuael"),
    "</name><branch>",
tohtml("CSE"),
      "</branch><rollNo>",
    toHtml("abc"),
    "</rollNo>
	</row><row><name>",
   toHtml("Michelle Dsouza"),
    "</name><branch>",
tohtml("IT"),
      "</branch><rollNo>",
    toHtml("fgh"),
    "</rollNo>
	</row></info>"
  )

Template file:Test_Template_new.docx

generated file:

Generated dynamic document11122019 (2).docx

Process model:

Please suggest some solution,for dynamic row generation in table in document or suggest any alternate for this.

  Discussion posts and replies are publicly visible