Hello,
I have created a simple HANA CDS View as below. After I activate it I can preview the data and I can see this view is available SAPDEV schema (see screenshot).
namespace WCB_CDS;
@Schema: 'SAPDEV'
VIEW CDSView as select from MARA
{
MARA.MATNR AS ProductNumber,
MARA.EAN11 AS EAN
} ;
I then created a calculation model and tried to add this view but it didn't allow me to (I selected the view and hit OK nothing happens. I can however add other sap tables like MARA,VBAK etc)
Can some one tell me what am I missing? My intention is to consume CDS Views in calculation model so that BI Clients tools can consume the data via calculation model.