TO LOAD A HTML FILE IN SUITELET

the code sample is used to load the html content in suitelet.  let htmlFile = file.load({               id: constants.filePaths.UPDATE_SO_PAGE_HTML             });             let htmlContent = htmlFile.getContents();             htmlContent = htmlContent               .replace(/${fullFileUrl}/g, fullFileUrl)               .replace(/${backgroundFileUrl}/g, backgroundFileUrl)               .replace(/${urlUpdateSO}/g, urlUpdateSO)             scriptContext.response.write(htmlContent);           } The code will load the html page. The replace function is used to replace with the contents in the netsuite.

serverWidget.FieldType Values and Syntax

Values CHECKBOX CURRENCY DATE DATETIME DATETIMETZ EMAIL FILE FLOAT HELP INLINEHTML INTEGER IMAGE LABEL LONGTEXT MULTISELECT PASSWORD PERCENT PHONE SELECT RADIO RICHTEXT TEXT TEXTAREA TIMEOFDAY URL Consider the following as you work with these field types: The DATETIME field type is not supported with addField methods, you must specify DATETIMETZ. The FILE field type is available only… Continue reading serverWidget.FieldType Values and Syntax

How to Write Effective Test Cases for API Testing

Writing effective API test cases ensures proper validation of an API’s functionality, security, and performance. Here’s a structured approach: 1. Understand API Requirements Before writing test cases, analyze API documentation to understand: Endpoints, request methods (GET, POST, PUT, DELETE) Request parameters and expected responses Authentication and authorization mechanisms 2. Define Test Scenarios Identify key scenarios,… Continue reading How to Write Effective Test Cases for API Testing

Top API Testing Tools: Postman, SoapUI, and Beyond

API testing is crucial for ensuring the reliability of software applications. Various tools help testers automate and validate API functionality. Here are some of the top API testing tools: 1. Postman One of the most popular API testing tools, Postman offers an intuitive interface for sending requests and analyzing responses. Supports REST, SOAP, and GraphQL… Continue reading Top API Testing Tools: Postman, SoapUI, and Beyond

Configure NetSuite account for Shopify NetSuite Integration app Setup

Enable Token-Based authentication in your NetSuite account Log in to your NetSuite account as an Administrator. Go to Setup > Company > Enable Features. On the “Enable Features” page, click SuiteCloud. In the Manage Authentication section, check the TOKEN-BASED AUTHENTICATION checkbox. Click Save. Create a custom role in NetSuite In NetSuite, go to Setup > Users/Roles > Manage Roles. On the “Manage Roles” page, next to the “Celigo eTail SmartConnectors” role,… Continue reading Configure NetSuite account for Shopify NetSuite Integration app Setup

Published
Categorized as Celigo

Common HTTP Status Codes and Their Meaning in API Testing

In API testing, HTTP status codes indicate the success or failure of a request. Understanding these codes helps testers identify issues and ensure proper API behavior. 1xx: Informational 100 Continue – The server received the request and is waiting for the rest. 101 Switching Protocols – The server is switching protocols as requested. 2xx: Success… Continue reading Common HTTP Status Codes and Their Meaning in API Testing

REST vs. SOAP APIs: Key Differences for Testers

In API testing, two major protocols dominate: REST (Representational State Transfer) and SOAP (Simple Object Access Protocol). Understanding their differences helps testers design effective strategies. REST API REST is an architectural style that uses HTTP methods (GET, POST, PUT, DELETE) to interact with resources. It is stateless, meaning each request is independent. REST APIs are… Continue reading REST vs. SOAP APIs: Key Differences for Testers

Install the Shopify bundle in NetSuite

In NetSuite, go to Customization > SuiteBundler > Search & Install Bundles. On the “Search & Install Bundles” page, in the Keywords field, enter Celigo Shopify Connector [IO] (bundle name) or 81289 (bundle ID). Click Search. Click Celigo Shopify Connector [IO]. On the “Bundle Details” page, click Install. On the permission window, read through and click OK. Your bundle will now be installed and you can find the… Continue reading Install the Shopify bundle in NetSuite

Published
Categorized as Celigo