Hello friends,
I have few ECC tables replicated onto HANA system. Now I need to create views and procedures for those tables.
I am familiar with one method i.e to right click on table and choose to "CREATE VIEW" or right click on procedures inside schema and choose "NEW Procedure" .
But now, I would like to know how I could accomplish the same with the way exaplined by @Thomas_Jung in the tutorial on OpenSap. I tried this for example:
schema = "SYSTEM";
query = "SELECT T0.\"REFID\", T0.\"LIFNR\", from
\"SYSTEM\".\"Tables::_ETRAG\" T0 ";
Please do not mock if this incredibly wrong, but it was just a try which did not work as expected. Normally we declare something like this:
\"SAP_HANA_EPM_DEMO\".\"sap.hana.democontent.epm.data::purchaseOrder\"
But for the tables which I have are not defined and dont exist in the repository. They are replicated using BODS.
Do anyone have ideas how I could go with the following.
Any help would be appreciated. Thanks