ディスカッション
NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
NetSuite の始め方 |クライアント・スクリプト: validateDelete(scriptContext)
NetSuite の始め方 | SuiteScript タイプの概要の記事で、すべてのタイプのSuiteScriptについて説明したので、様々なタイプのクライアント・スクリプトに焦点を当てます。validateDeleteは、削除される前にサブリスト行の削除を検証するために使用されます。このイベントは、ユーザーがレコードの編集可能なサブリストにある既存の行を削除しようとしたときにトリガーされます。開発者は、カスタム・ビジネス・ロジックに基づいて削除を許可するかどうかを制御できます。
戻り値:
•行の削除が有効で続行できる場合はtrueを返します。
•削除をブロックする必要がある場合、falseを返します。
validateDelete関数の簡単な例を次に示します。
/**
* @NApiVersion 2.x
* @NScriptType ClientScript
* @NModuleScope SameAccount
*/
define(['N/error','N/currentRecord'],
function(error,currentRecord) {
/**
* Function to be executed after page is initialized.
*
* @param {Object} scriptContext
* @param {Record} scriptContext.currentRecord - Current form record
* @param {string} scriptContext.mode - The mode in which the record is being accessed (create, copy, or edit)
*
*
*/
/**
* Function to be executed after sublist is inserted, removed, or edited.
*
* @param {Object} scriptContext
* @param {Record} scriptContext.currentRecord - Current form record
* @param {string} scriptContext.sublistId - Sublist name
*
*/
function validateDelete(scriptContext) {
var currentRecord = scriptContext.currentRecord;
var fieldId = scriptContext.fieldId;
var sublistId = scriptContext.sublistId; Richard James Uri - SuiteCloud | WMS Tech | SuiteCommerce Advanced
----
- NetSuite Admin Corner | New to NetSuite
- Explore the NSC Webinars Category
- Join our poll and share your ideas! We want to know what you think. Don't forget to comment and make your voice heard!
- Expand your NetSuite knowledge by joining this month's Ask A Guru Live about Suitecloud. RSVP on this event now!
タグ付けされた:
0
