In Crystal Reports XI, is there a way to use the selected info from one query that is on one connection in another query's (on another connection) FROM statement as a parameter? Remember these are 2 different Connections.
Example:
First Query:
SELECT
SUBSTR(stvterm_code,3,4) AS term
FROM
stvterm
WHERE
SYSDATE BETWEEN stvterm_start_date AND stvterm_end_date
---------------------------------------------------------------
Second Query
SELECT
*
FROM
yen{?term}
Example:
First Query:
SELECT
SUBSTR(stvterm_code,3,4) AS term
FROM
stvterm
WHERE
SYSDATE BETWEEN stvterm_start_date AND stvterm_end_date
---------------------------------------------------------------
Second Query
SELECT
*
FROM
yen{?term}