A_GrantCoreHierarchyNodeText

DDL: A_GRANTCOREHIERARCHYNODETEXT SQL: AGRANTCOREHYNODT Type: view COMPOSITE

Grant Hierarchy Node Text

A_GrantCoreHierarchyNodeText is a Composite CDS View that provides data about "Grant Hierarchy Node Text" in SAP S/4HANA. It reads from 1 data source (I_GrantHierarchyNodeText) and exposes 6 fields with key fields GrantHierarchy, HierarchyNode, ValidityEndDate, Language. It is exposed through 1 OData service (API_GRANTCOREHIERARCHY).

Data Sources (1)

SourceAliasJoin Type
I_GrantHierarchyNodeText I_GrantHierarchyNodeText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName AGRANTCOREHYNODT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Grant Hierarchy Node Text view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
OData.entityType.name A_GrantCoreHierarchyNodeText_Type view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_GRANTCOREHIERARCHY API_GRANTCOREHIERARCHY V2 C2 C1

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY GrantHierarchy GrantHierarchy
KEY HierarchyNode HierarchyNode
KEY ValidityEndDate ValidityEndDate
KEY Language Language
HierarchyNodeText HierarchyNodeText
ValidityStartDate ValidityStartDate
@AbapCatalog.sqlViewName: 'AGRANTCOREHYNODT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Grant Hierarchy Node Text'
@VDM.viewType:#COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
  usageType: {
    dataClass: #MASTER,
    serviceQuality: #A,
    sizeCategory: #XL
  }
}
@ObjectModel.dataCategory: #TEXT
@OData.entityType.name: 'A_GrantCoreHierarchyNodeText_Type'
@Metadata.ignorePropagatedAnnotations:true
define view A_GrantCoreHierarchyNodeText
  as select from I_GrantHierarchyNodeText
{
  key GrantHierarchy,
  key HierarchyNode,
      @Semantics.businessDate.to: true
  key ValidityEndDate,
      @Semantics.language:true
  key Language,
      @Semantics.text: true
      HierarchyNodeText,
      @Semantics.businessDate.from: true
      ValidityStartDate
}