My Stuff
Comments
-
Hey thanks! Learn something new every day in this system
-
I'm actually in the process of investigating this in our system and I am only currently aware of two places to check: * Check RESTlets: Customization -> Scripting -> Scripts, then filter TYPE by "RESTlet" * Check SOAP Web Services: Setup -> Services -> Web Services Usage Log
-
Is that all that can really be done to customize it? Can't add line breaks or lines between each line item? Thanks
-
I don't think our system can allow Jobs to have sales orders (I think it's because we don't have the add-on module "Project Accounting and Management"). But when you look at the xml record of the sales order (append "&xml=T" at the end of the sales order URL link), do you see anything related to entity fields that you…
-
Is there a way to give me Full rights without giving me access to employee information (payroll, etc)? I only need "Full" dev rights. My administrator keeps telling me that this is impossible to do. But I was also told that it's impossible to change my sandbox account roles without a sandbox refresh...so I know the…
-
Did you ever get an answer to this? It's happening to me too but on a production shopping website. CNAME on our DNS seems to be fine and I didn't see any other settings in our webstore that I could really tinker with. Thanks for any help ninja edit: wait I think I found it, I need to just check the checkbox "PRIMARY WEB…
-
Thank you very much. I hope you enjoy a the holiday season, cheers
-
I've been using primarily the upload/download functions. I'm not sure if I've been using SDF but I have been using Eclipse to generate code via New Suite Cloud Project -> Suite Script, I can still do this now without having an account connected. I haven't been creating Custom Object Files, not yet. Thank you so much for…
-
Also here is the log file from Eclipse's Netsuite -> Troubleshoot -> View Log File: [CODE]!ENTRY com.netsuite.ide.eclipse.app 4 0 2018-06-25 09:40:53.661 !MESSAGE com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter$UnknownFieldException: No such field…
-
Oh awesome, I was able to map the [Status] to the [Receipt Inventory Number] field and it worked! Thanks so much!
-
are massive bin transfers possible to do with csv import yet?
-
We solved the issue, our integration was using an administrator role (insecure!) so we changed it to another role in the script. Was only able to troubleshoot by comparing it to another integration that still worked successfully.
-
Do you have any customizations (custom scripts/workflows or custom records)?
-
what was the error in the console? your drop down options is covering up the error name? my understanding is that you need a "return true;" after your rec.save(). But I'm new to 2.0 so I'm not entirely sure why it's working in your Suitelet without returning true.
-
Okay I'm dumb, I was assigning a blank value to those fields and therefore didn't think the save() was working (sItemName should have been pulling from itemid field and not displayname field). I guess I had to see the script from this forum rather than from Eclipse. Now my next exciting task is getting this into a map…
-
[B]'N/ui/dialog' is a client script module. That's why it's not available.[/B] My code was auto-generated from Eclipse (Netsuite IDE). These are all the modules that are available through the IDE: N, N/auth, N/config, N/crypto, N/currency, N/email, N/encode, N/error, N/file, N/format, N/http, N/https, N/plugin, N/portlet,…
-
What's the exact error message and are you defining search at the beginning of your code?
-
You have been very helpful, thank you!
-
thanks for answering this question since I ran into this issue today, cheers
-
Thank you for your clever and brilliant answer khultquist. I just tried adding the last criteria and it's not working, it's not recognizing "quantity". Is that because I'm doing a saved Item Search and not a saved Transaction search? Or should I reference quantity in another way such as {transaction.quantity} or…