Hello Ranjit,
do following steps in the web-based development workbench:
- Create an XS application in the Content view (e.g. via the context menu).
- Within the XS application create an HDBDD file (e.g. test.hdbdd) with e.g. following content. Consider to use _SYS_BIC as schema:
namespace <package>;
@Schema : '_SYS_BIC'
context test {
@Catalog.tableType: #COLUMN
entity TEST1 {
key C1 : String(10);
C2 : String(10);
};
}; - To be able to see the schema _SYS_BIC and the created table in the catalog view please execute procedure HCP_GRANT_SELECT_ON_ACTIVATED_OBJECTS of schema HCP in the SQL console (-> CALL "HCP"."HCP_GRANT_SELECT_ON_ACTIVATED_OBJECTS").
Best regards,
Florian