Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
how prevent <br> in sales order custom address getting changed to &lt;br&gt;
We're using the PHP Toolkit 2012_2.
When a customer has more than one billing or shipping address, the business requirement given was to use a custom address instead of appending another address to the addressbook.
We also have the requirement to format this custom address so it prints and displays with line breaks e.g.
Customer name
Street1
Street2
City, State, Zip, Country
I tried setting:
$shipAddress = $row['shippingAddressee'].'<br>'.$row['shippingStreet1'].'<br>'.$row['shippingStreet2'].'<br>'.$row['shippingCity'].', '.$row['shippingState'].' '.$row['shippingPostalCode'].' '.$row['shippingCountry'];
0