Trying to pull an entity record onto a Picking Tic...
# advancedpdf
m
Trying to pull an entity record onto a Picking Ticket. Anyone got any ideas? I've essentially got a Note (made with a custom field) on the customer record which then shows on all Sales Orders and Item Fulfillments via a Inline HTML custom field. Currently I've got:
Copy code
<#if record.custbody_ozc_persistent_order_notes?length !=0>
      <br /><br />
      [&nbsp;&nbsp;&nbsp;]&nbsp;
      <b>${record.custbody_ozc_persistent_order_notes@label}:</b><br />
      ${record.custbody_ozc_persistent_order_notes}
      </#if>
To pull the field from the Sales Order. The custom field is just created by adding
Copy code
{entity.custentity_ozc_order_notes}
to the custom Transaction Body Field with some minor inline styling. Any advice? 🙂