Joseph Lee
02/03/2023, 7:33 PM<#assign result=data.results.records>
<table class="table">
<thead>
<tr>
<th>Item Fulfillment</th>
<th>Shipped Date</th>
<th>Customer</th>
<th>SO Number</th>
<th>PO Number</th>
<th>Ship From</th>
<th>Ship To</th>
<th>Ship Method</th>
<th>Total Weight</th>
<th>Shipping Rate</th>
<th>Handling Rate</th>
<th>Tracking Numbers</th>
</tr>
</thead>
<tbody>
<#list result as record>
<tr>
<td>${record.Item_Fulfillment}</td>
<td>${record.Shipped_Date}</td>
<td>${record.Customer}</td>
<td>${record.SO_Number}</td>
<td>${record.PO_Number}</td>
<td>${record.Ship_From}</td>
<td>${record.Ship_To}</td>
<td>${record.Ship_Method}</td>
<td>${record.Total_Weight}</td>
<td>${record.ShippingRate}</td>
<td>${record.HandlingRate}</td>
<td>${record.Tracking_Numbers}</td>
</tr>
</#list>
</tbody>
</table>
Any reason why i get headers and no data?NElliott
02/06/2023, 9:33 AM