我正在尝试加载如下的自定义记录:
var mergeRecord = record.load({
type: record.Type.'custrecord_merge_vendor',
id: '12',
isDynamic: true
});
Run Code Online (Sandbox Code Playgroud)
这看似错误..但标准记录的等价如下:
var objRecord = record.load({
type: record.Type.SALES_ORDER,
id: 157,
isDynamic: true,
});
Run Code Online (Sandbox Code Playgroud)
这该怎么做 ?