A_CommitmentItemText

DDL: A_COMMITMENTITEMTEXT Type: view_entity CONSUMPTION

Commitment Item Text

A_CommitmentItemText is a Consumption CDS View that provides data about "Commitment Item Text" in SAP S/4HANA. It reads from 1 data source (I_CommitmentItemText) and exposes 9 fields with key fields Language, FinancialManagementArea, FinMgmtAreaFiscalYear, CommitmentItem. It has 1 association to related views. It is exposed through 1 OData service (API_COMMITMENTITEM).

Data Sources (1)

SourceAliasJoin Type
I_CommitmentItemText I_CommitmentItemText from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CommitmentItem _CommitmentItem $projection.FinancialManagementArea = _CommitmentItem.FinancialManagementArea and $projection.FinMgmtAreaFiscalYear = _CommitmentItem.FinMgmtAreaFiscalYear and $projection.CommitmentItem = _CommitmentItem.CommitmentItem

Annotations (10)

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

OData Services (1)

ServiceBindingVersionContractRelease
API_COMMITMENTITEM API_COMMITMENTITEM V2 C2 C1

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY FinancialManagementArea FinancialManagementArea
KEY FinMgmtAreaFiscalYear FinMgmtAreaFiscalYear
KEY CommitmentItem CommitmentItem
CommitmentItemName CommitmentItemName
CommitmentItemDescription CommitmentItemDescription
CommitmentItemDescription2 CommitmentItemDescription2
CommitmentItemDescription3 CommitmentItemDescription3
_CommitmentItem _CommitmentItem
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Commitment Item Text'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #L
}
@ObjectModel.dataCategory:#TEXT
@OData.entityType.name: 'CommitmentItemText_Type'

// A-view annotations

@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view entity A_CommitmentItemText
  as select from I_CommitmentItemText

  association [0..*] to A_CommitmentItem as _CommitmentItem on  $projection.FinancialManagementArea = _CommitmentItem.FinancialManagementArea
                                                            and $projection.FinMgmtAreaFiscalYear   = _CommitmentItem.FinMgmtAreaFiscalYear
                                                            and $projection.CommitmentItem          = _CommitmentItem.CommitmentItem
{
      @Semantics.language:true
  key Language,
  key FinancialManagementArea,
  key FinMgmtAreaFiscalYear,
  key CommitmentItem,    
      @Semantics.text:true  
      CommitmentItemName,
      @Semantics.text:true
      CommitmentItemDescription,
      @Semantics.text:true
      CommitmentItemDescription2,
      @Semantics.text:true
      CommitmentItemDescription3,
     
      _CommitmentItem
}