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.
Search Criteria for TransactionSearchAdvance
Hi,
I'm having problem with SuiteTalk on PHP, I'm trying to use TransactionSearchAdvanced to extract the line items on a saved search, there are specific criteria on the saved search in which removes the unnecessary lines. And when I'm running it through my php script I'm adding additional filter. But it does not work the way that I want.
Here is my code. Any input/help would be nice.
<?php
$internalid = $_GET['id'];
$type = $_GET['type'];
echo $internalid;
echo "<br>";
echo $type;
include_once 'NetSuiteService.php';
//Start SaveSearch Items
$service = new NetSuiteService();
$id = new SearchDoubleField();
$type2 = new SearchEnumMultiSelectField();
0