Modules

filter

 

Objects/Functions

module (N/task)

SuiteScript 2.0

task.DedupeEntityType

task.DedupeEntityType.{|CUSTOMER,CONTACT,VENDOR,PARTNER,LEAD,PROSPECT|}

N/task Module
task.DedupeEntityType
Enum Description: Enumeration that holds the string values for entity types for which you can merge duplicate records with task.EntityDeduplicationTask. Use this enum for the EntityDeduplicationTask.entityType. JavaScript does not include an enumeration type. The SuiteScript 2.0 documentation utilizes the term enumeration (or enum) to describe the following: a plain JavaScript object with a flat, map-like structure. Within this object, each key points to a read-only string value.
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/task Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=task.DedupeEntityType

Example:

// Code Example 1
//Add additional code
//...
dedupeTask.entityType = task.DedupeEntityType.CUSTOMER;
//...
//Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4345807845.html