Hi Experts,
I am having issues while trying to run this join statement in HANA studio. I am trying to join an Attribute View and an Analytical View in calculation view based on SQL Script. My statement compiles properly and activates also but when I am trying to do data preview, the statements runs for quite some time and throws this error " Error Executing Query: SAP DBTech JDBC: [2048]: column store error: search table error: [47] message not found "
Same thing happens when I try to create Calculation View using GUI format. When I execute the Analytical view and Attribute view separately, data comes back very quickly but when using them in a join, it is not coming up.
Here is my code:
IT1 = CE_JOIN_VIEW
(
"SCHEMA"."ATTRIBUTE VIEW",["BELNR", "BUKRS",
"BUZEI", "GJAHR", "AUGDT","AUGBL", "SHKZG", "GSBER", "DMBTR", "WRBTR", "KZBTR","KOKRS", "SAKNR", ]
);
IT2 = CE_OLAP_VIEW
(
"SCHEMA"."Analytical View",["BELNR","BUKRS","GJAHR"]
);
var_out = CE_Join
(
:IT1, :IT2,["BUKRS","GJAHR","BELNR"], ["BELNR","BUKRS",
"BUZEI"]
);
Any thoughts are greatly appreciated.
Thank you,
Raj