This error is thrown if a single execution of a server-side script or application has taken longer than its limit. The following table lists the prescribed time limits for each script type or application: Script Type/Application Time Limit(s) Adjust Consolidated Rates 3600 App Package Installation 3600 Bundle Installation script 3600 Custom GL Lines Plug-in 30 Mass… Continue reading Script Error SSS_TIME_LIMIT_EXCEEDED
Month: November 2023
Setting up Http connection in Celigo
A. Set up an HTTP connection Start establishing the universal, or generic, HTTP connection in either of the following ways: Select Connections from the Resources menu. Next, click + Create connection at the top right. In the resulting Create source panel, select HTTP from the Application list, under the Universal connectors group. While working in a new or existing integration, you can add an application to a flow simply by… Continue reading Setting up Http connection in Celigo
Loading image in Netsuite records
Serverside Props in Next.Js.
If you export a function called getServerSideProps (Server-Side Rendering) from a page, Next.js will pre-render this page on each request using the data returned by getServerSideProps. import type { InferGetServerSidePropsType, GetServerSideProps } from ‘next’ type Repo = { name: string stargazers_count: number } export const getServerSideProps = (async (context) => { const res = await fetch(‘https://api.github.com/repos/vercel/next.js’) const repo… Continue reading Serverside Props in Next.Js.
Button using inline html
Default value<html> </br><input type=”button” value=”Upload CSSR File” id=”b1″ onclick=”window.open(“”, ‘_blank’,’mywindow’,’menubar=1,resizable=1,width=350,height=250′);” style=”background-color: #607799; border: none; color: white; padding: 5px 11px; text-align: center; text-decoration: none; display: inline-block; font-size: 14px; cursor: pointer;” onmouseover=”this.style.backgroundColor=’#405c73′;” onmouseout=”this.style.backgroundColor=’#607799′;”></br></html>
Sublist using a custom record
On Custom Records, the sublist for the child record is uneditable on the line level by default. Follow the steps below to implement a Custom Record with an editable sublist for its child record. Create Custom Record Type – A which serves as the Parent:For more information, see article 10140 – Creating Custom Record TypesMake… Continue reading Sublist using a custom record
Error Classifications in Celigo
Value Sample error messages Typical cause Invalid phone value: remove dashes The value provided causes a specific problem Order status == cancelled in target system. Target system rejects all updates An unexpected value prevents any changes to the record in the destination system Transaction was declined by processor. Issuer Declined Cannot change status field The… Continue reading Error Classifications in Celigo
How to send get and post request in API using Node JS & using Postman
We can write get and post method in API using node js. We rae using Postman for testing here. We can write API’s in node JS for send and recieving the requests. By using this code we can get the values in postman as well as in server. First we need to install the Express… Continue reading How to send get and post request in API using Node JS & using Postman
Country Names for CSV Import
It is best to specify countries by name instead of country codes in CSV files. Country codes are used as countries’ NetSuite internal IDs and using them in a CSV file can result to errors. Before an import, replace any country codes with names. Note On the Field Mapping page of the Import Assistant, you… Continue reading Country Names for CSV Import
How to use Firestore Database in React JS
It is a comprehensive backend solution offered by Google that simplifies the process of building, managing, and growing applications. When developing mobile or web apps, handling the database, hosting, and authentication can be challenging tasks. Firebase addresses these challenges by providing a range of features. Now for using The Firestore in the React JS project… Continue reading How to use Firestore Database in React JS