SCA enables you to customize your website to easily apply global style changes while supporting migration to later versions. When customizing styles, you create a custom module that overrides specific Sass variables already defined in the BaseSassStyles module. You then redefine application dependencies so that base Sass styles import your customizations in the correct order.… Continue reading How to extend a Sass file if you are on the Kilimanjaro release of SCA or earlier.
Author: Anoop Vincent
How to resolve this issue in the workflow – Field value in actions or conditions always returns a null value.
If you create a workflow that includes a field value in actions or conditions and it always returns a null value, you could be experiencing an issue with permissions. To resolve this issue, check the Execute As Admin box in the workflow definition. If you create a workflow that is triggered by the inline edit… Continue reading How to resolve this issue in the workflow – Field value in actions or conditions always returns a null value.
Resolve the error “An unexpected SuiteScript error has occurred.” while working with workflow.
Scenario:If the error, ‘An unexpected SuiteScript error has occurred.’ is encountered when saving a record that has a workflow running on it, check the workflow for any Send Email action. When adding a Send Email action on a workflow, there should always be a condition to check for both sender’s and recipient’s email address availability.… Continue reading Resolve the error “An unexpected SuiteScript error has occurred.” while working with workflow.
Resolve the issue: The workflow did not execute for you during testing.
It’s a common workflow issue and can be solved by using one of the three methods mentioned below: Make sure that the Owner field on the workflow definition page is your user account. If the workflow release status is set to Testing, the workflow only runs for the owner of the workflow. If there is a workflow initiation… Continue reading Resolve the issue: The workflow did not execute for you during testing.
Resolve the issue: You have added or edited workflow actions, but the actions do not execute.
It’s a common workflow issue and can be solved by one of the two methods mentioned below: 1. Refresh your browser. If you add an action with a server trigger, but the action does not execute when you test the workflow, refresh your browser. For example, you add a Set Field Mandatory action to a… Continue reading Resolve the issue: You have added or edited workflow actions, but the actions do not execute.
Resolve SyntaxError: Invalid shorthand property initializer in JavaScript
SyntaxError: Invalid shorthand property initializer error comes when we use the equals operator rather than a colon to separate key-values(properties) in the object. To resolve this issue, we need to use a colon(:) rather than the equals operator(=) between the key and values of an object. Let’s see with the help of an example: Notice… Continue reading Resolve SyntaxError: Invalid shorthand property initializer in JavaScript
Resolve TypeError: Cannot read property ‘application_manifest’ of undefined at Object.getCompilationTasks (‘Folder path’) while running the gulp command.
This error as shown in the screenshot below, may occur while we run the gulp command. This error can be resolved by replacing the gulp folder in the extension/theme folder with the gulp folder in the extension/theme development tools respectively.
How to resolve the Error: listen EADDRINUSE: address already in use 0.0.0.0:xxxx while fetching the theme.
Error: listen EADDRINUSE means the port you want to assign/bind to your application server is already in use. You can either assign another port to your application. This error can be resolved by running the command: Then use the existing token or create a new token to fetch the theme. If it’s not solved then the… Continue reading How to resolve the Error: listen EADDRINUSE: address already in use 0.0.0.0:xxxx while fetching the theme.
Resolve the error: ‘npm/gulp is not recognized as an internal or external command operable program or batch file’ while running npm and gulp commands through Visual Studio
To resolve the issue follow the steps: 1.Make sure that you have node installed on your computer 2.Copy the folder path of the nodeC:\Program Files\nodejs\ 3.Change settingsGo to Control Panel -> View advanced system settingsIn the Advanced tab -> click on Environment variables Under System variables, click on Path and then click on Edit as… Continue reading Resolve the error: ‘npm/gulp is not recognized as an internal or external command operable program or batch file’ while running npm and gulp commands through Visual Studio
How to resolve TypeError: Cannot read property ‘length’
This error occurs in Chrome because of the reading length property for an undefined variable. You can test this in the Chrome Developer Console. You usually find the length defined on an array, but you might run into this error if the array is not initialized or the variable name is hidden in another context.… Continue reading How to resolve TypeError: Cannot read property ‘length’