Re: Order of execution for various Nodes in HANA Views
And to find out how to use planviz: Show me the timelines, baby! by Lars himself Ravi
View ArticleRe: Input parameter of Analytic view in Calculation View
Hi Jitendra, You need to create input parameters required in CV_1 , once the inputs are created in CV_1 you can map them into AV_1 and AV_2 accordingly. RegardsSantosh.
View ArticleRe: HANA Tables
Hi Nikhil, You might not having the complete authorization to grant the object privilege.Contact your adminstrator and ask him to allocate the object privilege to you. Mostly, if you have created the...
View ArticleRe: Error in executing .hdbti file
Is the "createOn" column type of 'timestamp'? I guess you need to open the csv file with excel, and change the cell format of the "createOn" values to 'yyyy-m-d h:mm:ss AM/PM'. In this format, you can...
View ArticleIssue with the Full Outer join
Hello Gurus, This morning one of my colleagues came up to me with a strange issue on full outer join, which is something like this Table1(T1): CUSTOMER Table2(T2): SALES_ORDER FULL OUTER JOIN QUERY:...
View ArticleRe: Issue with the Full Outer join
Hi Krishna, In the querry excecuted, CustomerID is querried from table T1 as T1."CustomerID". But in T1 table there is no entry for CustomerID 'C5' so it is showing '?' (Null). In the querry if you...
View ArticleRe: Issue with the Full Outer join
Hi Rashmi, In the querry if you replace T1."CustomerID" to T2."CustomerID" you should get the entry for customer ID from SALES_ORDER table. If i replace the T1.CustomerID with T2.CustomerID then i...
View ArticleRe: Calculate Column Subtotal in Attribute View
Hi Shankar, Sub_totals can be achieved through the SQL query using the Grouping_sets which is something like this, select col_1, col_2, col_3, sum(col_4) from <Table_name>group by grouping sets...
View ArticleRe: Issue with the Full Outer join
Hi Krishna, Above behavior is expected. If you would like to get customer details from both the tables, please try like this. Select...
View ArticleRe: Issue with the Full Outer join
Hi Sai Krishna, The above full outer query might work to retrieve the desired data but, taking the "ColumnID" from both the tables is not really what i am looking for and moreover the purpose of full...
View ArticleRe: HANA Tables
Thanks guys for your help. @Krishna : I have one HANA Instance and in that I created 2 user IDs so there are 2 Schemas.User A and User B . As per you User B should not be able to update , Delete,...
View ArticleRe: HANA Tables
Hi Nikhil, Well, If you do not want the User_B to fiddle with the records of the table which is residing in the schema of User_A then you can revoke the privileges this way, Log in with User_A else you...
View ArticleRe: HANA Tables
Hi Nikhil, I concur with Krishna comments and there was typo in my earlier post,it should be like: Mostly, if you have created the table in your User like Nikhil_schema. It will be not visible to other...
View ArticleRe: Issue with the Full Outer join
Hi Krishna, Whenever we trigger "Full outer join" on top of multiple tables with reference to a common column from both tables. The result set will contain both the columns(common columns). see below....
View ArticleRe: Issue with the Full Outer join
Hi Sai Krishna,Thanks for the reply, i understood the point that you are trying to specify but then the usual behavior of the full outer join is it retrieves the tuples from both the tables regardless...
View ArticleRe: Issue with the Full Outer join
Full outer join will give NULL values for Table1(T1): CUSTOMER if we did not get data in Table2(T2): SALES_ORDER for that customer id.In simple way, you are getting NULL values for Customer Id = C4...
View ArticleRe: Issue with the Full Outer join
Pradip, Full outer join will give NULL values for Table1(T1): CUSTOMER if we did not get data in Table2(T2): SALES_ORDER for that customer id.In simple way, you are getting NULL values for Customer Id...
View ArticleCopy modifications done to a view in WIP package to a Released package
Experts, We are looking to configure a package structure in our HANA development environment where we want to set up 2 high-level packages, WIP package where the development and unit testing are going...
View ArticleAnalytical view: Measure can be from only a single table SAP HANA
Since not coming from an analytical back ground, I had this basic question that why can we only get measure from a single table out of the joined tables in data foundation layer of anaytic view. Is...
View ArticleRe: Analytical view: Measure can be from only a single table SAP HANA
Hmm... "why"-questions about implementation aspects typically are not satisfactory for anyone not involved in the actual implementation... But I'll give it a shot anyway Ok, so what's the problem you...
View Article