Getting an error "illegal character" at the button function line
@Yogesh-cl3wx11 ай бұрын
Awesome demo for calling frontend Suitelet on a click of a button. How do you pass the record information in your example the sales order record information to the frontend Suitelet that you called on the click of a button?
@SweetScriptsStudios11 ай бұрын
var output = url.resolveScript({ scriptId: 'custom_script', deploymentId: 'custom_script_deployment', returnExternalUrl: true, params: { key1: 'value1', key2: 'value2' // Add more key-value pairs as needed } }); we have an option of params, we can pass the values, and we can retrieve in suitelet In suitelet we can use below line of code var myName = context.request.parameters.parmkeyname;
@Yogesh-cl3wx11 ай бұрын
Great! Thanks so much for taking the time to respond.