cancel
Showing results for 
Search instead for 
Did you mean: 

Using "/" with the fields of an entity in CAPM(node.js)

adarsh-kmr
Explorer
0 Kudos
363

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

Accepted Solutions (0)

Answers (1)

Answers (1)

Dinu
Active Contributor

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;

}