In site builder , the below events can be tracked. Page Hit Reports Web Sales Reports Keyword and Referrer Reports Web Activity Reports Internal Search Reports Using Tracking Pixels for Analytics Of these Web Sales Reports and Web Activity Reports can be tracked in SCA using SuiteCommerce Analytics Data, Google Analytics 4 (with Google Tag… Continue reading Reports for Commerce Website Traffic
Category: Coding Standard
Cvv authorization in SCA
Cvv authorization is not supported in SCA at the time of adding Cvv. Later payment will be rejected in the backend. Reason:In NetSuite, the credit card authorization process is carried out by default. NetSuite transfers the payment details to the payment gateway when a user completes a transaction. The issuing bank receives the authorization request… Continue reading Cvv authorization in SCA
SDF Custom Object Dependencies in SuiteApps: Ensuring Seamless Integration and Scalability
SuiteCloud Development Framework (SDF) offers robust tools for creating custom objects within NetSuite, facilitating tailored solutions that meet specific business needs. When developing SuiteApps that incorporate custom objects, managing dependencies becomes critical to ensure seamless integration, scalability, and maintainability. This article explores the concept of SDF custom object dependencies in SuiteApps, outlining best practices and… Continue reading SDF Custom Object Dependencies in SuiteApps: Ensuring Seamless Integration and Scalability
Product Reviews Custom Record
The Product Reviews record displays all reviews for an item in the Product Reviews subtab of the Item record under the SuiteCommerce Product Reviews tab. A moderator can evaluate reviews and control the display of reviews on your website. Note: Product review statistics are only calculated for approved reviews. In the top panel of the… Continue reading Product Reviews Custom Record
Create a Product Feed
The SuiteCommerce Product Feed extension includes default saved searches for Google, Facebook, and custom CSV outputs. You can use these templates to create new saved searches that include additional information you may want to add to your product feed. Only saved searches created within the Product Feed record will be displayed in the Saved Search… Continue reading Create a Product Feed
Integrating NetSuite Workflows with SuiteCloud Development Framework (SDF)
Integrating NetSuite workflows using Suite Cloud Development Framework (SDF) provides businesses with powerful automation capabilities to streamline processes and improve operational efficiency. This topic explores best practices and techniques for leveraging SDF to create, manage, and optimize workflows within the NetSuite platform. Understanding NetSuite Workflows: Overview of NetSuite workflows and their role in automating business… Continue reading Integrating NetSuite Workflows with SuiteCloud Development Framework (SDF)
How to Sync Your VS Code Project with a New Branch on GitHub After Deleting the Old Branch
Step 1: Fetch the Latest Changes To update the list of branches in your local repository, you need to fetch the latest changes from the remote repository. This step is crucial to ensure your local Git setup is aware of the changes made on GitHub. Open the Terminal in VS Code: You can open the… Continue reading How to Sync Your VS Code Project with a New Branch on GitHub After Deleting the Old Branch
Adding View Record Link via Mail when a record is created/Updated_User Event Script
Adding View Record Link via Mail when a record is created/Updated using user event Script – After Submit define([‘N/email’, ‘N/record’, ‘N/runtime’, ‘N/url’ ], (email, record, runtime, url, search) => { const afterSubmit = (scriptContext) => { try { … Continue reading Adding View Record Link via Mail when a record is created/Updated_User Event Script
Missing Transactions in My Account Order History of a SuiteCommerce Advanced Web Store
Issue: Some of the transactions were missing on the transaction history or purchase history on the my-account page of the website. The number of transactions on the Customer record (Lists > Relationships > Customers > Sales tab > Transactions sub tab) and on SuiteCommerce Advanced (SCA) My Account page (My Account > Orders > Order History/Transaction History) are different. Solution: This is usually happens when the Multiple Web Sites feature is enabled. By default, Sales… Continue reading Missing Transactions in My Account Order History of a SuiteCommerce Advanced Web Store
To add new custom role in wordpress
To add a new custom user role in WordPress, you typically need to use code. Here’s a basic outline of the process: Create a new custom role: You can use the add_role() function in WordPress to create a new role. This function accepts four parameters: the role name, the display name, capabilities (optional), and the… Continue reading To add new custom role in wordpress