Hello,

Sign up to join our community!

Welcome Back,

Please sign in to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

SAP EWM Help Latest Questions

  • 0
  • 0
DPM125

What is an EntityType in OData?

An EntityType defines the structure of an entity in OData. It specifies the entity’s properties (like fields/columns), key fields, and relationships. Think of it like a class or schema that describes the shape of data within an EntitySet.

<EntityType Name=”Product”>
<Key>
<PropertyRef Name=”ProductID” />
</Key>
<Property Name=”ProductID” Type=”Edm.Int32″ Nullable=”false” />
<Property Name=”ProductName” Type=”Edm.String” />
</EntityType>

Related Questions

Leave an answer

Leave an answer