I_PPS_PurgDocModifTypeText

DDL: I_PPS_PURGDOCMODIFTYPETEXT SQL: PURGMODITYPETXT Type: view BASIC

Purchasing Document Modif Type - Text

I_PPS_PurgDocModifTypeText is a Basic CDS View that provides data about "Purchasing Document Modif Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields PPSModificationType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_PPS_PurgDocModifTypeVH _ModificationType $projection.PPSModificationType = _ModificationType.PPSModificationType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
EndUserText.label Purchasing Document Modif Type - Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PURGMODITYPETXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PPSModificationType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PPSModificationType
KEY Language
DomainValue dd07t domvalue_l
PPSModificationTypeText ddtext
_ModificationType _ModificationType
_Language _Language
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Purchasing Document Modif Type - Text'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PURGMODITYPETXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PPSModificationType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

define view I_PPS_PurgDocModifTypeText
  as select from dd07t
  association [1..1] to I_PPS_PurgDocModifTypeVH as _ModificationType on $projection.PPSModificationType = _ModificationType.PPSModificationType

  association [0..1] to I_Language                      as _Language         on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ModificationType'
      @ObjectModel.text.element: [ 'PPSModificationTypeText' ]
  key cast ( dd07t.domvalue_l as pps_e_modi_type )      as PPSModificationType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( dd07t.ddlanguage as spras preserving type ) as Language,

      @Consumption.hidden: true
      dd07t.domvalue_l                                  as DomainValue,

      @Semantics.text: true
      ddtext                                            as PPSModificationTypeText,

      _ModificationType,
      _Language
}
where
  domname = 'PPS_D_MODI_TYPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PPS_PURGDOCMODIFTYPEVH"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/