```<#assign result=data.results.records> &lt...
# advancedpdf
j
Copy code
<#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?
n
What is "record" in this context? You have results and refer to data.results.records. pretty sure those id's are not ids and probably the labels on your search result, presuming that's what you are trying to reference. (ie. "SO_Number" )