Last active
July 24, 2018 15:21
-
-
Save strawherotk/3a495a922b4d796bec3b2038a858d5d2 to your computer and use it in GitHub Desktop.
SAP HANA XS example on Cloud Platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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