A_GrantCoreText

DDL: A_GRANTCORETEXT Type: view_entity COMPOSITE Package: PSM_S4C_API

Grant Text

A_GrantCoreText is a Composite CDS View that provides data about "Grant Text" in SAP S/4HANA. It reads from 1 data source (R_GrantCoreTextTP) and exposes 5 fields with key fields GrantID, Language. It is exposed through 1 OData service (API_GRANTCORE). Part of development package PSM_S4C_API.

Data Sources (1)

SourceAliasJoin Type
R_GrantCoreTextTP R_GrantCoreTextTP projection

Annotations (10)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Grant Text view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
OData.entityType.name GrantCoreText_Type view
VDM.viewType #COMPOSITE view

OData Services (1)

ServiceBindingVersionContractRelease
API_GRANTCORE API_GRANTCORE V2 C2 C1

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GrantID GrantID
KEY Language Language
GrantName GrantName
GrantDescription GrantDescription
_GrantredirectedtoparentA_GrantCore
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Grant Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #L
}
@OData.entityType.name: 'GrantCoreText_Type'
@VDM.viewType: #COMPOSITE
@VDM.usage.type:[#TRANSACTIONAL_PROCESSING_SERVICE]
define view entity A_GrantCoreText
 as projection on R_GrantCoreTextTP
//  as select from I_GrantText

//  association [1..1] to A_GrantCore as _Grant on $projection.GrantID = _Grant.GrantID

{
  key GrantID,
      @Semantics.language:true
  key Language,
      @Semantics.text:true
      GrantName,
      @Semantics.text:true
      GrantDescription,
      /* Associations */
      _Grant: redirected to parent A_GrantCore
}