SAP DBTech JDBC: [7]: feature not supported: Unsupported parameter...
Hello, We get errors while activating the following procedure: create PROCEDURE "GEO_SPACE"."USER1::DATA_INSERTION" (in client_id int,in time_val SECONDDATE,in location_id ST_GEOMETRY ) LANGUAGE...
View ArticleRe: SAP DBTech JDBC: [7]: feature not supported: Unsupported parameter...
Hi, The error message is self-explanatory: ST_GEOMETRY isn't supported as a parameter in procedures, so you can't create a procedure that uses that data type. Regards,Suhas
View ArticleDebugging PAK SQLScript Planningfunction - Dump RUNT_INTERNAL_ERROR
Dear PAK-Developers! I am facing the follwing issue: When following the procedure to debug SQLScript procedures in this how to: Debugging SQL-Script based Planning Functions in BPC 10.1 Embedded/PAK...
View ArticleRe: Join with analytic views problem
Thanks for the reply mate!Nope it does not do the trick . Please try it out if u have a hana close by, that is why I sent the create table, so you do not have to waste too much time on my problem. It...
View ArticleRe: Row Store Tables of SAP not shown when creating views in HANA Studio
Hi Ahmed,It works well for me, can you open table definition from the schema. Regards,Chandra.
View ArticleRe: Row Store Tables of SAP not shown when creating views in HANA Studio
Hi Chandra, Thanks for your quick reply,I am using HANA Studio 2.0.8, i am not able to use standard row tables, you can take an example of table "TBTCO", do you know any alternative method to use row...
View ArticleRe: Row Store Tables of SAP not shown when creating views in HANA Studio
Hi Ahmed, Row store tables are supported only in Calculation Views. Attribute and Analytic views cannot be created on row store tables.Regards,Chandra.
View ArticleRe: store last value
Hi Kamruzzaman, You can try below query. It will work select * from ( select A."Material",A."Plant2",A."year /month",case when A."Mat Standrd" is null then B."Mat Standrd" else A."Mat Standrd" End as...
View ArticleRe: Filter expression: WildCard Values in HANA Cal View
Hi San, In the graphical view, add a projection to apply filter and you can use MATCH keyword in Filter expression. Syntax would be like this. (MATCH("MATKL", '02*') OR MATCH("MATKL", '03*') OR...
View ArticleRe: What is the syntax for a delete with a join in HANA?
Hi Doug, Try the below code. It will work. delete from "MYDB"."TYS_TEST2" t1where exists(select 1 from "MYDB"."Tys_xref" t2 where t1.SOURCE_VALUE=t2.SOURCE_VALUE and t1.TARGET_VALUE=t2.TRAGET_VALUE);...
View ArticleRe: Join with analytic views problem
Hi David, To my understanding, it is working perfectly and there is nothing wrong in the behaviour. Consider TABL_1 as header table with Order and Value. TABL_2 as item level table with Order, Line and...
View ArticleRe: Join with analytic views problem
Hi David, The aggregations are getting applied in the analytic view and hence you are getting the result like that.See the examples and the queries getting fired below: What you are expecting is below:...
View ArticleRe: store last value
Hi Lars, Only challenge I can see here is not able figure out based on what criteria will I fill the blank values. I cannot see 'RANK' function also helping here. BrSumeet
View ArticlePrivilege required for connecting with MS-EXCEL other than the Risky Data Admin
Hi Everyone Earlier I had given Data Admin Privilege for Connecting Excel with Hana to a User(say TestUsr). But later on I came to know that Catalog Read and Data Admin Privileges allows the TestUsr...
View ArticleUnsupported data type ST_POINT sap.hana.democontent.epmNext.data::MD.Addresses
Hello, While testing an ODATA service with the DEMO tables and error is shown: I´m using: SAP Cloud Appliance Library SPS 9 Please Help.
View ArticleRe: Unsupported data type ST_POINT...
Hello, Since I suppose this error is becaouse the ST_POINT is not supported I backed up the table and modified it. With this change I was able to activate my odata service. Kind Regards.
View ArticleRe: Regarding SQL Logic
Hi Sumeet ,Use the below and let me know. No need of loops. You can do it with below logic using rank function .I checked. Its working. But the column and table names accordingly as you require....
View ArticleRe: Connection.prepareCall: expected string as first argument
>. However passing string value to prepareCall statement. No you aren't. You are passing an object which is returned from the conn.prepareStatement. Do you think you are passing in the returned...
View ArticleRe: Connection.prepareCall: expected string as first argument
Hi Thomas, Thanks for your reply. I tried to pass direct string as cst.setString(1,'2015-09-14'); But for this also its giving same error message. I agree it may be not efficient way to call store...
View ArticleRe: ERROR SPS10 com.sap.hana.spark.conf.HanaESConfig - Hana Extened Store...
Hi James, did you check the SAP Note 2177933 already? It has got the installation and configuration guide Check that out and see if it works RegardsKingsley
View Article