Discussions
Check out Oracle NetSuite upcoming events and conferences here
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!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the week! You only have until tomorrow, October 10, 2024, 2PM ET to comment your answers and earn rewards! Click here for more details.
Get ready to take on exciting new challenges and become the next SuiteMaster of the Month!
AI capabilities embedded across the suite help boost productivity and give leaders an edge by helping them analyze data faster and generate unique insights that drive better decision-making. Watch these on-demand webinars to see how our AI capabilities can help you.
Streamline Invoice Processing with AI-Powered Automation
Use AI-Driven Insights for Faster, Better Planning and Forecasting
Streamline Invoice Processing with AI-Powered Automation
Use AI-Driven Insights for Faster, Better Planning and Forecasting
How to have a Suitelet call itself in 2.1
Hello,
Is it possible to have a Suitelet call itself with different parameters?
I did find a SuiteAnswer on this (#72197) so I think I should be able to but I cannot get it to work.
I am using this code the first time I call the Suitelet:
const suiteLetUrl = url.resolveScript({
scriptId: 'customscript_cry_acs_sl_item_update', // changed to CRY version, JudyP 6/18/24
deploymentId: 'customdeploy_cry_acs_sl_item_update',
returnExternalUrl: false,
params: {
'custscript_acs_item_id': newItemId,
'custscript_acs_item_type': newItemType,
'custscript_cry_quantity_change': qtyDiff
}
});
log.debug('Suitelet URL',suiteLetUrl);
https.get({
url: suiteLetUrl
});
Then, in the same Suitelet, I want to call it again for a different Item.
0