My Stuff
Check out Oracle NetSuite upcoming events and conferences here
See All the Unlockable Badges
See All the Unlockable Badges
Comments
-
Hi @Wendy_M, Is this happening only on specific shopper or all users? You may try this SuiteAnwers Article: Resolve Error "An Internal Error has occurred" when Logging in through Website | Answer Id: 98737. Kindly let us know the result afterwards. -Charles
-
Hi User_9L1BG, The value returned by the Image Field is the File ID store on the File Cabinet. You may need to implement a SuiteScript call through a Service File to get the URL: For SuiteScript 1.0: nlapiLoadFile(<File ID>).getURL(); For SuiteScript 2.x: file.load({ id: <File ID> }).url; I hope this is helpful. Kindly let…
-
Hi @david.zimmerman, Kindly let us know if you require additional assistance on this concern. Thank you! -Charles
-
Hi @david.zimmerman, Based on the documentation from the article I've provided, there will only be a downtime on this scenario: Given this information, there must be no downtime on your end when you switch from Manual to Automatic Certificate. We can just select "Switch to Automatic Certificate when Manual Certificate…
-
Hi @david.zimmerman, Do you recall if you enabled this setting on your Domain record while setting up Manual Certificate? If yes, your SSL Certificate will be set to Automatic Certificate once your Manual Certificate expires. I believe there is no any implications when you migrate to Automatic Certificate since this option…
-
Hi @Tom Dalton, I agree to the previous comment by our Guru. Currently, there is no standard functionality for the Email to be modified per Customer on SiteBuilder or SuiteCommerce Advanced. I would suggest to not use that specific functionality but instead implement this idea: * Create custom fields on Customer and Sales…
-
Hi @Wendy_M, Kindly let us know if you still need assistance about about this topic. You may also share the approach you did about this concern. We look forward hearing from you. - Charles
-
Hi @User_FJJCU, Can you check if SuiteCommerce Advanced is visible under Setup > Company > Enable Features > Web Presence tab and can be enabled? If this is nowhere to be found, it is highly possible that your license is already expired. You may further check the details of your license under Setup > Company > View Billing…
-
Hi @justinmjoh, I was able to see your code from your repository https://github.com/seippolf/CCTDropdown and I noticed that this is the part of the code I believe that needs to be updated in order to fix the issue: UABookStores.CCTDropdown.Dropdown.View.js From: , install: function (settings, context_data) {…
-
Hi @JPrice, Here are the exact file paths on the SCA (Dev SSP): Categories.Model.ts: SuiteCommerce Advanced\SC_20.2_Live\Commons\Categories\JavaScript\Categories.Model.ts Facets.CategoryCell.View.ts: SuiteCommerce Advanced\SC_20.2_Live\Commons\Facets\JavaScript\Facets.CategoryCell.View.ts
-
Hi @JPrice, yes this is compatible with SuiteCommerce Base Theme and SuiteCommerce Advanced version 2020.2, that are the exact versions I used on test implementation. Just a reminder, that idea is not the "full" implementation but "almost" (80%) since you are still required to create a Service File to have SuiteScript call…
-
Hi @Wendy_M, Thank you for creating a thread. For your question if there is a way to clear the Shopper's Cart through the NetSuite UI, I believe this is not possible and an existing Enhancement was created for this. Even through the use of SuiteScript, this won't work since Cart Contents on Customer record is a static…
-
Hi @JPrice, Just to clear your concern, you wanted to display the values of your Commerce Category custom Field (Subcategory HTML) to your custom Themes (facets_category_cell.tpl)? Currently, we do not have the standard way of implementing it except through customization. The Commerce Category custom Fields are not exposed…