My Stuff
Comments
-
Not sure what you mean by that. I don't want this customized lead form to be specific to a one record, but to all lead records. I want my customized lead form to be the default custom form used whenever I edit a lead. Even if I set it preferred, it will not load it as default.
-
Along with your suggestion, I dinked around with different settings turning them off and on, and resubmitting, and finally it took. Thanks again for your help.
-
I noticed on the Customer form for a Lead, that the Sales subtab is available. Since I am new to NetSuite, I was looking for the best way to convert a lead to an opportunity. Is there a better way to convert a Lead to an opportunity without using the Sales subtab to create a new opportunity? I would really like to make…
-
Thanks for the tip. I tried that and it didn't resolve the problem.
-
Believe it or not, my culprit is the externalid field. If I remove the externalid field, I don't get an DUP ENTITY error. If I add this "externalid":"333342", I get the error. Before I upgraded to the latest version of NetSuite, I had no issues with this field. Are there dependencies on this field?
-
I appreciate your help, even though what you provided is nearly identical in fuctionality. Since this is java script, using single or double quotes really doesn't matter. I have other code that works with both single and double quotes. This code works, but only searching internalid. I cannot get this code to work with…
-
Sounds like a good idea, but I still have the problem of nlapiCreateEmailMerger being undefined. For some reason, no matter what I do, the function is not available. Doesn't matter what I do before or after, if the function is undefined, it is not going to work. Thanks for the tip though.
-
Here is my url, so I know for sure it is 3. https://system.na2.netsuite.com/app/crm/common/merge/emailtemplate.nl?id=3&e=T. The Record Type is "Entity".
-
For the email template, the Record Type is Entity (not sure if that is right or not). This is for a customer record.
-
I followed this article exactly: https://netsuite.custhelp.com/app/answers/detail/a_id/43083/kw/nlapiMergeRecord%20email/related/1, so there must be some small detail that I am missing.
-
What has me stumped big time is that this code is nearly identical to the code from this article: https://netsuite.custhelp.com/app/answers/detail/a_id/43083/kw/nlapiMergeRecord%20email/related/1 Its acting as if I don't have something configured correctly. var recordid = nlapiGetRecordId(); // Load Record ID var recipient…
-
First of all, thanks for your help. I cannot for the life of me figure this out. I actually tried that, but I couldn't get it to work. I took exactly what you have with a few modifications, and I am getting this error: Code: SSS_INVALID_SRCH_FILTER_EXPR_OBJ_TYPE Details: filters var filters = [ ['contact.internalid', 'is',…
-
Unless I am missing something, I can't see how to group a criteria with ands and ors within the tool.
-
Not exactly sure what you mean. nlapiGetRecordId() does return the correct id value for the customer that I am editing, and email does return the email address. I just need to do a toString to get the correct value, but I don't see how that has anything to do with the error nlapiCreateEmailMerger is not defined. If you…
-
Looks like Client type doesn't work either. Getting the same error: undefined. ReferenceError: nlapiCreateEmailMerger is not defined. How do I find out where it is defined?
-
I have tried both Suitelet and Restlet, and both don't seem to work. I haven't tried Client yet. I guess that is worth trying. Kind of hard to believe this type of functionality is not available as a Suitelet or Restlet.
-
Unless I am missing something, these templates must be created from the Setup > Company > Email > System Email Templates. That is very misleading, since I thought you could create email templates from Documents > Templates > Email Templates. I didn't necessarily want to create System Email Templates.…
-
I think I have given up on trying to get this stupid nlapiCreateEmailMerger function to work. I spent way to much time trying to get this to work. I am just going to do this manually. Won't be pretty, but atleast it will work. Thanks everyone for helping me out.
-
How do I know if it is a scriptable template? I don't see any fields that enable it as scriptable.
-
SuiteScript. Many of the api calls I make in the script seem to work fine. There is something odd about the nlapiCreateEmailMerger function. Is there another way to do this that works?
-
That was the trick. Its the devil in the details that will get you every time. Thanks again for all your help.
-
first of all, thanks for the feedback, but I still can't get it to work. I also really need this to work with nlapiCreateSearch, since I need to be able to limit the rows by page. I also tried to use the plugin and I am getting Export as script not supported. "This search type is not supported by SuiteScript." I am using…
-
Thanks, that was the ticket. By the way, that plugin is very handy, and so thanks for sharing it.
-
I apologize, I screwed up. When I switched from using nlapiSearchRecord to nlapiCreateSearch, I didn't change the arguments as well. I wrongly assumed they would be the same. This is when I wish there were some better way to do reference checking for Java Script. Thanks for your help.
-
Thanks for this helpful info. So as a new external integrator, what API technology is Oracle NetSuite trying to encourage their customers to use: Web Service, or Restlets? I notice that NetSuite doesn't have a Rest Interface, but seems to be forcing their customers that want to use Rest to create their own Rest interface…
-
Looks like my origional problem of accessing the link to "C# > RESTlet Authentication Using Token (Token-Based Authentication) "; which, by the way is found in SuiteAnswers is finally working. Thanks!
-
Even though this OAuthBase class is somewhat helpful, I was really hoping for a good c# example making a request using the following required fields: [LIST] [*]oauth_signature (required) - Credentials to verify the authenticity of the request, generated by calling your application. The Token Secret and Consumer Secret are…
-
Based on this article http://techfino.com/governance-changes-limit-rest-integrations/ that independently explains the pros and cons of using SOAP as compared to Restlets, it seem very obvious to me that the best option is to use Restlets. This concurrency issue is a big problem to overcome without spending alot of money. I…
-
So in other words, in a multi-threaded environment, will one SuiteTalk user work? Can multiple threads use the same SuiteTalk web services session to make web service calls? Where can I find the SuiteTalk list of operations that can be used in a single session multi-threaded environment?
-
It is taking me to the Choose a Role web page. Are you seeing something different when you select this url? I added an attachment so you can see the page that this is being redirected to. I suspect this is the wrong link to the C# > RESTlet Authentication Using Token (Token-Based Authentication) example. Thanks, Kent