Posts

Showing posts with the label SAP HANA

Access HANA view in SQL Console

Image
For each view, system will create a table whether it might be SAP HANA LIVE view or Calculation view or Attribute view. Those tables will be reside in system schema "_SYS_BIC" Expand the schema -> Column Views. There you can see lot of tables. Tables will be available for each view and each column inside that view. Make sure to get the main view. For example if you take HANA Live View "VBAK_COM". --Main View table select top 10 * from "_SYS_BIC"."sap.hba.ecc/VBAK_COM/" To select view with particular column, follow below select top 10 "SalesDocument" from "_SYS_BIC"."sap.hba.ecc/VBAK_COM" The above table can be access in SQL console, it will give the output which is same as what you have seen in the data preview. The other tables also available for columns select top 10 * from "_SYS_BIC"."sap.hba.ecc/VBAK_COM/SalesDocument/hier/SalesDocument" The above table will give deta...

Generate Data Time Dimension Table in SAP HANA

Image
We can generate the Date Time dimension table in SAP HANA very easily by existing feature. In the Quick Launch option you can able to see “Generate Date Time Dime” Follow the options and create a table either fiscal or Gregorian. The created tables will be reside under _SYS_BI schema.If the you are chosen Gregorian option then the table name will be “"M_TIME_DIMENSION”. Table name may change based on the granularity that you selected. If you are choose week as granularity then table name will be “M_TIME_DIMENSION_WEEK”. If the option is Fiscal then table name will be “M_FISCAL_CALENDAR”

SAP Information Designer Tool Option–HANA Business Layer

Image
In IDT, as you know, we can create connection either relational or OLAP connection, Data foundation layer and  business layer. One more option is available, by default you can’t see that option. If HANA is installed then this option will be available. Option is “SAP HANA business layer”. Please check it below. One of the advantage of the HANA business layer, we can point the SAP HANA models and get the business layer ready, no need to create data foundation layer manually. It will create automatically. Choose the SAP HANA Models to create HANA business layer