Hi all,
I've been overwhelmed with this for 2 days, still cannot find what is missing. Perhaps you can help me with this.
I'm using pass-through SQl to take data directly from Oracle DB.
Here's the result from debug.print vSQL:
SELECT
Name,
Account_ID,
Account_Team,
Status,
Market_Type
FROM TB_ACCT_V
WHERE (((Market_Type IS NOT Null) AND (Market_Type <> 'Network Services'))
AND (Status <> 'Delete')
AND (Account_ID NOT IN
(SELECT
Account_ID
FROM TB_OPTY_V
WHERE ((Class IS NOT Null) AND (Class <> 'Network Services'))
AND ((Type IS NOT NULL) AND (Type <> 'Delete'))
AND (Opportunity_Name NOT LIKE 'TB - ORT%')
ORDER BY Sales_Stage, Sales_Team, Type)))
I've been overwhelmed with this for 2 days, still cannot find what is missing. Perhaps you can help me with this.
I'm using pass-through SQl to take data directly from Oracle DB.
Here's the result from debug.print vSQL:
SELECT
Name,
Account_ID,
Account_Team,
Status,
Market_Type
FROM TB_ACCT_V
WHERE (((Market_Type IS NOT Null) AND (Market_Type <> 'Network Services'))
AND (Status <> 'Delete')
AND (Account_ID NOT IN
(SELECT
Account_ID
FROM TB_OPTY_V
WHERE ((Class IS NOT Null) AND (Class <> 'Network Services'))
AND ((Type IS NOT NULL) AND (Type <> 'Delete'))
AND (Opportunity_Name NOT LIKE 'TB - ORT%')
ORDER BY Sales_Stage, Sales_Team, Type)))