Hello All,
I am having a sql expression which is already been created in an old report and it is working fine. When I have copied it to a new report and has the same tables and exact relations, it is giving an error: ORA-00942 table or view does not exist.
Here is the SQl Expression:
(select MAX(intrates.RATE_DT)
FROM INTRATES,SECTYPE,DEALS,SECISSUE
WHERE sectype.thekey = "posnrpt"."SECTYPE"
AND SECISSUE.THEKEY = SECTYPE.SECISSUE_ID
AND LTRIM(RTRIM(UPPER(intrates.ISSUER_DETAIL_ID))) =LTRIM(RTRIM(UPPER('ID'||secissue.ISIN)))
AND INTRATES.RATE_DT <= "posnrpt"."POSN_DT"
)
Do I have to do further modification to it? Also, I can't perform any simple query in the SQL expression becuase it is giving the same error.
I am having a sql expression which is already been created in an old report and it is working fine. When I have copied it to a new report and has the same tables and exact relations, it is giving an error: ORA-00942 table or view does not exist.
Here is the SQl Expression:
(select MAX(intrates.RATE_DT)
FROM INTRATES,SECTYPE,DEALS,SECISSUE
WHERE sectype.thekey = "posnrpt"."SECTYPE"
AND SECISSUE.THEKEY = SECTYPE.SECISSUE_ID
AND LTRIM(RTRIM(UPPER(intrates.ISSUER_DETAIL_ID))) =LTRIM(RTRIM(UPPER('ID'||secissue.ISIN)))
AND INTRATES.RATE_DT <= "posnrpt"."POSN_DT"
)
Do I have to do further modification to it? Also, I can't perform any simple query in the SQL expression becuase it is giving the same error.