Requirement Update the status of sales invoice to open ,when it is in paid in full status with Amount Remaining greater than 0. Solution
Month: February 2022
Create Foreign Currency Variance Posting Rules >
Scenario Customer ran the Revalue Open Currency Balances task in the Period Close Checklist and got the following error: “Bulk Processing Abnormal Termination” If the Foreign Currency Variance Mapping under Setup > Company > Enable Features > Accounting tab > Advanced Features section is currently enabled, we are required to create rules for the posting of Unrealized Gain/Loss from currency revaluations. When creating rules under Setup >… Continue reading Create Foreign Currency Variance Posting Rules >
Purchase Order Details Bulk Extraction via SOAP Web Services via search and getList operation
SOAP Web services can be used for extracting purchase details from the NetSuite account. We need to define the SOAP request with the body to fetch the data. With the SOAP request, we can directly fetch the data from the NetSuite. SOAP is a standard NetSuite API. Following are the steps for the extraction of … Continue reading Purchase Order Details Bulk Extraction via SOAP Web Services via search and getList operation
Account Details Bulk Extraction via SOAP Web Services
SOAP Web services can be used for extracting account details from the NetSuite account. We need to define the SOAP request with the body to fetch the data. With the SOAP request, we can directly fetch the data from the NetSuite. SOAP is a standard NetSuite API. Following are the process for the Account Details… Continue reading Account Details Bulk Extraction via SOAP Web Services
PM Review for MPCR in employee center
Requirement Need to create a custom page to list all the mpcr that are open status and the current user is the corresponding project manager (Body or Line). The user is able to select the mpcr and click submit button and the corresponding PM review checkbox will be checked and the corresponding custom fields :… Continue reading PM Review for MPCR in employee center
Adding Saved Search In Employee Centre
The client wants to add a saved search in the employee center. To add saved search in the dashboard of the employee center. Create a saved search and check the box “run unrestricted” Add this search to the dashboard from the personalize button. In the setup add the search in the employee center. Click Save.
Statistical Accounts
Statistical Accounts The Statistical Accounts feature, part of the Advanced Financial module, enables our financial team to track non-monetary data and then use that information on reports and income statements. Financial users can then examine its relationship with the financial activity of our organization. Users who would find this feature valuable include those responsible for… Continue reading Statistical Accounts
Email Capture Plugin Implementation
Email Capture Plugin ImplementationWe can implement email capture functionality in NetSuite account to capture emails inorder to create email message records or use email content data.This is possible if the account already has email capture plugin installed. A email capture plugin file can be created in javascript and uploaded to NetSuite account using theplugin installed.… Continue reading Email Capture Plugin Implementation
Combine Two Objects in Javascript
To combine two objects in javascript, we can use the code section given below const posts = { ‘2018-05-11’: { posts: 2 }, ‘2018-05-12’: { posts: 5 }};const notes = { ‘2018-05-11’: { notes: 1 }, ‘2018-05-12’: { notes: 3 }}; function objCombine(obj, variable) {for (let key of Object.keys(obj)) {if (!variable[key]) variable[key] = {}; }}… Continue reading Combine Two Objects in Javascript
Online Form for Pre-Commencement Check List
Need to create a online html template for the custom record Create the template using html TITLEPre Commencement Check List <!DOCTYPE html><html><head><meta charset=”utf-8″><title>Registration Form</title><meta name=”viewport” content=”width=device-width, initial-scale=1.0″><link href=”https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css” rel=”stylesheet”><style type=”text/css”>table { font-size: 9pt; table-layout: fixed; width: 80%; border-style: dashed; border-collapse: collapse; font-family: “Times New Roman”, Times, serif;color:rgba(0,0,0,0.1) }th { font-weight: bold; font-size: 10pt; vertical-align: middle;… Continue reading Online Form for Pre-Commencement Check List