megaphone
SuiteWorld 2026 registration is now open—save $300 Register now
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Stay in the know of how NetSuite can help grow your business with our guides, webinars, and events. Subscribe Here
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
What if your ERP could help surface the next step before you go looking for it? Watch here to learn more!

My Stuff

Review our AI Community Guidelines before posting AI-generated or AI-assisted content. Verify accuracy and include the appropriate AI disclaimer.

3950435 Newbie

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…