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
-
i'm also experiencing this problem.
-
never mind...i found my answer: https://usergroup.netsuite.com/users/showthread.php?t=1569
-
well, i meant via suitescript or web services. but it's okay. i figured out my answered--it's not possible. memorized transactions are its own separate record type that just refers netsuite to the actual transaction (estimate, invoice, etc.). currently, memorized transactions are only available through the UI. thanks for…
-
one more thing: the guide mentions three arguments for the transform function-- type: record type id: internalID newType: recordtype the API library file shows the same three. BUT, the example given is as follows: trecord = nlapiTransformRecord(fromrecord, fromid, torecord,true); is that boolean a mistake, or is there a…
-
Here is how you would associate an outgoing email with a custom record: var records = new Array(); records['recordtype'] = InternalIdOfCustomRecordType (i.e. 55); records['entity'] = InternalIdOfCustomRecord; nlapiSendEmail(1, custemail, emailsubj, emailtext, null, null, records); You could try editing that message that…
-
it's not possible to add/remove line items via server-side suitescript.
-
sure, i can help. email me at johnpleung@gmail.com.
-
never mind...found my answer. it's nlobjSearchFilter('mainline',null,'is','T',null);
-
no. it could be done if the "Make Copy" button showed in edit mode instead; you could write javascript to remove the button. but, since custom code doesn't fire on view mode, it can't be done.
-
thanks for the reply.
-
thanks, but now i'm getting an "UNEXPECTED_ERROR." here's my code: function OnLoad(type){ if(type=='view'){ nlapiSetRedirectURL('RECORD','customrecord31',nlapiGetRecordId(),true); } } 'customrecord31' is a valid record type...i use it in other scripts. my goal is to a record into edit mode when it's in view mode. i tried…
-
anyone? no takers?
-
try this: document.body.style.cursor = 'wait'; to set the cursor back when the operation has completed, set the cursor to "default"
-
the issue seems to be resolved.
-
never mind...i spoke too soon.
-
you fill in the name of the function you want to invoke when something happens. if you have a function called "DoStuff" and you want it to run before a record is loaded, you put "DoStuff" in the Before Load field. the same idea with the other two fields.
-
i would like to see some kind of reference which shows the number of units API calls/operations take up.
-
yes, i tried "on."
-
i'm looking at page 230 of the suitescript refence manual, under "Search Operators, Types & Date Filter Values." i don't see "on" under the "Search Operator" column, and i haven't been able to get it to work with suitescript searches. also, when i run a search, i'm getting repeats in the results. my guess is that it's…
-
anyone? it's gotta be possible.
-
okay, thanks for getting back to me about that. note to other users: as a workaround, you can create a saved search with all the static criteria you need (mainline=True, date values, etc.), then reference that in your ad-hoc suitescript code.
-
can you post your source code?
-
indeed it was nlapiSendEmail. thanks a lot! i could've sworn i'd tried that before, but i guess i hadn't.
-
Please, vote Yes on Prop 27241.
-
here's a wrapper class in VB.NET i wrote (unfinished, but it works). paste this into a new class: Public Class clsAsyncSearch Public Structure searchStatusStruct Dim percentCompleted As Integer Dim status As AsyncStatusType Dim remainingTime As Double End Structure Public Structure parseStatusStruct Dim percentCompleted As…
-
forgot to mention--it also comes with a couple of events (like a .NET control) that help you determine what percentage it's at: Private Sub asyncSearch_searchStatusChanged(ByVal e As clsAsyncSearch.searchStatusStruct) Handles asyncSearch.searchStatusChanged If e.status = AsyncStatusType.pending Then me.text = "Pending..."…
-
WebServices intentionally prevents you from setting hidden/diabled/display only fields. This is to prevent data corruption. thanks for the response, guys. but isn't it a hindrance that web services can't update/set hidden field values? suitescript can. developers should exercise care when setting values for these fields so…
-
never mind. the order i was trying to initialize had previously been initialized, so that's not an issue.
-
no, i've tried that and that doesn't work. it still gives the same ambiguous message. netsuite employees, any ideas?
-
is the display type Normal on the form as well? it may have to be.