I have an interesting problem with the following SQL query used in a Crystal Report. The problem that I'm having is that even though I am putting in this specific SQL statement when the report is run from within SalesLogix the select statement is being adjusted. The problem is that some of the LEFT OUTER JOINS are being changed to INNER JOINS.
Here's an example
LEFT OUTER JOIN USERPROFILE CSSPROFILE ON
USERPROFILE."USERTEXT2" = CSSPROFILE."USERTEXT2" AND
CSSPROFILE."USERTEXT1" = 'Inside Sales'
is changed to
INNER JOIN USERPROFILE CSSPROFILE ON USERPROFILE."USERTEXT2" CSSPROFILE."USERTEXT2" AND CSSPROFILE."USERTEXT1" = 'Inside
Sales'
Here's an example
LEFT OUTER JOIN USERPROFILE CSSPROFILE ON
USERPROFILE."USERTEXT2" = CSSPROFILE."USERTEXT2" AND
CSSPROFILE."USERTEXT1" = 'Inside Sales'
is changed to
INNER JOIN USERPROFILE CSSPROFILE ON USERPROFILE."USERTEXT2" CSSPROFILE."USERTEXT2" AND CSSPROFILE."USERTEXT1" = 'Inside
Sales'