Use set property function to set the url, use the dynamic document property to set the url.
Month: January 2025
Different Types of EDI Transactions and Their Uses
Introduction Electronic Data Interchange (EDI) is a standardized method for exchanging business documents electronically between companies. Various EDI transaction sets are used for different business processes, ensuring efficiency, accuracy, and automation. Below are some of the most commonly used EDI transaction types and their applications. Key EDI Transaction Types and Their Uses 1. EDI 850… Continue reading Different Types of EDI Transactions and Their Uses
Request to create an Order in INFOR
{ “requestedshipdate”: “2020-11-05T12:12:00Z”, “caddress6”: “DIP Liquidation”, “consigneekey”: “CUS-20105”, “externorderkey”: “SO-UAE-2110085”, “type”:”92″, “orderdetails”: [ { “externorderkey”: “SO-UAE-3110086”, “openqty”: “5”, “externlineno”: “1”, “sku”: “HCWEL106435”, “storerkey”: “MADI” }, { … Continue reading Request to create an Order in INFOR
OAUTH 2.0 Machine to machine (M2M) postman connection.
Prerequisites Before setting up the OAuth 2.0 connection, ensure that: You have Administrator or Integration Manager role in NetSuite. The OAuth 2.0 authentication feature is enabled in NetSuite. A NetSuite Integration Record has been created. You have a valid client ID and client secret for authentication. Step -1: Run Get JSRSASIGN Crypto Library request in… Continue reading OAUTH 2.0 Machine to machine (M2M) postman connection.
Use primevue library in single html script that use vue cdn
Add the below script tags <script src=”https://unpkg.com/primevue/umd/primevue.min.js”></script> <script src=”https://unpkg.com/@primevue/themes/umd/aura.min.js”></script> Add the necessary primevue component in the script as shown below const app = createApp({ // rest code }) app.use(PrimeVue.Config, { theme: { preset: PrimeVue.Themes.Aura, options: { … Continue reading Use primevue library in single html script that use vue cdn
Understanding Recursion in JavaScript
Recursion is a powerful programming technique where a function calls itself to solve a problem. In JavaScript, recursion is particularly useful for tasks that involve repetitive subproblems, such as traversing nested structures or implementing mathematical computations. This article explores the concept of recursion, its types, and practical use cases in JavaScript. What is Recursion? Recursion… Continue reading Understanding Recursion in JavaScript
Create a Custom Sublist From a Saved Search
Custom Sublists Did you know it is possible in NetSuite to create a custom sublist on a record from a Saved Search? Sublists are useful to find relevant information easily. Instead of navigating to a Saved Search each time you need to find a certain list of important data, what if you could simply scroll… Continue reading Create a Custom Sublist From a Saved Search
Remove “Total” Row from Summary Saved Search
Today, we’re borrowing the tip on a summary saved search from P M on Stack Overflow. I ran into this issue today where a Saved Search included a Sum column, but I didn’t want it to include the total at the bottom. The search is being exported as CSV on a regular basis to update another… Continue reading Remove “Total” Row from Summary Saved Search
Extending Saved Search Dates with SQL
Finding Flexibility by Extending Saved Search Dates Have you ever wondered about extending saved search dates? You’ve seen NetSuite’s built-in date options on searches, where you can select something like “Today,” “End of Next Business Week,” or “Same Day Last Fiscal Year.” If you need some additional flexibility with those date options, try this simple SQL function in the formula box wherever… Continue reading Extending Saved Search Dates with SQL
Understanding the NetSuite Database and SQL
NetSuite at its core is actually just a glorified database with a user-friendly interface managed through SQL. Do you find NetSuite sometimes difficult to fully understand? Knowing the roots and foundation of NetSuite will give you super-powers in understanding, debugging, and using NetSuite! Databases You may not have realized this before, but NetSuite for the… Continue reading Understanding the NetSuite Database and SQL