My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
Joahnna, thank you, it works
-
My concern is that I cannot find code sample in documentation. If you investigate NetSuite documentation and provide a sample for me - I will be very grateful.
-
I had edited workflow, so it's working now only in View state
-
Thanks. For some reason, if i click "Populate" button in Edit mode - it just return to View mode, and doesn't change anything. Also, what should i do, to use this button in Create mode?
-
If it will be useful - this is the base string, that i get from Google API…
-
Okay, i found way how to use Google OAuth API for creating valid signature with HMAC-SHA256. private static string GenerateSignature(string consumerKey, string consumerSecret, string token, string tokenSecret, string nonce, string timestamp, Uri url) { string signatureBase = OAuthBase.GenerateSignatureBase(url,…
-
Thanks for the answer. According to last link, i think, that problem might be in base string, that i encrypt. Can you please show, what exact string i need to encrypt in signature for SuiteQL request? Like 'oauth_nonce%3Dnonce%26oauth_timestamp%3Dtime%26...'. I think, that i encrypt wrong list of parameters for SuiteQL…
-
No, i will try to remove roles from another user
-
I didn't see Concurrent Web Service Users at Access subtab in standart form
-
I'm trying remove bunch custom roles, like custom Sales Person and etc. Where i can find this option? I've tried on custom and default forms We can add roles to another employee
-
Hi. Unfortunately, i don't have this role in role list. Also, i cleared cache and still don't have opportunity to remove roles
-
Hi. I know this employee has reached the maximum of their roles, so I want to remove one role in order to add another. I didn't want to add more roles than I can, but i can't remove role from employee
-
Unfortunately, it also doesn't work well for me?. Couple item fulfillments have same line id, so i can't say, which was used to create invoice. Thanks for answer, i didn't thinking about comparing line ids before
-
Thanks for answer. Unfortunately, this solution isn't suitable in my case, because of multiple Item Fulfillments, linked to Sales Order. Can i save Item Fulfillment ID to Invoice or Sales Order on "Bill" button event by suitescript, workflow, etc? Does the "Bill" button have own event like "Create", "Edit"?
-
How exactly I can do it?
-
Thanks! Guess, i need to add SuiteAnswers to bookmarks ?
-
Hi. My preffered nickname "VirtusX", thanks. Mikko De La Fuente-Oracle wrote: Regarding your concern about the error "You need to provide a valid search field operator", let us check on this and will let you know for any findings. I tried to find all the topics, that might help me, and found, that i need to specify…
-
Thanks for your response. I'm getting this from "Code export": var itemSearchObj = search.create({ type: "item", filters: [ [["displayname","contains","Test"],"OR",["description","contains","Test"]], "AND", ["isinactive","is","F"] ], columns: [ search.createColumn({ name: "itemid", sort: search.Sort.ASC, label: "Name" }),…