Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer peopleโ€™s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer peopleโ€™s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The NetSuite Pro

The NetSuite Pro Logo The NetSuite Pro Logo

The NetSuite Pro Navigation

  • Home
  • About Us
  • Tutorials
    • NetSuite Scripting
    • NetSuite Customization
    • NetSuite Integration
    • NetSuite Advanced PDF Templates
    • NetSuite Reporting & Analytics Guide
    • Real-World NetSuite Examples
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • About Us
  • Tutorials
    • NetSuite Scripting
    • NetSuite Customization
    • NetSuite Integration
    • NetSuite Advanced PDF Templates
    • NetSuite Reporting & Analytics Guide
    • Real-World NetSuite Examples
  • Blog
  • Contact Us
Home/ NetSuite Customization Guide: Fields, Forms, Workflows & Scripts/SuiteAnalytics Advanced Reporting Framework in NetSuite (KPIs, Joins & Dashboards)

SuiteAnalytics Advanced Reporting Framework in NetSuite (KPIs, Joins & Dashboards)

๐Ÿงฉ SuiteAnalytics Advanced Reporting Framework (KPIs, Joins & Dashboards)

Introduction

Data is the lifeblood of decision-making in NetSuite โ€” but raw reports and saved searches only go so far.
With SuiteAnalytics Workbooks, you can design a custom reporting framework that pulls together data from multiple records, applies formulas, and displays beautiful charts directly in your NetSuite dashboards.

This guide walks you through creating joined datasets, KPIs, and dashboards using the SuiteAnalytics Advanced Reporting Framework โ€” a tool every functional consultant, CFO, or NetSuite admin should master.


๐Ÿ’ก Why Use SuiteAnalytics Framework?

AdvantageDescription
Real-Time DataReports auto-refresh from live NetSuite data.
Relational JoinsJoin records like Customer โ†” Sales Order โ†” Invoice.
Visual DashboardsCharts, pivot tables, and KPIs on one screen.
User-FriendlyNo SuiteScript required.
SecureRole-based data access.

โœ… Perfect for executives, finance managers, and auditors needing dynamic analytics.


๐Ÿงฑ Step 1: Understand SuiteAnalytics Components

ComponentDescription
DatasetThe data source โ€” like a Saved Search, but supports joins and formulas.
WorkbookA report or visualization built on one or more datasets.
Chart / Pivot TableVisual representation (bar, pie, line charts, etc.).
Dashboard PortletDisplays your workbook in the Home or Center Dashboard.

โš™๏ธ Step 2: Create a Dataset with Joins

Example: Customer Sales Performance Dataset

  1. Go to Analytics โ†’ Datasets โ†’ New Dataset.
  2. Select Primary Record Type = Customer.
  3. Add joins:
    • Transactions โ†’ Sales Orders
    • Transactions โ†’ Invoices
  4. Choose columns:
    • Customer โ†’ Entity ID
    • Transaction โ†’ Amount
    • Transaction โ†’ Date
    • Transaction โ†’ Status
  5. Add formula fields: CASE WHEN {transaction.type}='Invoice' THEN {transaction.amount} ELSE 0 END โ†’ Rename: Invoice Amount
  6. Save dataset as: Customer_Sales_Dataset.

โœ… You now have relational data ready for analytics.


๐Ÿงฉ Step 3: Build Your Workbook

  1. Go to Analytics โ†’ Workbooks โ†’ New Workbook.
  2. Select the Customer_Sales_Dataset.
  3. Add visualizations:
    • Pivot Table 1: Total Invoice Amount by Customer & Month
    • Chart 1: Top 10 Customers by Sales Volume
    • Chart 2: Monthly Trend of Sales Orders vs Invoices
  4. Add filters:
    • Date = This Quarter
    • Status = โ€œBilledโ€ or โ€œPaidโ€

โœ… You can now analyze sales performance dynamically.


๐Ÿ“ˆ Step 4: Create KPI Scorecards

KPI Scorecards turn data into executive metrics.

  1. Navigate to Customization โ†’ Centers and Tabs โ†’ KPI Scorecards.
  2. Create Scorecard: Quarterly Financial KPIs
  3. Metrics:
    • Total Sales = SUM({Transaction.Amount})
    • Open Invoices = COUNT(Status = โ€œOpenโ€)
    • Gross Margin % = (Total Sales - COGS) / Total Sales * 100
  4. Add Trend Graph: โ€œSales Growth % (Last 4 Quarters)โ€
  5. Publish to Home Dashboard.

โœ… Real-time metrics for leadership teams.


๐Ÿง  Step 5: Add Conditional Formatting & Formulas

Example 1 โ€” Highlight Underperforming Customers:

Formula:

CASE WHEN {transaction.amount} < 10000 THEN 'โš  Low Revenue' ELSE 'โœ… OK' END

Example 2 โ€” Aging Buckets for Invoices:

