My Stuff
Please note that on Friday, September 19, 2025, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Comments
-
Hello @Bry Cabria-Oracle Thanks! That did the trick. I was under the impression that 'adding' would create a whole new item collection.
-
Hello @Bry Cabria-Oracle I updated the items to have an external ID, but I still ran into the same error. Could not find record with External ID = X External ID is numerical.
-
Hello @Bry Cabria-Oracle I'm not having luck with importing via item collection map. I keep running into an import error. With using an internal ID Item Collection Item Map records cannot be edited. Add and delete Item Collection Item Map records to change the relationship between Item Collections and Items. with using the…
-
Thanks @Bry Cabria-Oracle this article should help me out. Fortunately the dynamics of these won't shift often. So an import of static items should be the ideal solution. I should not revert my changes to the theme, because on google, in our situation our customers see 'out of stock' as being out of stock, and sometimes…
-
@Bry Cabria-Oracle Thanks. I did a static collection and the price was gone. Am I able to do this via import? This is where the saved search would be essential. This brings up something else too, I need to change the schema availability from OutOfStock to LimitedAvailibility. I did this in the theme, but there may be mixed…
-
it seems that I must keep the CDN on. I got this notice upon checking. Given the circumstances that the sandbox is under a subdomain, and the work that was put in to restore site functionality. We have to leave it on. Enable CDN CacheStarting September 16, 2025, NetSuite will enforce CDN caching on all websites associated…
-
Thanks for the insight! Has this been tested with an A/B performance metric? My concern is that if we disable the CDN, we would expect slower site performance.
-
Hello @Bry Cabria-Oracle , I had to log out, and the tab appeared. I was able to create the item collection and group. The collection consists of 'quote only items' comprised from a saved search of inventory items that are displayed online, and have don't show price enabled. I went back to my item group > customer segments…
-
Hello @Bry Cabria-Oracle , I was able to create the collection and group, but I could not locate the customer segments manager page. Is this labeled as something else? In my tab, I had to navigate to Commerce > Marketing > Items Collections / Groups. I do not see anything under that dropdown for segmenting.
-
Hello @Bry Cabria-Oracle Thanks for the insight. I'll give this a try in sandbox. Would this be the bundle SS4C Customer Segments?
-
Hello @Bry Cabria-Oracle Thanks! I just submitted one.
-
Hello @Bry Cabria-Oracle , raising a question. When I execute this extension, it will remove the entire script outright, instead of removing only the price.
-
Hello @Richard James Uri-Oracle Yes, I am adding it to one of my custom extensions. I have it set to activate under a conditional statement. if (dontshowprice === false){ do this} else { EXTEND HERE } using 'ProductDetails.Full.View', and 'underscore'
-
Hello @Francesca Nicole Mendoza-Oracle Yes, this was one of many errors I encountered. I was finally able to overcome this, I had to set it up to schedule and deploy each time to get past the time out
-
@Francesca Nicole Mendoza-Oracle While that was what I needed. There seems to be another error I got multiple emails that changes the log level from audit to emergency and then one with the error: SSS_TIME_LIMIT_EXCEEDED
-
@Francesca Nicole Mendoza-Oracle So far the code is working well, I just need to review and add additional fields to exclude and it will be good to go. thanks!
-
@Francesca Nicole Mendoza-Oracle Thanks! I actually began researching this, shortly after posting here. I'm currently revising my code to meet the demand.
-
I just rand the execution and I appeared to have received an error {"type":"error.SuiteScriptError","name":"SSS_SEARCH_FOR_EACH_LIMIT_EXCEEDED","message":"No more than 4000 search results may be returned at one time from nlobjSearchResultSet.forEachResult(callback). Please revise your search criteria or modify the callback…
-
@Francesca Nicole Mendoza-Oracle thanks! I'll rerun this again with those settings.
-
I updated the script, got the result: Custom Custom Updates Your mass update is complete, and has been successfully performed on 1 records. /** * @NApiVersion 2.1 * @NScriptType MassUpdateScript */ define(['N/record', 'N/log'], (record, log) => { const update = (context) => { try { // Ensure we are only updating Inventory…
-
Hello @Jervin Nicholas Teopengco-Oracle , That might be the issue! I did not specify what item type on the script. This would be for inventory items
-
Hello @Jervin Nicholas Teopengco-Oracle I used the item XML info to review the data, was this the right way? https://ID.app.netsuite.com/app/common/item/item.nl?id=ITEMID&xml=t <storedisplayname>ZG2W01508000B | Zero Gravity Balancer, 150lbs, 80in travel, Bullard hook</storedisplayname>
-
Hello @Bry Cabria-Oracle I think I found a bug with the code, the extension should only trigger at the checkout. However, the footer phone numbers seem to change. Could this be from the extension?
-
Hello @Bry Cabria-Oracle , I got it to work! I need to set step.stepgroup to step.url and I was able to trigger the code at the confirmation page.
-
Hello @Bry Cabria-Oracle , Thanks! I was finally able to get one of the console.logs to trigger, checkout component found. define( 'FAS.google_enhanced_conversion_confirmation.gec', [ 'FAS.google_enhanced_conversion_confirmation.gec.View', ], function ( gecView, ) { 'use strict'; // Utility function to convert a string to…
-
Hello @Bry Cabria-Oracle Thanks for the insight! I used your example and incorporated it to be ecrypted. define( 'FAS.google_enhanced_conversion_confirmation.gec', [ 'FAS.google_enhanced_conversion_confirmation.gec.View', 'Checkout' ], function ( gecView, Checkout ) { 'use strict'; // Utility function to convert a string…
-
Hello @Bry Cabria-Oracle This would be occurring on the confirmation page of the checkout. This is what I have so far, all I have left is to call the variables. define( 'FAS.google_enhanced_conversion_confirmation.gec', [ 'Checkout' ], function ( Checkout ) { 'use strict'; return { mountToApp: function mountToApp…
-
Hello @Bry Cabria-Oracle , Yes I did. Thanks! I need a chance to develop the checkout extension and test.
-
Hello @Bry Cabria-Oracle Would it be possible to update the schema via extension? If I can do that, that would be more helpful. I can specify that if isinstock = true, change schema to "in stock" else set it to "limited availability"
-
Hello @Bry Cabria-Oracle Thanks! That seemed to have done the trick. I managed to pull the required fields that I need. I have a script in the code that manipulates the related items template into becoming a dense list layout when a Non-Inventory Item is loaded and it adds a qty and add to cart button to the items. This…