|
While reengineering a program, I created the following conditional statement: IF (WS-RISK-CODE = "FX" AND WS-ORDER-DOES-NOT-EXIST) <perform some statements> END-IF. The conditional statement was evaluated false during the program run even though WS-RISK-CODE equalled "FX" and WS-ORDER-DOES-NOT-EXIST was true. None of the statements to be performed were performed. I then removed the parentheses to result in the following: IF WS-RISK-CODE = "FX" AND WS-ORDER-DOES-NOT-EXIST <perform some statements> END-IF. This worked. I'm not sure I understand how the parentheses caused the problem. I assumed the order of evaluation within the parentheses would be the relational operator first and then the logical operator. Can someone explain it to me? Thanks, Kelly
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.