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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
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