megaphone
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!
No Limits. Just possibilities. Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.
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.

My Stuff

New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.

3943961 Newbie

Comments

  • Not being able to print a Packing Slip for a Vendor Return Authorization has also been an issue with us. I just saw there is an enhancement for printing a packing slip with Vendor RMA. Vote for Enhancement # 144006!
  • Thanks Cheryl, I didn't clarify myself very well. The HSA is pretax but it goes directly into our employees back account. It does not have to go into a liability account, however; I have to choose one since it is setup as a deduction. Therefore we have to do a Journal engry every month to get this fixed. I am not able to…
  • Might I recommend voting for Enhancement #82815. This enhancement requests that a Sales Order can be generated from an RMA. A yellow button on the RMA that says "Sales Order" would be a really nice feature!
  • Derek, I too would like this feature. I have requested this as an enhancement and to my knowledge, I am the only one. Call or e-mail for the following enhancement: Enhancement:43331 Transactions>Customer is requesting to be a dropdown list of contact under the Messages tab>To be emailed.
  • This is a defect. I can't believe it has not been fixed yet. You also get an error when you click the Shopping Cart Abandonment Graph. Log a complaint for Issue # 135832. This will help them fix the shopping cart abandonment, hopefully soon. I do not know of an case for the Checkout Abandonmet.
  • Here is a website that has an example of updating a custom field on a customer record using the PHPToolKit. This looks pretty similar to your problem: http://www.ozonesolutions.com/programming/2011/08/netsuite-php-toolkit-and-custom-fields/
  • Have you tried emptying out the wsdl cache? We were having 45 second wait times on that same line of code. I would try emptying out the wsdl cache and making sure that your user has read and write access to the directory (/tmp/ on most linux machines). Also, running the code as multiple users can create trouble too (see…
  • Got it figured out. We are now using a custom field to deal with it. Thanks.
  • I think it might have something to do with your first suggestion. I can create an opportunity through the UI and add people to the sales team. However, it defaults the first employee to 100% and will not allow me to change it. I will have to see if I can fix the permissions. Thanks for the suggestion.
  • Sounds good. Thanks for the help.
  • Thanks Redfox, It worked! However, I'd really like to know how I could have found that out myself. I assumed that the capitalization patterns found in directory_v2008.2.php would be the ones I should use. Is it the Netsuite Records Guide that I should be looking at? I really don't want to have to rely on this forum every…
  • Thanks for your reply. Yes, actually I did. As far as I can tell, this isn't a case sensitivity issue. The directory_v2008.2.php file lists a customer record type as "Customer", but as you can see from my working example "customer" works just fine. I'm hoping that when someone graciously helps me solve my problem, that…
  • Has there been any work to improve this? Not being able to set access on contacts is a pretty serious problem.
  • I'm having trouble running a search. All I want to do is search for all items with a certain internal ID. This should be easy, but nothing I try works. Here is my code:[php]$sf = new nsSearchField('SearchTextNumberField','internalId','equalTo','1475'); $sb = new nsSearchBasic('SearchTextNumberField',$sf); $result =…
  • Wow, thanks for all the help. After I made that fix you prescribed, everything is working great! It feels great to have all the power of Netsuite WebServices at my fingertips.
  • Thanks for the help. I think your suggestion was right. I changed item to inventoryItem, but sure enough, I get a new error that makes no sense to me. Array ( [faultcode] => ns1:Client.NoSOAPAction [faultstring] => Invalid SOAPAction header: add [detail] => Array ( [hostname] =>…
  • Oh wow, I thought I was in the clear, but now I have a new problem. I'm trying to do a get request on an item that is listed in the netsuite web interface as "Non-inventory Item for Sale". I figured that from https://webservices.netsuite.com/xsd/platform/v2_6_0/coreTypes.xsd I should use "nonInventorySaleItem" for my get…
  • John, I'm trying to use the nsLib nusoap modification. I am quite experienced with PHP, but I have very limited experience using it with SOAP and all of that is with the native PHP5 soap client which apparently can't handle abstract types. I was finally able to log-in, but I'm having a terrible time trying to get a single…
  • This is a pring_r of the nusoap client object. It says we don't have OpenSSL installed, but I'm pretty sure we do. [CODE]soapclientw Object ( [username] => [password] => [authtype] => [certRequest] => Array ( ) [requestHeaders] => [responseHeaders] => [document] => [endpoint] =>…
  • Thanks for the link. I have been trying to get your code to no avail. If I just try and use your code unaltered I can't log-in. The screen just says: Login FAILED. If I "view source" this is what I get: <html><body><h2>Login FAILED</h2><pre></pre></body></html> Without any…
  • So it seems you are confirming what I first thought. What do I need to do then to get this working? Should I use a different client like NuSOAP or is there some modification or update for the PHP5 SOAP client that will make this work? I'm just a beginner using SOAP so I'm not sure how to improvise a solution myself. I'm…
  • Thanks so much for the help. I'm not even sure what I did, but I tried to adjust the curl settings and it finally worked. Now I have a new problem. I don't really understand how the role number thing works. How do I know what number to use? Here is the message I get when I print_r the response object from logging in: Array…
  • The fix worked! You guys have excellent service. Thank you.