問題タブ [suitescript2.0]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
639 参照

netsuite - SuitScript を介してレコードの編集保存プロセスをトリガーするにはどうすればよいですか?

ユーザーイベントの作成または更新によってトリガーされるスクリプトがいくつかあります。netSuite レコードの Edit-Save プロセスをシミュレートするために suitscript を使用する方法を教えてください。

次のコードは、他のスクリプトをトリガーしません。

function triggerScriptTest() {
nlapiLogExecution('debug','Start!!!');
var record = nlapiLoadRecord('itemfulfillment', 267765);
var itemCount = record.getLineItemCount('item');
nlapiLogExecution('debug','Number of Items',itemCount);
var id = nlapiSubmitRecord(レコード、真);
nlapiLogExecution('デバッグ','完了!!!');
}