ディスカッション
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.
NetSuite管理者ヒント| SuiteQLを使用した複数の高額な顧客を持つトップ営業担当者
営業リーダーは、多くの場合、売上別の業績のよい営業担当者のリスト以上のものを求めています。複数の価値の高い顧客を一貫して管理し、請求されていない強力な販売を維持し、正常な平均注文額を生成する営業担当者の特定から、より深いレベルのインサイトが得られます。
管理者は、SuiteQLを使用して、トランザクション、顧客および従業員レコードを高度な集計およびフィルタリング・ロジックと組み合せることで、このデータを効率的に表面化できます。この記事では、パフォーマンス・レビュー、テリトリ・プランニングおよび戦略的な販売分析に最適な、複数の価値の高い顧客関係を管理する営業担当者を対象とした、実用的なSuiteQLクエリについて説明します。
サンプルクエリ: 複数の高価値の顧客を管理する営業担当者の検索
SELECT
e.entityid AS salesrep_name,
COUNT(DISTINCT c.id) AS high_value_customers,
SUM(t.amountunbilled) AS total_unbilled_sales,
AVG(t.amountunbilled) AS avg_order_value
FROM transaction t
JOIN customer c ON t.entity = c.id
JOIN employee e ON c.salesrep = e.id
WHERE t.type = 'SalesOrd'
GROUP BY e.entityid
HAVING
COUNT(DISTINCT c.id) >= 5 -- 5つ以上の高価値の顧客
AND SUM(t.amountunbilled) > 150000 -- すべての顧客の合計未請求
AND AVG(t.amountunbilled) > 5000 -- 正常平均注文額
ORDER BY total_unbilled_sales DESC
クエリ詳細
JOINs:
- 顧客への注文書のリンク
- 各顧客を割り当てられた営業担当者(従業員)に接続します。
Aggregation:
- COUNT(DISTINCT c.id)は、営業担当者ごとに一意の顧客を集計します。
- SUM(t.amountunbilled)各担当者のすべての未請求売上合計。
- AVG(t.amountunbilled)は注文書ごとの平均値を示します。
GROUP BY e.entityid:各営業担当者の計算をロールアップします。
HAVING:
- 少なくとも5人のユニーク顧客を持つ担当者のみに結果を限定します。
- 未請求売上合計が150,000ドルを超える場合
- AND平均注文額が$5,000を上回る。
ORDER BY:営業担当者を最も高い未請求売上合計から最も低い売上にランク付けします。
SuiteQLクエリを簡単に実行するには、see
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!
タグ付けされた:
0
