Complete the following to set up and use the Purchase Card Data module to process level II and level III credit cards through CyberSource and MerchantE: Provision the feature by contacting your NetSuite account manager for more details and pricing information for this module. Enable the Purchase Card Data feature in NetSuite: Go to Setup >… Continue reading Setting Up Purchase Card Processing
Author: Neena K
Custom Item Label templates
<?xml version=“1.0”?><!DOCTYPE pdf PUBLIC “-//big.faceless.org//report” “report-1.1.dtd”> <pdfset> <#list schemaArr.schemaArr as schemaArr> <pdf> <head> <link name=“calibri” type=“font” subtype=“opentype” src=“https://1220617.app.netsuite.com/core/media/media.nl?id=402449&c=1220617&h=ahamMYcVmITnHd1sw8qQljFlNdc4yxPh5xbVkwfwxNqDMm5G&_xt=.ttf” src-bold=“https://1220617.app.netsuite.com/core/media/media.nl?id=402450&c=1220617&h=g-6belYxjMdBazk-Fpk_6pIg66ZNFNgkaHNTCSkHTc_p_efv&_xt=.ttf” bytes=“1” /> <style type=“text/css”>*{ … Continue reading Custom Item Label templates
Saved search to get unit abbreviations.
function getUnitAbrevation(unitName){ let unitstypeSearchObj = search.create({ type: “unitstype”, filters: [ … Continue reading Saved search to get unit abbreviations.
PROPOSAL FOR SHOPIFY INTEGRATION
Proposal Summary This proposal outlines a comprehensive solution for itegrating the required items in NetSuite to Shopify. Requirement Pure Care has a customer that is looking at launching a Shopify website that will allow their patients to purchase products. They are looking at Pure Care as the vendor. Pure care’s product Squ’s… Continue reading PROPOSAL FOR SHOPIFY INTEGRATION
Preview a website email:
Go to Commerce > Websites > Website List. Click Edit next to the website whose email you want to preview. Click the Email subtab. Click the subtab that contains the email you want to preview. For example, if you want to preview the Order Received email, click the Order Emails subtab. Locate the email type you want to preview, for example, Order… Continue reading Preview a website email:
Suitelet script to perform approver actions coming from webstore approval system
/** * @NApiVersion 2.1 * @NScriptType Suitelet */ ‘use strict;’ define([‘N/record’, ‘N/email’, ‘N/search’], (record, email, search) => { /*** * Function to capitalize the first lettor of customer name * @param customerName : customer name as sring … Continue reading Suitelet script to perform approver actions coming from webstore approval system
EFT template – Wells Fargo bank
<#– format specific processing –> <#assign newSeqId = “” > <#function isBalanceLine> <#return cbank.custpage_eft_custrecord_2663_balance_line > </#function> <#function getBankServiceClassCode> <#assign value = “”> <#if isBalanceLine() > <#assign value = “200”> <#else> <#assign value = “220”> </#if> <#return value> </#function> <#function getEntityBankAccountType bankAccount> <#assign value = “”> <#if bankAccount == “Savings” > <#assign value = “32”>… Continue reading EFT template – Wells Fargo bank
NetSuite Pay
NetSuite Pay is an integrated payment processing solution designed specifically for businesses that use NetSuite. NetSuite Pay lets you accept credit card payments online, over the phone, at the point of sale, or through another digital payment method, all with PCI-compliant data security. NetSuite maintains a complete record of the full transaction lifecycle, giving you… Continue reading NetSuite Pay
NetSuite for Mobile Overview
NetSuite for Mobile enables you to keep track of time, expenses, and key business metrics when on the move. The app works offline, making it possible to continue working without a connection (for example, on a plane) and upload to NetSuite later. The app is available as a free download from the Apple App Store… Continue reading NetSuite for Mobile Overview
Send Invoice Due emails for past due invoices.
define([“N/search”, “N/email”, “N/record”, “N/runtime”, “N/format”], (search, email, record, runtime, format) => { ‘use strict’ /** * @description the function to check whether a value exists in parameter * @param parameter -passing parameter * @param parameterName – passing parameter name * @returns{Boolean}… Continue reading Send Invoice Due emails for past due invoices.