Skip to content

Instantly share code, notes, and snippets.

@strawherotk
Last active July 24, 2018 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strawherotk/3a495a922b4d796bec3b2038a858d5d2 to your computer and use it in GitHub Desktop.
Save strawherotk/3a495a922b4d796bec3b2038a858d5d2 to your computer and use it in GitHub Desktop.
SAP HANA XS example on Cloud Platform
namespace testhana.hello.data;
@Schema: 'MYDT'
context mydata {
type SDate : UTCTimestamp;
type SString : String(40);
type LString : String(255);
@Catalog.tableType : #COLUMN
Entity Book {
key ID: Integer;
BOOKNAME: LString;
CATEGORY: LString;
// INSTOCK: Integer; - The old code is here, which create the issue
INVDATE: SDate;
INSTOCK: Integer;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment