Hi experts,
I had created reusable table structure , after creating the structure it should be saved into catalog>>procedures, but it is not saving.
NOTE:::I am using hana trail version
1) In project explorer i created a folder name:: (structures), after creating the folder in that folder i created a file (TableStructure.hdbstructure)
2) I add the table-structure code to the file (TableStructure.hdbstructure)
table.schemaName = "NEO_EJ1UJXEYTABEH8TH40FPPK798";
table.columns = [
{name = "FRISTNAME"; sqlType = VARCHAR; nullable = false; length = 20; comment = "dummy comment";},
{name = "LASTNAME"; sqlType = VARCHAR; nullable = false;},
{name = "QUALIFACTION"; sqlType = NVARCHAR; nullable = true; length = 20; defaultValue = "Defaultvalue";},
{name = "COUNTRY"; sqlType = VARCHAR; nullable = false;}];
table.primaryKey.pkcolumns = ["FRISTNAME"];
3)After executing this code , it is showing a successful message.then we commit and activate it.
But it not showing the table in respective schema and in catalog folder
How can i over come this issue..
please refer this url :::
Create a Reusable Table Structure - SAP HANA Developer Guide for SAP HANA Studio - SAP Library
Regards,
Pavan.