Some useful Dropbox API requests

These are some Dropbox API requests that I have tested and found working: Get Access token POST https://api.dropbox.com/oauth2/token?grant_type=refresh_token&refresh_token=<REFRESH_TOKEN>&client_secret=<CLIENT_SECRET> Use the refresh token generated through the Dropbox API app. Since the refresh token has an expiry of up to a few months it can be reused to generate an access token. Get a temporary link to… Continue reading Some useful Dropbox API requests

CSV import error – Invalid account reference key ___ for subsidiary ___

While importing journal entries, the error “Invalid account reference key ___ for subsidiary ___” may sometimes occur. To resolve this error, Check the below conditions:  Verify the format of the Account field.  Ensure that the account is active in NetSuite.    To verify the format of the Account field in the CSV file by comparing with NetSuite: … Continue reading CSV import error – Invalid account reference key ___ for subsidiary ___

Favorites Feature Available in Dropdown Lists

As part of the 2024.1 Release, we can select up to five favorite items in the Customer, Add Multiple, and Items fields on sales orders. In the Add Multiple field, we can show only your favorite items by selecting the Show Favorites Only box. To enable the Favorites feature, go to Set Preferences > General… Continue reading Favorites Feature Available in Dropdown Lists

slow network speeds on your laptop’s Wi-Fi connection,

slow network speeds on your laptop’s Wi-Fi connection, there are several steps you can take to troubleshoot and potentially improve the situation: Check Your Internet Speed: Before troubleshooting further, it’s essential to verify if the issue is with your laptop’s Wi-Fi connection or with your internet service provider (ISP). You can use online speed testing… Continue reading slow network speeds on your laptop’s Wi-Fi connection,

Published
Categorized as Network

Display the TV show details using the API

/**  * @NApiVersion 2.1  * @NScriptType Suitelet  */ define([‘N/search’, ‘N/ui/serverWidget’, ‘N/https’],     /**  * @param{search} search  * @param{serverWidget} serverWidget  * @param{https} https  */     (search, serverWidget, https) => {         /**          * Defines the Suitelet script trigger point.          * @param {Object} scriptContext… Continue reading Display the TV show details using the API

Recovery blue screen solution

Encountering a blue screen error, also known as the “Blue Screen of Death” (BSoD), can be quite distressing, but there are several steps you can take to troubleshoot and potentially resolve the issue. Here’s a general guide: Note the Error Message: When the blue screen appears, it typically displays an error message along with a… Continue reading Recovery blue screen solution

Published
Categorized as Network

Send email body as a table format

let emailbody = ‘<table border=”1″><tr><th><b>Document Number</b></th><th><b>Customer name</b></th><th><b>Date</b></th><th><b>Amount</b></th></tr>’;                 for (let i = 0; i < salesDet.length; i++) {                     name = salesDet[i].cus;                     tranid = salesDet[i].tranid;        … Continue reading Send email body as a table format

Consolidated Exchange Rates : Current, Average and Historical are Same

Reasons why Current, Average and Historical Consolidated Exchange Rates will have the same values:  The Child and its Direct Parent’s base currencies are the same. In this instance, there will be no roll-up, thus, the Current, Average and Historical Consolidated Exchange Rates between the Child <> Direct parent are all 1.00. As mentioned above, Average and… Continue reading Consolidated Exchange Rates : Current, Average and Historical are Same