if we gave already added Auth Id in VS code for the SuiteCloud Project and later some changes made in the Account the we might face issue when we try to link the Account with the project. Solution To solve this issue we need to delete or remove the already existing Auth Id from Visual… Continue reading Delete Auth ID From Visual Studio Code
Tag: errors and solutions
How to solve Internal errors on the transaction history of my account on the Website
Sometimes we encounter an error saying that internal error on the website in the transaction history of my account page. Notice (SuiteScript){“type”:”error.Suite ScriptModuleLoaderError”,”name”:”MODULE_DOES_NOT_EXIST”,”message”:”Module does not exist: /Web Site Hosting Files Live Hosting Files/SSP Applications/accessoOnesource/accessoOnesource2/_suitescript/third parties/backbone.validation.js”,”stack”:[]} This error comes because of backbone.validation.js file isn’t present or available in the SSP Application folder for V2 of the… Continue reading How to solve Internal errors on the transaction history of my account on the Website
How to solve the issue Uncaught SyntaxError: Unexpected token ‘<‘, ” on JSON.parse in the fail function
using this method when we click on submit button need to get email from the configuration record and send email, getting error as Uncaught SyntaxError: Unexpected token ‘<‘, ”JSON.parse in the fail function
‘SSS_USAGE_LIMIT_EXCEEDED_ERROR’ Fix for NetSuite Scheduled Script
Script to reschedule a scheduled script within the script based on usage to avoid ‘SSS_USAGE_LIMIT_EXCEEDED_ERROR’ in NetSuite scheduled script.
Access Token Limit for a User in an Account.
Scenario User receives the error “This user has exceeded the number of active access tokens this role.” when issuing a token through RESTlets. Solution There can only be a maximum of 25 access tokens a user can have in an account. If a user tries to create another access token even if he already has 25… Continue reading Access Token Limit for a User in an Account.
How to fix Git error: repository not found
When attempting to access an Unfuddle STACK GIT Repository over HTTP repository not found error can be seen. When attempting to access an Unfuddle STACK GIT Repository over HTTP, the error would look like below: The reason for encountering this error is simple: the GIT repository you are trying to access does not exist at… Continue reading How to fix Git error: repository not found
How to fix “error: The current branch has no upstream branch” error in GitHub
Solution for Git error: The current branch has no upstream branch An upstream branch is a remote branch that is being tracked by a local branch.Depending on how the push.default config is set, you may encounter the following error. The fix is rather simple and is already suggested by the failing command: use –set-upstream option when pushing This is… Continue reading How to fix “error: The current branch has no upstream branch” error in GitHub
SetTimeOut in SuiteScript SSS_INSTRUCTION_COUNT_EXCEEDED
When using the SetTimeOut or Sleep with more than 4 or 5 seconds in the SuiteScript getting the error SSS_INSTRUCTION_COUNT_EXCEEDED Solution: The script increases the instruction count and if it is set to too high then the users will get an SSS_INSTRUCTION_COUNT_EXCEEDED error. It is recommended to stop the script just for 1 or 2… Continue reading SetTimeOut in SuiteScript SSS_INSTRUCTION_COUNT_EXCEEDED
How to resolve the GIT error “you need to resolve your current index first”
If the “error: you need to resolve your current index first” message was shown after an attempt to run a git-merge, git-pull, or git-checkout you can try some of the following solutions: Make sure all your changes are committed. This is a good habit when working with Git, saving you from a lot of trouble. Just make sure the… Continue reading How to resolve the GIT error “you need to resolve your current index first”
Resolving a merge conflict on GitHub using the conflict editor
We get merge conflicts on GitHub that can be resolved using the conflict editor. You can only resolve merge conflicts on GitHub that are caused by competing line changes, such as when people make different changes to the same line of the same file on different branches in your Git repository. For all other types… Continue reading Resolving a merge conflict on GitHub using the conflict editor