When a case record is entered, it needs to be assigned to either a person or a group. To grab a case: Grabbing is a quick way to assign a case to yourself. When you assign a case to yourself, you can respond to the customer. You have to be a support representative in order… Continue reading Grabbing and Assigning Cases
Tag: case record
Restricting Case Access Based on Subsidiary
Summary: This article explains how to configure case access restrictions based on subsidiaries in NetSuite. By enabling this feature, support representatives will only be able to access cases associated with the subsidiaries selected for their support rep role. The article highlights the purpose of the “Restrict Cases Based on Subsidiary” checkbox and its impact on… Continue reading Restricting Case Access Based on Subsidiary
Create a Saved Case Search Based on Case Aging
Report on Support Cases which were closed within a certain number of days or which are considered aging. Solution Create a Saved Case Search that were closed in X days. In this example, assume that X = 7 days. Navigate to Lists > Search > Saved Searches > New Select Case Search Title: Enter a Search Title Check Public checkbox Click Criteria tab Click Standard subtab Filter: Select Formula (Numeric) Saved Case Search popup: Formula: Enter CASE WHEN (ROUND({closed} –… Continue reading Create a Saved Case Search Based on Case Aging
Online Case form sample template (Hiding mandatory fields)
This is a custom template That can be used for creating online case forms in Netsuite. The online case forms can be used to create a new case record in NetSuite from the website. While submitting the form a case record will be created on the NetSuite. In this template, we can see the script… Continue reading Online Case form sample template (Hiding mandatory fields)
Add “supplier name” under “COMPANY” in Case form
Description In the case form, can we add “supplier name” under “COMPANY” currently we can only select a customer and would like to use the case for issues with both. Solution Cases track the issues reported by your customers and the responses your support representatives give. Cases are created when your customers report problems, ask… Continue reading Add “supplier name” under “COMPANY” in Case form
CASE SAVED SEARCH
REQUIREMENT: New Saved Search and custom fields to support the report. Eagle Point Solutions are desiring a new saved search to report on the status of cases. This saved search will pull from related records and require some new fields as well. A visual of what the report would look like is on the following… Continue reading CASE SAVED SEARCH
Attaching Records to A support Case
Solution We can attach records to a support case by following code syntax : record.attach({ record:{ id: caseid, type: record.Type.SUPPORT_CASE}, to: {id: id, type: ‘transaction’} }); Where case id – case record internal id id : internal id of the transaction which we want to attach Module : N/record