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.
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