Adding Translated Content in Advanced Printouts

nstranslation.load – loads strings for specific keys of specific collections for specific locales. The locales parameter is optional. If not defined, the current locale from FreeMarker is used.In the example that follows, strings with the keys GREETINGS and INTERVAL_1_TO_2 load from the custcollection_testcol collection for the cs_CZ and en_US locales. The translation for cs_CZ contains “Ahoj” and translation for en_US contains “Hello” “collections”:[{“alias”: “myAlias”,“collection”: “custcollection_testcol”,“keys”:… Continue reading Adding Translated Content in Advanced Printouts

Inactivation the children accounts.

If you check the Summary box on an existing account, the account maintains its posted transactions, but you cannot post additional transactions to the account. The account also becomes inactive, but its children accounts maintain their current state. If you clear the Summary box on an inactive, parent summary account and then save the record, the account is not… Continue reading Inactivation the children accounts.

Neuromorphic computing

Neuromorphic computing is an approach to computing that draws inspiration from the architecture and functioning of the human brain. The term “neuromorphic” comes from “neuromimesis,” which means mimicking the structure or function of the nervous system. Neuromorphic computing aims to build artificial systems that can perform cognitive tasks in ways similar to the human brain,… Continue reading Neuromorphic computing

Graph Neural Networks (GNNs)

Graph Neural Networks (GNNs) are a class of neural networks designed to operate on graph-structured data. In contrast to traditional neural networks that work well with grid-structured data like images, GNNs are specifically tailored for tasks where the data has a graph-like structure, such as social networks, citation networks, molecular structures, and more. Here are… Continue reading Graph Neural Networks (GNNs)

Change date format in a NetSuite saved search result column

In NetSuite, the TO_CHAR() function can be used to convert a date object into a text representation of it. Here are some examples of date/time format values that can be used with TO_CHAR(): ‘YYYY’: 4-digit year‘IY’ or ‘IYYY’: ISO Year‘M’: Month2‘DL’: Long version of the date including day of the week, month, day, and year‘YEAR’:… Continue reading Change date format in a NetSuite saved search result column

Add Multiple Page Break Lines on Advanced PDF/HTML Template

Users want to add multiple pages on a printed PDF using an Advanced PDF/HTML Template. This can be achieved by using <pbr> element on the Template. Solution Navigate to Customization > Forms > Advanced PDF/HTML Template Preferred Advanced PDF/HTML Template: Click Customize/Edit Top right corner: Toggle Source Code Insert the following code on the appropriate line:<pbr header=”sample”/>Note: A pbr tag is equivalent to one page.… Continue reading Add Multiple Page Break Lines on Advanced PDF/HTML Template

Adding HTML table to custom record

REQUIREMENT Need to add a HTML table to display the sublist details in view mode of record. SOLUTION Following is the code snippet to add the HTML table in the custom record under a custom tab. This is to be added in beforeload of user event script.