I_PPS_PurOrdDocType

DDL: I_PPS_PURORDDOCTYPE Type: view_entity BASIC

PPS Relevant Purchase Order Types

I_PPS_PurOrdDocType is a Basic CDS View that provides data about "PPS Relevant Purchase Order Types" in SAP S/4HANA. It reads from 1 data source (t161) and exposes 3 fields with key fields PurchasingDocumentCategory, PurchaseOrderType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t161 t161 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] t161t _Text $projection.PurchaseOrderType = _Text.bsart and $projection.PurchasingDocumentCategory = _Text.bstyp and _Text.spras = $session.system_language

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label PPS Relevant Purchase Order Types view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentCategory bstyp
KEY PurchaseOrderType bsart
PurchaseOrderTypeName _Text batxt
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'PPS Relevant Purchase Order Types'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
@VDM.viewType: #BASIC
//<@JIRA-KEY<S4PPS-10868>

define view entity I_PPS_PurOrdDocType
  as select from t161
  association [1..1] to t161t as _Text on  $projection.PurchaseOrderType          = _Text.bsart
                                       and $projection.PurchasingDocumentCategory = _Text.bstyp
                                       and _Text.spras                            = $session.system_language

{
  key bstyp          as PurchasingDocumentCategory,
  key bsart          as PurchaseOrderType,
      @Semantics.text: true
      _Text.batxt    as PurchaseOrderTypeName

}
where
      pps_relevant = 'X'
  and bstyp        = 'F'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T161",
"T161T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/