-
Item Sublist in Suitelet Custom UI Requires a Units Drop-Down showing available Units for each item
I am creating a Custom User Interface via a Suitelet. Part of the interface will be a Sublist that will hold select items and data about the select items. One of the data points I need to hold is the Unit of Measure. The selectable items in the drop-down should mirror those in native item record or transaction record…
-
Issue with Rendering PDF Inline After Clicking Invoice Link in Downloaded Statement PDF
Hello NetSuite Community, I am encountering an issue where I’ve added a link to each invoice using a Suitelet URL within the Statement PDF. When I click on the invoice link, the corresponding invoice PDF is expected to be generated and downloaded. However, the invoice PDF is not being generated when the link is clicked…
-
Select Type Field in Iframe
Select Type field in a suitelet stops working when loaded in an iframe with in another suitelet
-
Change the displayed text on a hyperlink for a Suitelet
Hi There How do I change the text that is displayed for a link on a Suitelet? sublist.setSublistValue({ id: "custpage_transaction_link", line: index, value: transactionUrl, linkText: "View Transaction" }); In the above code snippet, I would expect the link to show the words "ViewTransaction". Instead, it shows the full…
-
Issue with map/reduce not receiving parameters from suitelet.
Hi Guru's I have a script for a suitelet that gets the Location ID and the VendorName. It seems to work and the logs show it passing the parameters. When the Map runs the log shows Null for both fields. I have confirmed the parameters, script ids, a couple dozen times, but I keep getting the same issue. Would someone…
-
Changes to the https.requestSuitelet(options) SuiteScript method
This notice applies to customers where https.requestSuitelet(options) is still used in one or more SuiteScript scripts in your account. The behavior of this API will change by the end of this month. What is changing? Effective June 13, 2024, https.requestSuitelet() is supported for internal URLs. This will become the…
-
Changes to the url.resolveScript(options) SuiteScript method
This notice applies to customers with scripts using the url.resolveScript(options) method to return an external URL in an untrusted context. What is changing? As of July 30, 2024, the return of external URLs with url.resolveScript(options) will be allowed only for authenticated sessions. Scripts that use…
-
Changes to the https.requestSuitelet(options) SuiteScript method
This notice a applies to customers where https.requestSuitelet(options) is used in one or more SuiteScript scripts in your account. The behavior of this API will change in the coming months. What is changing? Effective June 13, 2024, https.requestSuitelet() will be supported for internal URLs. This will become the default…
-
Adding custom buttons to a suitelet response that calls a function
My suitelet calls a restlet and it's all working fine. The restlet adds sales order lines to existing sales orders. I'm adding a work/approval flow and transforming the salesorders into invoices and sending emails on another restlet call. I was originally making the call to the restlet in the response/on the submit. I…
-
How can I add field help for external suitelet?
I want to add field help for the field created on the external suitelet (available without Netsuite login). I have tried the native way of using helpText parameter for the UI field on the suitelet but could not achieve the same. Instead, we get a login button on the field help pop-up box.