RE: How to reference joined column result for renderer.addSearchResults

I’m trying to reference:

new nlobjSearchColumn(“upccode”,”memberItem”,null),

…to my custom PDF template using:

var renderer = nlapiCreateTemplateRenderer();
renderer.addSearchResults(‘results’, results);

but I don’t know how. Normal result column value can be referenced using:

${result.mpn}

Can anyone point me to the right direction?

Thanks in advance.

gnuwolf Rookie Asked on February 16, 2020 in SuiteScript.
Add Comment
2 Answers

Try printing all the keys of result to find your answer:


<#list result?keys as k> ${k} </#list>

Beginner Answered on February 16, 2020.

Thanks Eric but unfortunately it’s didn’t show any.

but doing this will show all the values so I’m not quite sure why using the ?keys didn’t work.

<#list result as r> ${r} </#list>  

on February 16, 2020.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.