P_Cfd_Cds_Source_Origin

DDL: P_CFD_CDS_SOURCE_ORIGIN Type: view_entity Package: S_CFD_COMMON

Source Origin

P_Cfd_Cds_Source_Origin is a CDS View that provides data about "Source Origin" in SAP S/4HANA. It reads from 1 data source (P_Cfd_Domain_Value) and exposes 2 fields with key field Code. It has 1 association to related views. Part of development package S_CFD_COMMON.

Data Sources (1)

SourceAliasJoin Type
P_Cfd_Domain_Value SourceOrigin from

Associations (1)

CardinalityTargetAliasCondition
[1..*] P_Cfd_Domain_Value_Text _Text _Text.Code = $projection.Code and _Text.Name = 'DDDDLSRCORIGIN'

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Source Origin view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Code P_Cfd_Domain_Value Code
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Source Origin'
define view entity P_Cfd_Cds_Source_Origin
  as select from P_Cfd_Domain_Value as SourceOrigin
  association [1..*] to P_Cfd_Domain_Value_Text as _Text on  _Text.Code = $projection.Code
                                                         and _Text.Name = 'DDDDLSRCORIGIN'
{
  key SourceOrigin.Code,

      _Text
}
where
       SourceOrigin.Name = 'DDDDLSRCORIGIN'
  and(
       SourceOrigin.Code = '0'
    or SourceOrigin.Code = '1'
  )