My Stuff
Comments
-
Hi Mavell, Thanks for the response. How can one track enhancements? Do you think this will be functionality available anytime soon?... or years from now? Regards, David Mendoza
-
Here's a great article on the SuiteCommerce Developers site: https://developers.suitecommerce.com/add-a-promotional-drawer-and-notification-icon You should be able to log in with your NetSuite Production credentials.
-
You might want to debug Facets.FacetedNavigation.View and the parent and child views associated with it.
-
FYI this issue exists in Denali and Mont Blanc, I have seen it in both.
-
Chris, NetSuite is pushing a fix tonight.. it is a problem on their end, not your SCA code. Let's cross our fingers...!
-
I've experienced the same issue. Something is really buggy with this the logout in Mont Blanc... :h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w::h_a_w:
-
Can you elaborate why its one of the most time consuming commands in the API? Thanks.
-
I ended up invoking a suitelet. Thanks for the responses.
-
Yes, I have used the absolute url of the RESTlet along with hard coded authentication values, which does sucessfully invoke the RESTlet from the User Event script. Nonetheless, based on all the articles in SuiteAnswers, I want to be able to do it similar to the client script example 51705 where authentication header is not…
-
I have a similar problem with WMS, in which workflows or user events are not firing after the Item Fulfillment record is created. When the Item Fulfillment record is created via WMS, the context is "Script (Suitelet)." Any inputs?
-
If you want to set a partner on a sales order, you must use the partners sublist.
-
That's actually the solution I implemented. :) I created a custom column field (checkbox) that updates based on the CREATE DROP SHIP PO value before the sales order is saved. Then when invoice is created, the custom column field is sourced from the sales order (standard NetSuite functionality). Luckily the scripting was…
-
The fix I stated above works, I was experiencing the same issues and was advised by one of my PS contacts to do so.
-
Here's a good article, you should be able to log in with your Production NetSuite credentials: https://developers.suitecommerce.com/welcome-suitecommerce-standard-to-the-netsuite-family
-
Add the following dependency to package.json in the root of your sca folder: "xmlbuilder": "8.2.2" Then delete node_modules folder and running npm install again.
-
SCA is great if you have in house developers and the time for your in house developers to learn SCA. This is the ideal long term scenario, but finding a "decent" NetSuite/SCA developer in your area will be difficult. If you decide to go with integrating with something outside NetSuite, you will have to deal with the…
-
Have you tried hiding it via handlebars on the front end?
-
I would customize the registration form to do the validation. You do something where on submit, you call a Suitelet or Service file with elevated permissions to verify if the customer email address exists for that specific subsidiary. If the email address does exist, you can throw an error on the front end and prevent the…
-
wesley@clickstop.com What really helped me with SCA, was doing all 4 lessons in the following tutorial: https://developers.suitecommerce.com...-module-part-1 That lesson touches on the key components of developing in SCA, but you will still need to learn how to utilize and integrate Suitelets (IMO is extremely powerful).…
-
Sorry to hear your bad experience. I recommend getting your own in house developer, they are hard to come by but they are there. :cool: Good Luck!
-
I ended up using the following on a Service.ss file: var headers = request.getAllHeaders(); var ClientIP = headers['NS-Client-IP']; nlapiLogExecution('DEBUG', '<ClientIP>', ClientIP);
-
fourthwaveconsulting I understand your frustrations from a consultant point of view. From a developer's standpoint, SCA is awesome. The ability to use your NetSuite ERP scripting skills to manipulate data and show it on the front end with backbone is extremely powerful. You can also build your own customizations that are…
-
Thank you Sathish! ;)
-
Sandbox has web services enabled, and the credentials I use are for my Admin role.
-
When I use my sandbox credentials, I get this in message: RemoteException: InvalidCredentialsFault Message : You have entered an invalid email address or password. Please try again. When I use my production credentials it goes through fine: Execution completed.
-
Yes, I've installed a fresh copy of Mars.
-
You should probably look into getting a GitHub account. Then you could use a program like SourceTree to push and commit your files, creating separate branches, etc. With GitHub, you can always go back to a previous state in the code, and have several developers working on the code at the same time. To answer you questions:…
-
Here are some ideas instead of a mass update: 1. (Not sure if it works but would be ideal) Have the custom field source from the Sales Order's transaction number 2. Create a script that updates the custom field after submit 3. Create a workflow that updates the custom field after submit
-
If I disable scriptable cart, will user events still fire when orders are placed in SCA?
-
SCA is great, as it leverages true front end javascript with backend NetSuite APIs. You can get lost in Backbone if you don't know you way around, but it is really fun learning. As far as upgrades, I learned the hard way. The best way to code is to Extend and Prototype every out of the box file you want to customize, that…