thanks for your concern, but luckily I've found a way to do that using inline HTML portlet. but here is the query let me know if you can achieve the same thing with saved search because i was not able to do it. my blocker is i want to get those SO who have foreign character in their shipping address (other than character allowed for English even other languages).
SELECT
Transaction.TranDate AS order_date,
Transaction.TranID AS sales_order_number,
TransactionShipment.DestinationAddress AS shipping_address,
REPLACE(BUILTIN.DF(Transaction.Status), 'Order : ', '') AS order_status
FROM
Transaction
INNER JOIN TransactionShipment ON TransactionShipment.Doc = Transaction.ID
LEFT JOIN TransactionLine ON TransactionLine.Transaction = Transaction.ID
where
Transaction.TranDate BETWEEN SYSDATE - 200 AND SYSDATE
AND Transaction.Type = 'SalesOrd'
AND Transaction.Status NOT IN ('SalesOrd:G', 'SalesOrd:H', 'SalesOrd:F')
AND TransactionShipment.DestinationAddress IS NOT NULL
AND REGEXP_LIKE( BUILTIN.DF(TransactionShipment.DestinationAddress), '[^ -~]' )
GROUP BY
Transaction.TranDate,
Transaction.TranID,
TransactionShipment.DestinationAddress,
BUILTIN.DF(Transaction.Status),
BUILTIN.DF(TransactionLine.Location)
ORDER BY
Transaction.TranID ASC