ok, sorry.
if i link two tables using standard equal join type.
i get "Unexpected extra token: INNER"
so if i change manually the sql query from
SELECT "OE61BHED"."Order #", "AR61ACST"."Name"
FROM "OE61BHED" "OE61BHED" INNER JOIN "AR61ACST" "AR61ACST" ON "OE61BHED"."Cust #"="AR61ACST"."Cust #"
to
SELECT "OE61BHED"."Order #", "AR61ACST"."Name"
FROM "OE61BHED" "OE61BHED", "AR61ACST" "AR61ACST"
WHERE "OE61BHED"."Cust #"="AR61ACST"."Cust #"
all is ok...
so, how to force Crystal Reports to use the second syntax.
plus, i'm in crystal adv dev 10, manual editing of sql is not allowed. i have to created "command" statement and that change all the way how to call fields...