on 2024 Jan 15 5:25 AM
Hi Experts,
Is it possible to use "/" with the fields while defining an entity?
e.g.-
entity GDD_MARA{
key IVS_ABC: Integer;
/VSO/INV_ISS: String;
}
I want the column name to be /VSO/INV_ISS. How can we achieve this?
Thanks & Regards,
Adarsh Kumar
Request clarification before answering.
You may use the syntax for Delimited Identifiers in entity definition. But this makes using these names very inconvenient. If you expose the entity in an OData service, the names will need to follow naming rules for oData.
entity GDD_MARA{
key IVS_ABC: Integer;
![/VSO/INV_ISS]: String;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
89 | |
11 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.