Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
NetSuite Admin Tip | Sales Orders Age Calculation Using SuiteQL
When working with NetSuite, it’s essential to track the age of transactions, especially Sales Orders. Calculating the age, in days, of Sales Orders allows businesses to monitor how long these orders have been open and take appropriate actions if necessary. Using SuiteQL, you can efficiently retrieve this data with a simple query. Below is the SQL query you can use:
SELECT TranDate AS Date, trandisplayname AS SONumber, TRUNC(SYSDATE) - TranDate AS Age, BUILTIN.DF(entity) AS Customer FROM Transaction WHERE type = 'SalesOrd' ORDER BY TranDate;
This query calculates the age of Sales Orders based on the transaction date (
Richard James Uri - SuiteCloud | WMS Tech | SuiteCommerce Advanced
----
- 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!
- Expand your NetSuite knowledge by joining this month's Ask A Guru Live about Basic Accounting. RSVP on this event now!