still not clear on how customer is related to orders table. If they've a related column you could just use
SELECT *
FROM Customers c
WHERE NOT EXISTS(select 1 from orders O join mbr_product mp on o.product_id = mp.product_id
where o.begin_date <= GETDATE() and o.end_date >= GETDATE() and line_status = 'A' and mp.level1 = 'dues'
and o.relatedcolumn = c.relatedcolumn)
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/