on 2014 Sep 11 3:43 AM
Hello guys
I am a newbie in using HANA Web-based Development toolkit. I am following the tutorial of http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9063f922-81e2-3110-c9b9-b4b0c1199...
and in page 25, I met an error.
I am sure that I copy the same code as it is depicted in the tutorial. the file is saved but not activated, hence the schema '_SYS_BIC' could not be created.
could you please provide any insight into this issue。
Request clarification before answering.
Hi every body,
I have the same problem :
Error while activating:
Syntax error: Unexpected token " "
Best Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same error and putting it on one line didn't work but this worked for me:
namespace mycompany.myapp1;
@Schema : 'MYSCHEMA'
@Catalog.tableType: #COLUMN
@Catalog.index: [ { name : 'MYINDEX1', unique : true, order : #DESC, elementNames : ['ISBN'] } ]
entity BOOK {key Author : String(100);key BookTitle : String(100);ISBN : Integer not null;Publisher : String(100);
};
The line beginning entity along with all the field definitions are on one line.
Ross
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 7 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.