CASE 
  WHEN {daysopen} <= 30 THEN '0-30 Days'
  WHEN {daysopen} <= 60 THEN '31-60 Days'
  ELSE 'Over 60 Days'
END

โœ… Makes financial and operational reporting more meaningful.


โšก Step 6: Embed Workbooks in Dashboards

  1. Go to Home โ†’ Personalize โ†’ Analytics Portlet
  2. Choose your workbook or KPI Scorecard
  3. Resize and reorder portlets for layout
  4. (Optional) Add a custom Suitelet Portlet to combine multiple datasets visually

๐Ÿ’ก Pro Tip: Create different dashboard tabs:

  • โ€œExecutive Dashboardโ€
  • โ€œFinance KPI Boardโ€
  • โ€œIntegration & Governance Monitorโ€

๐Ÿงฉ Step 7: Advanced SuiteAnalytics Joins

Join across complex data models using related record fields.

Join TypeExampleUse Case
1-to-ManyCustomer โ†’ Sales OrderSales volume analysis
1-to-1Transaction โ†’ CurrencyFX breakdown
Cross JoinItem โ†’ VendorProcurement cost tracking
Filtered JoinOnly Active CustomersClean data set

โœ… Each join creates relational flexibility โ€” no SQL coding needed.


๐Ÿงฎ Step 8: Automate Workbook Refresh & Distribution

  • Click Schedule โ†’ Refresh & Email
  • Send weekly or monthly reports to management
  • Attach as PDF or Excel
  • Optional: Save in File Cabinet for archival

โœ… Keeps everyone informed without manual effort.


๐Ÿ”’ Step 9: Control Access & Security

Control TypeBest Practice
Role-Based VisibilityAssign workbook access per department
Field-Level RestrictionsHide confidential fields (e.g., Margin %)
Saved Search FiltersUse current user filters ({user})
Workbook Permissionsโ€œView Onlyโ€ for business users

โœ… Ensures data integrity and privacy compliance.


๐Ÿงฐ Step 10: Real-World Use Cases

DepartmentDashboard Example
FinanceRevenue by Month, Expense Ratio, AR Aging
OperationsFulfillment Delays, Item Demand Trends
SalesPipeline Revenue, Conversion Rates
IT / IntegrationError Logs, API Health Summary
CFO SuiteP&L KPIs, Gross Margin %, Cash Flow Charts

โœ… Centralized BI inside NetSuite โ€” no external tools required.


๐Ÿ“š Related Tutorials

  • ๐Ÿ‘‰ Custom Record Dashboards & Portlets
  • ๐Ÿ‘‰ Security & Governance Framework
  • ๐Ÿ‘‰ Dynamic Configuration Framework

โ“ FAQ

Q1. Can I join data from multiple subsidiaries?
Yes, use the subsidiary field and enable Multiple Subsidiary Access in your dataset.

Q2. Can workbooks replace saved searches?
In most cases yes โ€” theyโ€™re faster, visual, and easier to share.

Q3. Can I embed SuiteAnalytics charts into Suitelets?
Yes, you can embed iframe URLs of dashboards or use REST APIs to pull workbook data.

Q4. Are workbooks included in SuiteAnalytics Pro only?
No โ€” all SuiteAnalytics Workbooks are available by default, but advanced joins require the Analytics Dataset feature enabled.


๐Ÿงญ Summary

The SuiteAnalytics Advanced Reporting Framework transforms NetSuite into a true Business Intelligence (BI) platform.
By leveraging datasets, joins, KPIs, and dashboards, you can monitor financial health, operational efficiency, and integration performance โ€” all within NetSuite.

With structured dashboards per role and automated refresh scheduling, this framework helps leadership make data-driven decisions in real time โ€” without ever exporting a spreadsheet.

Share
  • Facebook

Leave a ReplyCancel reply

Sidebar

Ask A Question

Stats

  • Questions 6
  • Answers 6
  • Best Answers 0
  • Users 2
  • Popular
  • Answers
  • Rocky

    Issue in running a client script in NetSuite SuiteScript 2.0 ...

    • 1 Answer
  • admin

    How can I send an email with an attachment in ...

    • 1 Answer
  • admin

    How do I avoid SSS_USAGE_LIMIT_EXCEEDED in a Map/Reduce script?

    • 1 Answer
  • admin
    admin added an answer The issue is usually caused by following Wrong script file… September 14, 2025 at 10:33 pm
  • admin
    admin added an answer Steps to send an Invoice PDF by email: define(['N/email', 'N/render',… August 28, 2025 at 3:05 am
  • admin
    admin added an answer This error means your script hit NetSuiteโ€™s governance usage limit… August 28, 2025 at 3:02 am

Top Members

Rocky

Rocky

  • 1 Question
  • 22 Points
Begginer
admin

admin

  • 5 Questions
  • 2 Points

Trending Tags

clientscript netsuite scripting suitescript

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

© 2025 The NetSuite Pro. All Rights Reserved