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]Converting an SQL statement to WebFocus Code - WF 8.0

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[Closed]Converting an SQL statement to WebFocus Code - WF 8.0
 Login/Join
 
Guru
posted
Does anyone know how to code the following SQL statement into WebFocus code? Thanks.
SUM (CASE WHEN field1 IS NULL                 
AND field2 IS NULL
AND nvl(field3,'X') <> 'WXYZ'
AND (field4amt > 0
OR field5 = 'MANU'
OR (field6 = 'Y'
AND (nvl(field5,'X') <> 'BRID'
OR field7 IS NULL )))
THEN 1 ELSE 0 END ) miscellaneous,

This message has been edited. Last edited by: Michele Brooks,


WF 8205, Windows 10
Oracle DBMS
EXL07/PDF Output
 
Posts: 244 | Registered: August 27, 2012Report This Post
Expert
posted Hide Post
Hi Michele,

Oracle, correct?

The NVL function assigns a value to a test if the donor field is null - a bit like coalesce.

So the following code should work -
SUM COMPUTE W_field3/A4 = IF field3 IS MISSING THEN 'X' ELSE field3; NOPRINT
    COMPUTE W_field5/A4 = IF field5 IS MISSING THEN 'X' ELSE field5; NOPRINT
    COMPUTE miscellaneous/I1 = IF field1 IS MISSING
                              AND field2 IS MISSING
                              AND W_field3 NE 'WXYZ'
                              AND (field4amt > 0
                                OR field5 EQ 'MANU'
                                OR (field6 EQ 'Y' AND (W_field5 NE 'BRID' OR field7 IS MISSING)))
                         THEN 1 ELSE 0;

Not tested obviously but should give you something to go on.


T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Guru
posted Hide Post
Thank you so much, but unfortunately I still do not get the desired results. I was just given some alternate logic to use; therefore I am closing this case. Thanks again.


WF 8205, Windows 10
Oracle DBMS
EXL07/PDF Output
 
Posts: 244 | Registered: August 27, 2012Report 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]Converting an SQL statement to WebFocus Code - WF 8.0

Copyright © 1996-2020 Information Builders