Re: How to upload data with an HANA Cloud Trial Account
Hello Christian, I didn't try to upload such a big file on the HANA trial account. So I cannot say if it is a restriction of the trial landscape or a specific problem with your settings. I just can...
View ArticleHow to judge the lines of a table varient in calculation view.
Dear friends, I create a SQL script statement like this: var_sub = SELECT "League","ID","Round","ODD_LINE","SEASON","ODD_SORT","RESULT","SORT_ODD" FROM "_SYS_BIC"."<my...
View Articlestored procedure in HANA
Can anybody solve this stored procedure ? I AM GETTING ERROR :( CREATE PROCEDURE SP_TABLE_NAMES_BOFC_TO_CCR_BW_AC_USD_CF(OUT RETURNVAL NVARCHAR(50), Category NVARCHAR(255), DataEntryPeriod...
View ArticleRe: How to delete an application project properly in HCP?
Nobody? Any kind of help would be appreciated.
View ArticleRe: stored procedure in HANA
Sorry, but what is anyone supposed to do here?We don't know the error you get, nor the SAP HANA revision you're using let alone what this procedure should do. Please prepare the question properly and...
View ArticleRe: Difference in creating Calc.View only like HANA Live AND...
Hi Ramana, Calculation runs on CE engine by default but to improve the performance we can change the default engine to SQL engine which is the best performance over CE engine. Thanks ,Ramnaresh
View ArticleRe: Difference in creating Calc.View only like HANA Live AND...
This statement is complete oversimplification.The SQL Engine uses the same internal operations as a the CE engine and depending on the scenario either the one or the other will yield better...
View ArticleRe: How to judge the lines of a table varient in calculation view.
Hi, why not just using the count aggregate function? DECLARE lv_count Integer;SELECT count(*) INTO lv_count FROM :var_sub; Best Regards,Florian
View ArticleRe: How to concatenate rows into a single column in hana view
How would I use this to only return distinct values concatenated? I thought I could use distinct in a subquery and then use string_agg to query those values, but that doesn't work: Select...
View ArticleRe: Custom data types to mask fields
Ivan, how about running TO_NVARCHAR(TO_DATE("CALMONTH", 'YYYYMM'), 'MM.YYYY') or simply SUBSTRING("CALMONTH",5,2) || '.' || SUBSTRING("CALMONTH",0,4) within your custom view/sql select ? Best,Michal
View ArticleRe: Custom data types to mask fields
Ivan,i agree with Michal on using a calc field to show the concatenation of values and showing them as a string, otherwise, in your web application you will need a JavaScript function to do that ......
View ArticleRe: horrible sql execution plan lead to terrible performance
It's interesting that you called out the partial cartesian join as an issue - since our badly performing queries I mentioned also generate partial cartesian joins. In our case, it is on purpose to...
View ArticleRe: How can I send SMS from my application
Hi Amanda, I'm afraid you won't find any since they're provider specific, however most SMS service providers allow to make a request over HTTP GET -- custom solution using Connectivity Service...
View ArticleRe: How to concatenate rows into a single column in hana view
Try using this format : - select string_agg(column_name, ' value_separator') from (select distinct column_name from table_name);
View ArticleRe: HANA XS HTTP Request
Vijay,you will also need a role added to your user to be able to make calls outside the XS engine. hope this works. here is a very good example Outbound httpS with HANA XS (part 1) - set up your HANA...
View ArticleError 404 not found when running shinesp8 index.html
Hello people I have just started looking at the SHINE demo content in the Hana Cloud Platform trial and I am trying to run the index.html for shinesp8 but its displaying Error 404 not found.Please help...
View ArticleRe: horrible sql execution plan lead to terrible performance
Well, for the case presented by the OT the cartesian join does not look sensible. So it at least requires an explanation why this should be like this.Combining tables based on no common field or...
View ArticleDate corrections issue in UI
Hi All, I am trying to change the date format that shows as GMT time zone with day and month in words. Image attached. Following is the code from View.js. oControl = new sap.ui.commons.TextField({...
View ArticleRe: Date corrections issue in UI
Do you have any blog that I can refer to using moment.js library? I will try it.
View ArticleAssign View access in a new SCHEMA
Hi Folks, Need help on assign the view access. We had a new schema SAPXX created on which we have been asked to provide the access to few views to users. As the view is related to HR, we have been...
View Article