Thech701storm
Programmer
I'm trying to design a report from activitym1 table where activity.type = 'SOMETHING' and I need some fields from the probsummarym1 table. SO I do an INNER JOIN and try it !
ERROR ODBC always I tried LEFT and RIGHT JOINs and didn't work either. I tried CrystalDesigner to automatically design the sql request and didnot work either.
THe generated request looks like this :
SELECT
activitym1.number, activitym1.type, activitym1.datestamp, activitym1.operator, activitym1.description,
probsummarym1.brief.description
FROM
{ oj activitym1 activitym1 INNER JOIN probsummarym1 probsummarym1 ON activitym1.number = probsummarym1.number }
WHERE
activitym1.type = 'S-Modification de priorité'
ORDER BY
activitym1.operator ASC
SHOULD WORK but doesnot. So no Crystal report possible.
Anybody can help ????
On top, ERROR ODBC as a message is not helping much!
THanks for any help possible...............
ERROR ODBC always I tried LEFT and RIGHT JOINs and didn't work either. I tried CrystalDesigner to automatically design the sql request and didnot work either.
THe generated request looks like this :
SELECT
activitym1.number, activitym1.type, activitym1.datestamp, activitym1.operator, activitym1.description,
probsummarym1.brief.description
FROM
{ oj activitym1 activitym1 INNER JOIN probsummarym1 probsummarym1 ON activitym1.number = probsummarym1.number }
WHERE
activitym1.type = 'S-Modification de priorité'
ORDER BY
activitym1.operator ASC
SHOULD WORK but doesnot. So no Crystal report possible.
Anybody can help ????
On top, ERROR ODBC as a message is not helping much!
THanks for any help possible...............