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

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