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
advanced PDF/HTML layout additional information/record
in advanced PDF/HTML layout you are only getting all of ${record/companyInformation} nothing more.
our problem was to get other customer informations on a invoice, which are not on current record invoice, but should be on print!
so we decided:
make a own script (User Event Scripts - before load)
and add to the objForm our additional record.informations
[CODE]function xx(type,form) {
if (type == 'print') {
form.addField('custpage_conditions', 'text').setDefaultValue('xxxxxxxx'));
}[/CODE]
and in advanced layout:
so we are able to print additional informations
our problem was to get other customer informations on a invoice, which are not on current record invoice, but should be on print!
so we decided:
make a own script (User Event Scripts - before load)
and add to the objForm our additional record.informations
[CODE]function xx(type,form) {
if (type == 'print') {
form.addField('custpage_conditions', 'text').setDefaultValue('xxxxxxxx'));
}[/CODE]
and in advanced layout:
${record.custpage_conditions}
so we are able to print additional informations
0