Hi Krishna,
You maybe using Cloudshare environment, right? if so could you open windows command and exec netstat to check you connect HANA server? the port is maybe 30015.
If it is ok, you open SQL console to exec below sql one by one.
SELECT ARTICLE_ID,CATEGORY from "ONLINEB1"."ARTICLE_LOOKUP" ;
SELECT ARTICLE_ID,SHOP_ID,AMOUNT_SOLD,QUANTITY_SOLD FROM "ONLINEB1"."SHOP_FACTS";
SELECT t1.ARTICLE_ID,t1.category,t2.shop_id,t2.amount_sold,t2.quantity_sold
FROM "ONLINEB1"."ARTICLE_LOOKUP" AS t1
LEFT OUTER JOIN "ONLINEB1"."SHOP_FACTS" AS t2
ON t1.article_id = t2.article_id ;
Check It is ok or not above sql statement, if it is ok, you can test sample sql script for calculation view.
begin
var_out = select now() as "TimeStamp", 1 as "Num" from dummy;
end
you need to define two output parameter for var_out table type, TimeStamp VARCHAR(30)/Num Tinyint.
finally, you define "TimeStamp" as attribute and "Num" as measure for calculation view, and save and active your calculation view.
If the test is ok, you can exec your script again to save and activate your calculation view.
Hope this can help you.
Regards
Jerry