ディスカッション
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.
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.
SuiteScript1.0でチーム販売を有効にした注文書から営業担当者の値を取得/設定
適用
製品: 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);
タグ付けされた:
0