-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateRecord.js
More file actions
33 lines (33 loc) · 871 Bytes
/
CreateRecord.js
File metadata and controls
33 lines (33 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
*@NApiVersion 2.x
*/
require(['N/record'], function(record) {
function createAndSaveContactRecord() {
var nameData = {
firstname: 'John',
middlename: 'Doe',
lastname: 'Smith'
};
var objRecord = record.create({
type: record.Type.CONTACT,
isDynamic: true
});
objRecord.setValue({
fieldId: 'subsidiary',
value: '1'
});
for ( var key in nameData) {
if (nameData.hasOwnProperty(key)) {
objRecord.setValue({
fieldId: key,
value: nameData[key]
});
}
}
var recordId = objRecord.save({
enableSourcing: false,
ignoreMandatoryFields: false
});
}
createAndSaveContactRecord();
});