“Technology – The Death of Libraries” may convey the idea that advancements in technology are leading to a decline in the traditional role of libraries. While it’s true that technology has significantly transformed how information is accessed and shared, it’s important to note that libraries continue to evolve and adapt to these changes. Here’s a… Continue reading Technology – The Death of Libraries
Month: November 2023
Lifestyle for Environment (LiFE)
Lifestyle for Environment, or LiFE, emphasizes the idea that individual choices and daily habits play a crucial role in environmental conservation and sustainability. It encourages people to adopt eco-friendly practices in various aspects of their lives, recognizing that collective efforts on a personal level can contribute significantly to global environmental well-being. Key Principles: Reducing Carbon… Continue reading Lifestyle for Environment (LiFE)
Formula for saved search to get the recent dates from system note according to field change
Here need to get the recent date when the field pipeline stage has a value opportunity else the date should be null. Click on result tab and under columns select Formula(Date) : Summary Type : Maximum Description : coalesce(max( case when{systemnotes.field} in (‘Pipeline stage’) AND {systemnotes.newvalue} in (‘Opportunity’) then {systemnotes.date} end),Null). available filter : Internal… Continue reading Formula for saved search to get the recent dates from system note according to field change
Formula For Saved search which shows the systemnotes values using multiple case.
Formula(Date) : Summary Type : Maximum Description : coalesce(max(case when {systemnotes.field} in (‘Pipeline stage’) and {systemnotes.oldvalue} in (‘Opportunity’) then {systemnotes.date} when {systemnotes.field} in (‘Deal Status’) and {systemnotes.newvalue} in (‘Won’, ‘Lost’)then {systemnotes.date}end ), current_date ) available filter : Internal Id
Map/Reduce Script to Update Landed Cost In IR record using CSV Custom Import
The client needs to update the landed cost template at line level in IR record using a CSV file. We have created a map/reduce script to update the values.
Boosting Revenue and Customer Satisfaction: The Power of Upselling and Cross-Selling in NetSuite
NetSuite provides businesses with powerful tools for upselling and cross-selling to boost revenue and enhance customer satisfaction. In this article, we’ll delve into the significance of upselling and cross-selling in NetSuite and how businesses can leverage these strategies to thrive in the marketplace. Understanding Upselling and Cross-Selling: 1. Upselling: Upselling involves encouraging customers to purchase… Continue reading Boosting Revenue and Customer Satisfaction: The Power of Upselling and Cross-Selling in NetSuite
NetSuite Time Tracking: Effortless Precision for Work Hours
The article delves into the user-friendly options available, highlighting the efficiency of the NetSuite Time Calculator. Manual Entry and Real-Time Tracking: Users can opt for manual entry or real-time tracking with the NetSuite Timer. Navigate to Transactions > Employees > Track Time. Fill in details and click Calculate. Input Start Time, End Time, and Break.… Continue reading NetSuite Time Tracking: Effortless Precision for Work Hours
Navigating NetSuite Email Size Limits: A Comprehensive Guide
NetSuite imposes specific size limits for both outbound and inbound emails, encompassing the content and any attachments included in the communication. Outbound Email Limits: For outbound emails, NetSuite imposes a total size limit of 15 MB, encompassing both the email content and any attached files. This allowance accommodates necessary items like email headers and encoding.… Continue reading Navigating NetSuite Email Size Limits: A Comprehensive Guide
Web Store Sessions
If your online store uses a separate, non-secure web store domain linked to a secure checkout domain, the two domains hold different types of information related to the same website session: Non-secure HTTP web store domain: Supports non-secure content and shopping pages. Secure HTTPS checkout domain: Supports secure content and checkout and My Account pages.… Continue reading Web Store Sessions
npm commands
npm install: This command is used to install the dependencies listed in your project’s package.json file. It reads the dependencies from the “dependencies” and “devDependencies” sections and installs them locally in the node_modules folder. npm install next: This installs the Next.js framework as a project dependency. Next.js is a React framework that simplifies the process… Continue reading npm commands