My Stuff
Review our AI Community Guidelines before posting AI-generated or AI-assisted content. Verify accuracy and include the appropriate AI disclaimer.
Comments
-
Hi Chris, The reason why your Formula is giving you an error is because {customer.pricelevel} does not return a number. It returns the name of the Price Level. Basically, what you are trying to do is to get the the Markup/Discount % on the price level, am I right?
-
Hello Ironside, That is weird. Probably it is related to Silverlight because I was able to communicate with NS through Restlet via browsers and a mobile app. And most of all, without any need to have a cross-domain file since I'm doing some Http request (GET/POST/DELETE). Can you show me your error? It may help me finding…
-
Hello ironside, I don't know anything about Silverlight, but I know a bit of Flex/AS3. I wasn't able to do any call using Webservices(SOAP). I had the same problem as you with the crossdomain.xml file. However, I was able to communicate with NetSuite using Restlet easily. I hope this help you a bit.
-
Hi QMKevin, Here is how to authenticate to NS Web Services. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header> <platformMsgs:applicationInfo xmlns:platformMsgs="urn:messages_2010_1.platform.webservices.netsuite.com"…
-
Hi, Just like first_ns said, it would be better using REST as a protocol. With the use of a RESTlet script, you would be able to get the results of a saved search. Although, I have never used Xcode. I know it can be done with Adobe Actionscript3. Best Regards, Kenny
-
I have done some testing in the past (Restlet beta). So maybe it is not as accurate as it is now. Here's the functions that I used to get the results from a customer. function search(datain){ nlapiLogExecution('DEBUG','type',datain.type); switch (datain.type) { case 'customer': nlapiLogExecution('DEBUG', 'Entering Customer…