netsuite
레코드로드하기
수색…
SS 1.0
var recordType = 'customer'; // The type of record to load. The string internal id.
var recordID = 100; // The specific record instances numeric internal id.
var initializeValues = null;
/* The first two parameters are required but the third --
* in this case the variable initializeValues -- is optional. */
var loadedRecord = nlapiLoadRecord(recordType, recordID, initializeValues);
SS 2.0
이 예제에서는 아래와 같이 레코드 모듈이 RECORDMODULE 변수로 설정되어 있다고 가정합니다.
require(['N/record'], function(RECORDMODULE){
var recordType = RECORDMODULE.Type.SALES_ORDER; //The type of record to load.
var recordID = 100; //The internal ID of the existing record instance in NetSuite.
var isDynamic = true; //Determines whether to load the record in dynamic mode.
var loadedRecord = RECORDMODULE.load({
type: recordType,
id: recordID,
isDynamic: isDynamic,
});
});
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow