C_PurchasingDocumentTypeTextDP

DDL: C_PURCHASINGDOCUMENTTYPETEXTDP Type: view_entity CONSUMPTION Package: MM_PUR_MASTER_DATA_BDC

Purchasing Document Type - Text

C_PurchasingDocumentTypeTextDP is a Consumption CDS View that provides data about "Purchasing Document Type - Text" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentTypeText) and exposes 7 fields with key fields PurchasingDocumentType, PurchasingDocumentCategory, Language. It has 2 associations to related views. It is exposed through 1 OData service (DP_PROCMTCONFIGURATIONDATA). Part of development package MM_PUR_MASTER_DATA_BDC.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentTypeText I_PurchasingDocumentTypeText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] C_PurchasingDocumentCategoryDP _PurchasingDocumentCategory $projection.PurchasingDocumentCategory = _PurchasingDocumentCategory.PurchasingDocumentCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
Metadata.allowExtensions true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchasing Document Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #EXTERNAL_DATA_PROVIDER view
ObjectModel.representativeKey PurchasingDocumentType view
ObjectModel.sapObjectNodeType.name PurchasingDocumentTypeText view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
DP_PROCMTCONFIGURATIONDATA DP_PROCMTCONFIGURATIONDATA C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentType PurchasingDocumentType
KEY PurchasingDocumentCategory PurchasingDocumentCategory
KEY Language Language
PurchasingDocumentTypeName PurchasingDocumentTypeName
_PurchasingDocumentCategory _PurchasingDocumentCategory
_PurchasingDocumentType _PurchasingDocumentType
_Language _Language
@Metadata.allowExtensions: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Purchasing Document Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #EXTERNAL_DATA_PROVIDER
@ObjectModel.representativeKey: 'PurchasingDocumentType'
@ObjectModel.sapObjectNodeType.name: 'PurchasingDocumentTypeText'
@ObjectModel.supportedCapabilities: [ #EXTERNAL_DATA_PROVIDER ]
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #CONSUMPTION
define view entity C_PurchasingDocumentTypeTextDP
  as select from I_PurchasingDocumentTypeText
  association [1..1] to C_PurchasingDocumentCategoryDP as _PurchasingDocumentCategory on $projection.PurchasingDocumentCategory = _PurchasingDocumentCategory.PurchasingDocumentCategory
  association to parent C_PurchasingDocumentTypeDP as _PurchasingDocumentType on $projection.PurchasingDocumentCategory = _PurchasingDocumentType.PurchasingDocumentCategory and $projection.PurchasingDocumentType = _PurchasingDocumentType.PurchasingDocumentType
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  @ObjectModel.foreignKey.association: '_PurchasingDocumentType'
  @ObjectModel.sapObjectNodeTypeReference: 'PurchasingDocumentType'
  @ObjectModel.text.element: [ 'PurchasingDocumentTypeName' ]
  key PurchasingDocumentType,
  @ObjectModel.foreignKey.association: '_PurchasingDocumentCategory'
  @ObjectModel.sapObjectNodeTypeReference: 'PurchasingDocumentCategory'
  key PurchasingDocumentCategory,
  @ObjectModel.foreignKey.association: '_Language'
  @ObjectModel.sapObjectNodeTypeReference: ''
  @Semantics.language: true
  key Language,
  @Semantics.text: true
  PurchasingDocumentTypeName,
  _PurchasingDocumentCategory,
  _PurchasingDocumentType,
  _Language
}