ディスカッション

NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.

Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.

SuiteScript 2.0 > ユーザイベントスクリプト >関数のパラメータとして呼び出しているクライアントスクリプトに変数を渡す

編集済:Jun 2, 2025 2:48PM SuiteCloud / カスタマイズ

適用

製品:  NetSuite 2022.1



シナリオ

ユーザーは、ユーザー・イベントスクリプトから参照先のクライアント・スクリプトに値を渡すことで、クライアント・スクリプト内でのその後の処理に使用できます。クライアント・スクリプトは、beforeLoadのユーザー・イベント・スクリプトで作成されたボタンによってトリガーされます。

 



解決策

クライアント・スクリプトのいずれかの関数で、必要な値を含む変数を関数パラメータとして渡します。 次のサンプルコードには、数値、文字列またはURLパラメータを渡す場合のシナリオが含まれています。

  1. ステップ1: 渡す値を使用するクライアント・スクリプトを作成して、ファイル・キャビネットにアップロードします。

     
    /** 
     * NApiVersion 2.x 
     * NScriptType ClientScript 
     */ 
    define(['N/ui/dialog'], 
    function(dialog) { 
    function pageInit(context) { 
    } 
    function showPassedValueFunc(paramTest) { 
    var clientVar = paramTest 
    var options = { 
    title: "Passed Value", 
    message: clientVar //Display the value using an alert dialog 
    }; 
    dialog.alert(options) 
    } 
    return { 
    pageInit: pageInit, 
    showPassedValueFunc: showPassedValueFunc 
    }; 
    }); 
    

     

  2. ステップ2: クライアントスクリプトを呼び出し、それに値を渡すユーザーイベントスクリプトを作成します。目的のレコードにスクリプトをデプロイします。

     
    /** 
     * NApiVersion 2.x 
     * NScriptType UserEventScript 
     * NModuleScope SameAccount 
     */ 
    define(['N/url'], 
    function(url) { 
    /** 
         * Function definition to be triggered before record is loaded. 
         * 
         * @param {Object} scriptContext 
         * @param {Record} scriptContext.newRecord - New record 
         * @param {string} scriptContext.type - Trigger type 
         * @param {Form} scriptContext.form - Current form 
         * Since 2015.2 
         */ 
    function beforeLoad(scriptContext) { 
    var userVarNum = 777; 
    var userVarStr = 'Sample String'; 
    var userVarURL = url.resolveRecord({ 
    recordType

ようこそ!

サインイン

完全な詳細を表示するには、サインインしてください。

登録

アカウントがありませんか?ここをクリックして始めましょう!

リーダーボード

コミュニティの達人

第2四半期 (4月~6月 2026)

今週のリーダー

今月のリーダー

歴代リーダー