P_AllocSqntlProcessingType

DDL: P_ALLOCSQNTLPROCESSINGTYPE Type: view_entity BASIC Package: ODATA_RUN_ALLOCATION

Sequential Processing Type

P_AllocSqntlProcessingType is a Basic CDS View that provides data about "Sequential Processing Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field AllocSequentialProcessingType. It has 1 association to related views. Part of development package ODATA_RUN_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] P_AllocSqntlProcessingTypeName _Text $projection.AllocSequentialProcessingType = _Text.AllocSequentialProcessingType

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AllocSequentialProcessingType
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@VDM.private: true

define view entity P_AllocSqntlProcessingType
  as select from dd07l
  association [0..*] to P_AllocSqntlProcessingTypeName as _Text on $projection.AllocSequentialProcessingType = _Text.AllocSequentialProcessingType
{
  key  cast( substring( domvalue_l, 1, 30) as fco_alloc_run_seq_proc ) as AllocSequentialProcessingType,
       _Text
}
where
      dd07l.domname  = 'FCO_ALLOC_RUN_SEQ_PROC'
  and dd07l.as4local = 'A';