Test Cases for Customer/Contact sync from NetSuite to Adobe: CDUS-5136_Test Cases.xlsx
Month: August 2025
How to Set Up ACH Payments
To enable ACH payments on your Commerce site, you’ll need to complete two key steps: Set up a Payment Instrument for ACH Activate ACH Payment Options Step 1: Setting Up a Payment Instrument for ACH There are two ways to create a payment instrument: Through NetSuite’s Order Management feature Directly by the customer on your… Continue reading How to Set Up ACH Payments
RENDER ADVANCED PDF VIA SUITELET
define([‘N/record’, ‘N/render’, ‘N/search’], (record, render, search) => { “use strict”; const TEMPLATE_MAP = { salesorder: ‘CUSTTMPL_JJ_SO_HIDE_LINE_ITEM_STBUK154’, estimate: ‘CUSTTMPL_JJ_QUOTE_HIDE_LINE_ITEM_STBUK154’, invoice: ‘CUSTTMPL_JJ_INV_HIDE_LINE_ITEM_STBUK154’, itemfulfillment: ‘CUSTTMPL_JJ_IF_HIDE_LINE_ITEM_STBUK154’ }; /** * Searches and maps SO… Continue reading RENDER ADVANCED PDF VIA SUITELET
Amounts Are Showing Either Negative or Positive on the Saved Search Results
Applies To Product: NetSuite 2020.2 Scenario When working on a Transaction Saved Search, users may sometimes see negative amounts. Solution For amounts to show as negative on a Saved Search results, the nature of the account impacted as well as the impact of the transaction being pulled up have to be considered. When the impact of… Continue reading Amounts Are Showing Either Negative or Positive on the Saved Search Results
Future of AI in Finance
AI is proving to be more than a buzzy technology fad and one of those rare advancements—like the internet and cloud computing—that promise to revolutionize the business landscape. For CFO’s and their teams, it couldn’t have come at a better time. “An omnipresent challenge finance leaders face is growing revenue while also expanding margins,” said Matt… Continue reading Future of AI in Finance
Testing RMA in NetSuite
Testing Return Material Authorization (RMA) in NetSuite involves simulating the complete returns process within a sandbox or test environment to ensure workflows, transactions, and accounting impacts are functioning correctly before going live. To begin, verify that you have access to a NetSuite sandbox or test account with roles and permissions to handle returns, item receipts,… Continue reading Testing RMA in NetSuite
NetSuite Ship Central
NetSuite Ship Central enables packing or shipping capabilities with shipping carrier integration within your NetSuite account. It also provides the app that lets you pack and ship orders through a tablet or kiosk device. Based on your fulfillment requirements and setup, you can pack or ship through the app or NetSuite UI. If you set… Continue reading NetSuite Ship Central
meter number is not registered error
To resolve the issue of receiving an error message stating “Could not calculate cost for the selected Realtime rate. Account and meter number are not consistent on Sales Order after FedEx Account Registration”, you should register the FedEx Account again, ensuring that the FedEx Meter Number is picked up by the registration. It is important… Continue reading meter number is not registered error
Invoice Linked to Journal Entry, But Payment Record Missing
User creates a customer payment record by applying an invoice and a journal. But after saving it, the payment record is not visible. This is because, when applying a journal entry to an invoice, a customer payment record is not created if the journal entry amount matches the invoice amount. In this case, the invoice… Continue reading Invoice Linked to Journal Entry, But Payment Record Missing
Search Optimisation in Magento 2
Here is the custom Builder Plugin to sort the Search results to get accurate results <?php namespace JJSearchCustomizationPluginModelAdapterIndex; use MagentoFrameworkAppObjectManager; use MagentoFrameworkAppRequestInterface; use MagentoElasticsearchModelAdapterIndexBuilder; class CustomBuilder { public function afterBuild(Builder $subject, $result) { // Use ObjectManager to get request safely in plugin context $request = ObjectManager::getInstance()->get(RequestInterface::class); $searchQuery = trim($request->getParam(‘q’) ?? ”); $inputLength = strlen($searchQuery); if… Continue reading Search Optimisation in Magento 2