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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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