I_OriginOfPeggingAssignment

DDL: I_ORIGINOFPEGGINGASSIGNMENT Type: view_entity COMPOSITE

Origin Of Pegging Assignment

I_OriginOfPeggingAssignment is a Composite CDS View that provides data about "Origin Of Pegging Assignment" in SAP S/4HANA. It reads from 2 data sources (dd07t, t002) and exposes 3 fields with key fields OriginOfPeggingAssignment, Language.

Data Sources (2)

SourceAliasJoin Type
dd07t a from
t002 b inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Origin Of Pegging Assignment view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OriginOfPeggingAssignment
KEY Language dd07t ddlanguage
OriginOfPeggingAssignmentDesc dd07t ddtext
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Origin Of Pegging Assignment'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_OriginOfPeggingAssignment 

as select from dd07t as a
   inner join  t002 as b on b.spras = a.ddlanguage
{
  key cast( a.domvalue_l as pmmo_conversion_type_d) as OriginOfPeggingAssignment , 
   key a.ddlanguage as Language,
   a.ddtext as OriginOfPeggingAssignmentDesc
}

where 
    a.domname = 'PMMO_CONVERSION_TYPE' and
    a.as4local = 'A' and
    a.ddlanguage = $session.system_language and
    (a.domvalue_l <> '1' and a.domvalue_l <> '3')
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T",
"T002"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/