ディスカッション

スイート全体に組み込まれたAI機能は、データをより迅速に分析し、より優れた意思決定を促進する独自の考察を生成できるようにすることで、生産性を向上させ、リーダーに利便性をもたらします。オラクルのAI機能がどのように役立つかについては、これらのオンデマンド・ウェビナーをご覧ください。

AIを用いた自動化で請求書処理を合理化

AIを用いた考察を使用して、計画と予測を迅速化
NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
NetSuite Release 2025.1リリース・ノートは、こちらからダウンロードできます。
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more

SuiteScript1.0でチーム販売を有効にした注文書から営業担当者の値を取得/設定

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

適用

製品: NetSuite 2023.2



シナリオ

顧客は、営業担当者フィールドの値を設定/取得する方法を知りたいと考えています。チーム販売が有効/無効になっています。



解決策

チーム販売が有効になっていない場合、営業担当者フィールドが注文の本文に表示され、フィールドIDにアクセスしてフィールドを取得/設定できる場合は、以下のスクリプトを参照してください。 
 

 
var rec = nlapiLoadRecord('salesorder', xx); //xx is the internal id of the sales order 
var salesrep = rec.getFieldValue('salesrep'); // Will give the internal id of the employee, In order to get the name use getFieldText 
// To set the field value 
var sales rep = rec.setFieldValue('salesrep',xx); //xx is the internal id of employee
 
 
チーム販売機能を有効にすると、トランザクションの本体に営業担当者フィールドが表示されなくなり、営業チームタブが作成されます。営業担当者を設定するには、ここに従業員フィールドを入力します。以下のスクリプトを参照してください。 
 
 
var rec = nlapiLoadRecord('salesorder', xx); //xx is the internal id of sales order 
rec.selectLineItem('salesteam',1); 
rec.setLineItemValue('salesteam', 'employee',1, x); //x is the internal id of employee 
rec.setLineItemValue('salesteam', 'salesrole',1, x); //x is the internal id of the sales role (Setup > Sales >CRM Lists) 
rec.setLineItemValue('salesteam', 'isprimary',1, 'T'); 
rec.setLineItemValue('salesteam', 'contribution',1, '100'); 
nlapiCommitLineItem('salesteam'); 
nlapiSubmitRecord(rec,true);

ようこそ!

サインイン

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

登録

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

リーダーボード

コミュニティの達人

第4四半期 (Oct-Dec 2025年)

今週のリーダー

今月のリーダー

歴代リーダー