-
Require a User Note be Created when Field is Changed in Netsuite
Hi there, Our organization uses Netsuite and has created a custom record type with a date field in it. We are trying to make a workflow that triggers whenever the date field is changed to a further date, eg changing the date from 9/16/2020 to 9/17/2020. When this workflow triggers, we would like to require the user to…
-
Expense Report - Line field - Inline
Hi guys! How are you doing? I do need to set up the "Rate" field in Expense Report to inline (or even disable it) when the "Category" is set to "Kilometer Reimbursement" . The "Rate" field is open and available to changes for all other categories. What is the best way to get that? Am I able to use Workflow to do that?…
-
Client Script: disabling a column in a sublist with Field object
The below seems to disable the whole column with one call on line 0 which is what I want. Is that the correct way to use it? for (var i = 0; i < fieldList.length; i++) { fld = rec.getSublistField({ sublistId : 'revenueelement', fieldId : fieldList[i], line : 0 }); fld.isDisabled = true; }
-
How to disable sublist field in a single line in Suitescript 2.0.
Hi team, I need to disable a field on some of the lines in a sublist using Suitescript 2.0 I tried using lineinit and setting isDisabled = true for a line – var cancelReason = currentRecord.getSublistField({ sublistId: 'recmachcustrecord_brl_buy_request', fieldId: "custrecord_brl_cancel_reason", line: selectedLine }); *…
-
CRM - New Business
Discuss tools to help you grow your business business and manage your clients - Opportunities, estimates, sales forecasts and pipeline.
-
Adding Multiple Clients to a Project
I would like to add multiple clients to one project, to be able to bill/invoice them for a particular conference held under a specific project. Another example is that we have many different funders/clients that contribute to a particular piece of research or education attached to one project. Does anyone have a solution…
-
nlapiSetFieldMandatory(fldnam, bool) is not working anymore
A few months back I discovered a site that listed nlapiSetFieldMandatory as an undocumented function for SS1.0. Since then I've applied that function in numerous client scripts and all have worked beautifully until last week. The function no longer acts as intended but instead puts a red * next to the field but does not…
-
Deplyoing a Script to the Customer Centre
Hi all, I have written a before load user event to set certain values on a sales order form in the customer centre. This works correctly when you enter a sales order normally through the employee centre. How would I go about deploying this to the customer centre as well? Cheers ****Resolved**** Managed to fix this, it was…
-
Client Script Fails in Internet Explorer
Hello, I have a client script to fire on Validate Line event which restricts and validates line entry and allows only when return true (condition met) else alert popup and return false This is working but not working on Internet Explorer IE (most versions) The worst part is that neither it gives the alert nor restricts and…
-
Need to update field with a locked record
Hello, I need suggestions for implementing the scenario where we lock purchase orders for all employees after creation so that no one can change it, but we provide a button (userevent beforeload) in view mode, to forward the PO to X employee (field on PO record). Now since the PO is locked but the field needs to be update…