Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Compound Where Statement Not Working

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Compound Where Statement Not Working
 Login/Join
 
Master
posted
Why does this happen?

TABLE FILE DMDOR
PRINT
...
WHERE DORTYPE EQ 'DEPT';
WHERE DORCP EQ '&MONTH';
WHERE DORCY EQ '&YEAR';
WHERE CO EQ '&CO';
WHERE DEPTNUM EQ '&DEPT';
WHERE (ACCTTYPE NE 'Deductions' AND ACCTSECT NE 'Profit &| Loss');
END


yields
SELECT ...
FROM DMDOR T1
WHERE (T1."ACCTSECT" <> 'Profit & Loss') 
AND (T1."ACCTTYPE" <> 'Deductions') 
AND (T1."DEPTNUM" ='816000') 
AND (T1."CO" = '01') 
AND (T1."DORCY" = '2012') 
AND (T1."DORCP" = '09') 
AND (T1."DORType" = 'DEPT');


Instead of this?
SELECT ...
FROM DMDOR T1
WHERE ( (T1."ACCTSECT" <> 'Profit & Loss') AND (T1."ACCTTYPE" <> 'Deductions') )
AND (T1."DEPTNUM" ='816000') 
AND (T1."CO" = '01') 
AND (T1."DORCY" = '2012') 
AND (T1."DORCP" = '09') 
AND (T1."DORType" = 'DEPT');


- ABT

This message has been edited. Last edited by: Kerry,


------------------------------------
WF Environment:
------------------------------------
Server/Client, ReportCaster, Dev Studio: 7.6.11
Resource Analyzer, Resource Governor, Library, Maintain, InfoAssist
OS: Windows Server 2003
Application/Web Server: Tomcat 5.5.25
Java: JDK 1.6.0_03
Authentication: LDAP, MRREALM Driver
Output: PDF, EXL2K, HTM

------------------------------------
Databases:
------------------------------------
Oracle 10g
DB2 (AS/400)
MSSQL Server 2005
Access/FoxPro
 
Posts: 561 | Registered: February 03, 2010Report This Post
Platinum Member
posted Hide Post
If I am not wrong.. isn't that what the translator is supposed to do. In effect that is what the compound WHERE clause is doing. Unless there is an OR in the compound WHERE, it should not matter. Both of them will have same result set.

thanks
Sashanka


WF 7.7.03/Windows/HTML,PDF,EXL
POC/local Dev Studio 7.7.03 & 7.6.11
 
Posts: 103 | Registered: June 12, 2009Report This Post
Master
posted Hide Post
ABT, what's the concern? The results are exactly the same.


In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
 
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Compound Where Statement Not Working

Copyright © 1996-2020 Information Builders