megaphone
SuiteWorld 2026の登録が開始されました。今なら300ドル節約できます。 今すぐ登録しましょう

ディスカッション

NetSuiteの保存検索やレポートをマスターするための究極のガイドである分析センターを使用して、データの力を最大限に活用しましょう。複雑さを単純化し、組織の真の可能性を解き放ちます。今すぐ分析センターに参加して、新たな高みを目指しましょう!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.

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);

ようこそ!

サインイン

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

登録

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

リーダーボード

コミュニティの達人

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

今週のリーダー

今月のリーダー

歴代リーダー