Hello,
We are on HANA version 1 revision 102.
I have a graphical calculation view, CV_GRAPH_ANALYSIS, with the following input parameter.
By default CV_GRAPH_ANALYSIS has Parameter Case Sensitive property as False, there is no option to view or set this property anywhere that I can see.
CV_GRAPH_ANALYSIS calls a SQL script calculation view, CV_SQL_ANALYSIS, passing it the parameter above.
The input parameter in CV_SQL_ANALYSIS is defined as follows:
CV_SQL_ANALYSIS calls a procedure, SP_ANALYSIS, via the following statement.
BEGIN
If IP_TABLE_NAME = 'ADRC' Or
IP_TABLE_NAME = 'All' Then
CALL "_SYS_BIC"."...schema.../SP_ANALYSIS" (VAR_OUT);
End If;
END;
When I set the Parameter Case Sensitive property to True in CV_SQL_ANALYSIS, CV_GRAPH_ANALYSIS gets an activation warning.
Message:
Input Parameter mapping between case sensitive calculation view and case insensitive calculation view is not supported. Input parameter IP_TABLE_NAME may not work as expected as it is mapped to a Input Parameter of case insensitive calculation view CV_GRAPH_ANALYSIS
This warning does not affect the views execution, when I select Data Preview for CV_GRAPH_ANALYSIS with IP_TABLE_NAME = ADRC, data is returned.
When I set the Parameter Case Sensitive property to False in CV_SQL_ANALYSIS and then select Data Preview for CV_GRAPH_ANALYSIS with IP_TABLE_NAME = ADRC, I get no data back.
Does anyone know what might be causing this behavior and what may be done to correct it?
Thanks,
Victoria