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.
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