Shopify – Making bill payments in Indian rupees (INR)

In India, you can pay your Shopify bills in Indian rupees (INR) using Unified Payments Interface (UPI), or a co‑branded debit or credit card through Visa, Mastercard, or the RuPay network. Note: If your store is on the Plus plan and you want to pay your Shopify Bills in Indian rupees (INR), then contact Shopify… Continue reading Shopify – Making bill payments in Indian rupees (INR)

Unlocking Personalized Shopping: How to Activate Intelligent Recommendations in SuiteCommerce

In today’s competitive e-commerce landscape, personalization is no longer optional—it’s expected. NetSuite’s Intelligent Recommendations feature for SuiteCommerce empowers businesses to deliver tailored product suggestions based on customer behavior and transaction history. This article walks you through how to activate and use this powerful tool to boost conversions and enhance customer experience. What Are Intelligent Recommendations?… Continue reading Unlocking Personalized Shopping: How to Activate Intelligent Recommendations in SuiteCommerce

Validating Mandatory Fields for Signature Controlled Items on Checkout Review Page

Overview In SuiteCommerce, certain items classified as “Controlled : Signature Controlled” require additional prescriber information before an order can be placed. This article explains how to enforce frontend validation on the Checkout Review Page, especially when users add such items via a new tab, causing the cart to refresh dynamically. Scenario A user begins checkout… Continue reading Validating Mandatory Fields for Signature Controlled Items on Checkout Review Page

Graphql MetaObect Details from Shopify

Metaobjects entries details can be fetched from Shopify with the following graphQL query: query getMetaobjectByName($afterCursor: String) { metaobjects(type: “${metaObjectType}”, first: 200, after: $afterCursor) { edges { node { id handle type fields { key value } } } pageInfo { hasNextPage endCursor } } }

Applying Logic to a Button (Make Copy) in NetSuite

Overview In NetSuite, the “Make Copy” button allows users to duplicate existing transaction records—such as Sales Orders, Invoices, or Purchase Orders—while retaining most of the original data. However, there may be cases where you need to apply custom logic during this duplication process (for example, clearing certain fields, recalculating amounts, or setting new default values).… Continue reading Applying Logic to a Button (Make Copy) in NetSuite

How to Export Formatted Excel Reports Using ExcelJS in JavaScript

This example demonstrates how to generate a styled Excel report using ExcelJS in JavaScript. It includes custom headers, conditional formatting, column alignment, and dynamic column width adjustment. import ExcelJS from ‘exceljs’; import { saveAs } from ‘file-saver’; const downloadReport = async (reportData, options = {}) => {  try {   const {    centerAlignedCols = [‘Quantity’],    rightAlignedCols… Continue reading How to Export Formatted Excel Reports Using ExcelJS in JavaScript

Basic Joins in Sequelize

Sequelize makes it easy to work with related database tables. Often, a table is connected to another, and fetching related data requires a join. This article explains how to perform basic joins in Sequelize using simple associations. 1. Setting up models Consider two tables: User and Invoice. A user can have many invoices, and each… Continue reading Basic Joins in Sequelize

How can you implement custom error boundaries in a Next.js project to gracefully handle errors and prevent the entire application from crashing?

Here’s how to implement custom error boundaries in Next.js to gracefully handle errors and enhance application resilience: 1. Create a Custom Error Boundary Component: Define a class component that extends React’s React.Component class. Implement the static getDerivedStateFromError(error) lifecycle method to capture errors and update the component’s state. Render a fallback UI in the render() method when errors occur, preventing the entire application… Continue reading How can you implement custom error boundaries in a Next.js project to gracefully handle errors and prevent the entire application from crashing?

Address incorrect “isSCISIntegrationEnabled” configuration for existing domains in SuiteCommerce

There might be an instance that that keeping the SCIS Integration feature enabled may lead to log errors on the account, potentially impacting the website’s performance. Disabling this feature would eliminate the CPU load, thus improving overall efficiency. To resolve this, kindly perform the steps below: Navigate to Commerce > Websites > Configuration Select website and domain Click Configure In… Continue reading Address incorrect “isSCISIntegrationEnabled” configuration for existing domains in SuiteCommerce

Shopify to NetSuite Customer Sync: Map/Reduce Script Integration Guide

Integrating Shopify with NetSuite helps automate the synchronization of customer data between both platforms. This ensures customer information, such as contact details and order history, is consistent and up-to-date across both systems, reducing manual effort and errors. With this integration, businesses can improve operational efficiency and gain real-time visibility into their customer data. In this… Continue reading Shopify to NetSuite Customer Sync: Map/Reduce Script Integration Guide

Published
Categorized as Shopify