Transaction Saved search URL to hyperlink filtering document number under customized field

The saved search link to display all item level details was : https://XXXXXXXX.app.netsuite.com/app/common/search/searchresults.nl?searchid=ABC&saverun=T&whence= This returned the results of all the item level details of all quotes in the system. However, a custom hyperlink was added in the Primary Information of the quote to navigate to a different tab ,displaying the item level details of the… Continue reading Transaction Saved search URL to hyperlink filtering document number under customized field

Create link in Nextjs

Creating link in nextjs is a bit different when compared to other languages. Let’s see how it is implemented. Example code // pages/index.js (or any other page or component) import React from ‘react’; import Link from ‘next/link’; const HomePage = () => {  return (   <div>    <h1>Welcome to my Next.js App</h1>    <p>Go to the <Link… Continue reading Create link in Nextjs