Re: You must use SLES 11 SP 1 or higher
Hi Crystal,SAP HANA database for while works just with SLES 11 SP1. I can install other components as SAP HANA Studio, SAP HANA Client and others OS, but the mais component as I've said just in SLES....
View ArticleRe: Graphical vs Script Based Calculation views
Hi Swathi, Graphical based calculation views offer better performance compared to SQL based calculation views. But it will be difficult to implement complex business logic in graphical based...
View ArticleRe: SAP HANA installation
Hi Balaji, you need to have SCN account to access HANA free trail.Other people of your company also can access HANA provided they must have SCN account,which is created by any email IDs....
View ArticleSAP HANA query
Hi Guys, I am new to the SAP HANA. I just tried making an analytic view in which i made a calculated measure(return type integer). When I use that analytic view in my calculation view, the problem i...
View ArticleSAP HANA query
Hi Guys, I am new to the SAP HANA. I just tried making an analytic view in which i made a calculated measure(return type integer). When I use that analytic view in my calculation view, the problem i...
View ArticleSAP HANA query
Create it as a calculated attribute instead of a calculated measure!In the latest revisions, the terminology is "calculated column", and within it, select the column type as "attribute". Also make sure...
View ArticleSAP HANA query
Hi Henrique i tried to do that but was not successful as some data types could not be used in calculating attributes window. I tried to write a sql script to achieve what i want :the script is :...
View ArticleRe: Attributes Vs Private Attributes
Hi Henrique, Thanks for that simple explaination , not sure why does the Development guide make it so hard ?I am using SPS5 now, but I see only columns now instead of Attributes under Atrribute views...
View ArticleRe: You must use SLES 11 SP 1 or higher
Hi Edi, Do you mean that PAM information is not valid and we should ignore? Regards,
View ArticleRe: HANA POC Info
Swathi, Please provide few additional details on your POC efforts so that I guide you better: 1 - What are the main objectives of your POC? stress testing HANA capabilities with high volume data or...
View ArticleRe: What is Referential Join
Hi Nagaraj, I hope you are getting correct results as per the SAP implementation doc .I tried your scenario, referential join behaving as a inner join for the Attribute views. " Referential join is...
View ArticleRe: Creating a Circular Log/History Table
This will create a simple circular table: Drop table T3;CREATE TABLE T3 (KEY INT, ROW INT PRIMARY KEY, USER INT, VAL INT);UPSERT T3 SELECT COALESCE(MAX(KEY), 0) + 1, (select MOD(COALESCE(MAX(KEY), 0),...
View ArticleRe: Segmentation fault when viewing STS_ANALYTIC_WITH_HIER_VIEW from Excel...
Felix, Please check for BO design studio patch updates and make sure that your design studio is on the latest patch level and try again. If still having issues, please open a customer message....
View ArticleRe: SAP HANA query
Hi Rahul, Statements like Drop table and Create table are not allowed in script based Calc view. Can you please execute these outside the Calc view definition in SQL editor and then try your Calc view...
View ArticleRe: Creating a Circular Log/History Table
I believe this is the correct solution. Note the use of a combination primary key and having to use a WHERE clause. Drop table T3;Drop sequence "ID_SEQ"; create sequence "ID_SEQ" increment by 1 start...
View ArticleRe: Attributes Vs Private Attributes
Hi Vittali, The concept remains same. Also "Private" is a conceptual term. It is similar to the scope of an attribute in JAVA / :NET class. As mentioned earlier, the properties of the "Private" columns...
View ArticleText Join in Analytical view
Hi Guys, Couple of queries,1. I find text join works fine in Analytical view(SPS5 version), but I remember reading in some SAP documentation that text join are relevant to only to attribute views.2....
View ArticleRe: Attributes Vs Private Attributes
Thanks Ravi!Got it! I would have marked this thread as answered, if I had posted the initial question. Regards, Vittali
View ArticleRe: Text Join in Analytical view
Hi Vittali, Logically it makes sense to mark the join as "Text" when it comes to Attribute view as you get the text description for the attributes in there. But you can also make a join in Data...
View ArticleRe: Text Join in Analytical view
Hi Ravi, Thanks and appreciate your response!Its clear for me now..However I found that n:1 is also possible for "TEXT Join" ( Join type = TEXT) along with 1:1? Well for me, left outer make n:1 makes...
View Article