JRS "Advanced" option (SQL Query modification feature) under format results throwing error while accessing work item from graph.
![]() We are In JRS 6.0.2 and we use "Advanced" option (SQL Query modification feature) under format results section to build a report which is customized report. We are facing issue while accessing the work item from graph mode. it is not fetching the work item.
Query :
SELECT DISTINCT T1.TAGS,
T1.REFERENCE_ID,
T1.REQUEST_SEVERITY,
T1.REQUEST_CATEGORY_NAME
FROM RIDW.VW_REQUEST T1
WHERE T1.PROJECT_ID = 68 AND
( T1.REQUEST_TYPE = 'Defect' AND
LOWER(T1.TAGS) LIKE '%*%' ESCAPE '\'
) AND
(T1.ISSOFTDELETED = 0) AND
(T1.REQUEST_ID <> -1 AND T1.REQUEST_ID IS NOT NULL)
Error message : CRRGW5503E An unexpected response was received from the data source: ORA-00904: "RIDWVW_REQUESTURL1": invalid identifier
But same query is working with traditional way of report building for other project id's.
|
Comments
How did you modify the query in Advanced section?
Hi Wang ,