Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Display Custom Record Data as line item under Advance PDF/HTML Report
I have a custom record type linked to a Transaction record and would like to display the data as line items in table format from custom records using the Advanced PDF/HTMl report. Unfortunately Its not displaying the data
<#if record.custrecord?has_content>
<table class="itemtable"><!-- start items --><#list record.custrecord as custrecord>
<tr>
<td align="center" colspan="3" line-height="150%">${custrecord.custrecordid}</td>
</tr>
</#list><!-- end items -->
</table>
</#if>
if the custrecord type contains line items, I am not able to fetch the information
0