<#ftl output_format="XML">

<bill-of-material>
    <#list data.rows as row>
        <row 
                   qty="${row.getCell("quantity").getFirstValue().getValue()}" 
            findNumber="${row.getCell("find-number").getFirstValue().getValue()}"
                refDes="${row.getCell("reference-designator").getFirstValue().getValue()}"
                  item="${row.getCell("name").getFirstValue().getValue()}"
                status="${row.getCell("status").getFirstValue().getValue()}" />
    </#list>
</bill-of-material>