If the Return Authorizations page is not available for Custom Role ,we can follow the below steps Login in as an Administrator Navigate to Setup > User/Roles > Manage Roles Custom Role: Click Edit Click Permissions Click Transactions Permission: Select Return Authorization Click Save
Category: NS SuiteCommerce Advanced
All articles / code related to SuiteCommerce advanced
How to add review rate from netsuite
Update the review section of LHS of the PLP page of the pure care website as per the given design. In review section the list added in the menu will be based on the value in the item record product review field. As many values in the field that much list will be added in… Continue reading How to add review rate from netsuite
Resolve error : You need a higher level of the ‘Lists -> Documents and Files’ permission to load the file using suitecript
Requirement: Show the pdf file attached in the customer record to the website We are getting only the id of the file from javaScript. To get the url, we have to load the file using suiteScript. When we use suitescript to load file, there may be a chance of permission issue to access the document.… Continue reading Resolve error : You need a higher level of the ‘Lists -> Documents and Files’ permission to load the file using suitecript
W3C Validation
W3C stands for World Wide Web Consortium. Its primary function is to assist site owners in identifying whether their XHTML or HTML documents are properly formatted with a markup language. W3C validation informs you of your various web page technical quality. W3C validation coding specifications ensure that your web page’s code script adheres to international… Continue reading W3C Validation
How to remove increment/decrement buttons on number inputs
we can use the css property for removing the increment/decrement buttons as shown below code input.quick-add-box-right-quantity-value[type=”number”], input.cart-item-summary-quantity-value[type=”number”]{ -webkit-appearance: none; -moz-appearance: textfield; appearance: textfield; }
Video thumbnail are not visible in IOS devices
Scenario: When we add a video to the webpage using video tags, iOS devices will not show the thumbnail of the video as they do on Android and desktops. We can use this solution to correct this issue. we need to add a skip time as 0.001s to load the thumbnail image in the source attribute… Continue reading Video thumbnail are not visible in IOS devices
Shopping page Not Scrolling in mobile device
Shopping Page Not Scrolling in Mobile device to overcome this issue we need to extend the shopping page view and add the below code define(‘ProductList.DetailsLater.View.Extension’ , [ ‘ProductList.DetailsLater.View’ , ‘underscore’ , ‘jQuery’ ] , function ( ProductListDetailsLaterView , _ , jQuery ) { ‘use strict’; _.extend(ProductListDetailsLaterView.prototype, { deleteListItemHandler: function (target) { var self = this ,… Continue reading Shopping page Not Scrolling in mobile device
Rename Image Files with the Item Identifier
The components of the image file name associate the file with an item record and determine how the images are presented on the product details page. Before renaming your image files, see Rename Image Files with the Item Identifier to define the naming conventions. Using the parameters for renaming image files, you can organize how the images… Continue reading Rename Image Files with the Item Identifier
FedEx Ship API-Print Return Label
Ship API The Ship API allows you to integrate FedEx shipping capabilities into your application. Using Ship API, you can process and submit shipping requests for packages to FedEx for both domestic and international shipments, as well as the return shipments. Each shipment request will contain detailed information for shipment and packages. FedEx Shipping categorized… Continue reading FedEx Ship API-Print Return Label
How to extend the Grid, List, and Table Facet templates in SCA
The template for Facet view in PLP page can be updated as shown below. Extend the facet item child view in Facet Browse view. Override the grid, table, list view templates. _.extend(FacetsBrowseView.prototype.childViews, { ‘Facets.Items’: function () { var self = this; var display_option = _.find(this.itemsDisplayOptions, function (option) { return option.id === (self.translator.getOptionValue(‘display’) ? self.translator.getOptionValue(‘display’) :… Continue reading How to extend the Grid, List, and Table Facet templates in SCA