Parser hdbti - SAP-archive/xsk GitHub Wiki

Parser for hdbti

The information on how to develop the design-time data-persistence model for an XSK application using the HDBTI syntax

Reference

  • SAP Help

https://help.sap.com/viewer/b3d0daf2a98e49ada00bf31b7ca7a42e/1.0.12/en-US/5450fefd5a7549888883def4836cd41c.html

  • Sample Hana XS Classic and XS Advanced syntax:
 import = [
            {
                table = "myTable";
                schema = "mySchema";
                file = "sap.ti2.demo:myData.csv";
                header = false;
                delimField = ";";
                keys = [ "GROUP_TYPE" : "BW_CUBE"];
            },

            {
                table = "sap.ti2.demo::myTable";
                schema = "mySchema";
                file = "sap.ti2.demo:myData2.csv";
                header = false;
                delimField = ";";
                keys = [ "GROUP_TYPE" : "BW_CUBE"];
            }
         ];
  • Parser specific details

variable names are case sensitive.

  • Sample

https://github.com/SAP/xsk/tree/main/samples/hdb_hdbti_simple

  • Modules

https://github.com/SAP/xsk/tree/main/modules/parsers/parser-hdbti

https://github.com/SAP/xsk/tree/main/modules/engines/engine-hdbti