Searchandising augments the existing search techniques with additional features to create an enhanced and profitable product search experience. Search Synonyms: With synonyms, shoppers can use familiar search terms and receive expanded results. A search for a term, also searches for that term’s synonyms. Therefore, synonyms eliminate the need for you to try and include all… Continue reading Website search
Author: Thara Gopi
New column in myaccount overview
To add new column in myaccount page through extension . In array original.column add new column .
Extension permission
After activation of an extension on execution time the execution log will show error of permission.To solve this we need permission for that particular extension. For that take ssp application > extensions> services> Edit servicess.ss file . On subtab permission Check enabled checkbox. Then select ‘execute as role’ as the role needed.
To view the transaction history in My Account page
The reason why a user gets the error message “Not Allowed. Sorry! You have no permission to view this page.” when viewing the transaction history in My Account page is because the level for Customer Payment permission is set to View or lower. To be able to successfully view the transaction history in My Account page, the user… Continue reading To view the transaction history in My Account page
Array length issue on initailize extend
When array length issue occurred check the error and find out where the error the extend the child view and give the code to correct the condition not get the array empty.
Extend a view to update initialize
To extend a view to update initialize below code can use.
Remove array values
To remove values from array in js use _.reject on array. From array ‘categoryArray’ remove values equal to variable ‘hideCategory’.var categoryArray = originalRet.categories[1].categories;categoryArray= _.reject(categoryArray, function (method) { return method.text==hideCategory; });
Giving access to new employee
User adds new Employee to Give Access and Default Password marked to be Required for Password Change on Next Login and received the following error:“Only the user can change this password, as this user has access to more than one NetSuite account.” If already accounts there for the employee dont give password. Just check give… Continue reading Giving access to new employee
Extension to storeitem model
To change the source code for errors find out the file in source and if it is a model file then in extension suitescript file has to use. Sample code is given below. StoreItem.Model file is changed
Resolve “internal error Please check if the fieldset is created”
To resolve Internal error when clicking an invoice holding a subtotal line item in my account page in SCA, resolve with the following steps: 1. Locate the following file in the SCA Module: \StoreItem@X.X.X\SuiteScript\StoreItem.Model.js 2. Find the following line of code: if (!item.id || !item.type || item.type === ‘Discount’ || item.type === ‘OthCharge’ || item.type… Continue reading Resolve “internal error Please check if the fieldset is created”