I_FulfillmentProcessPhase

DDL: I_FULFILLMENTPROCESSPHASE SQL: ISOFLFLMTPROCPH Type: view BASIC Package: ODATA_SD_SOFA

Fullfillment Process Phase

I_FulfillmentProcessPhase is a Basic CDS View (Dimension) that provides data about "Fullfillment Process Phase" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field FulfillmentProcessPhase. It has 1 association to related views. Part of development package ODATA_SD_SOFA.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FulfillmentProcessPhaseText _Text $projection.FulfillmentProcessPhase = _Text.FulfillmentProcessPhase

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey FulfillmentProcessPhase view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Fullfillment Process Phase view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISOFLFLMTPROCPH view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FulfillmentProcessPhase
DomainValue dd07l domvalue_l
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.representativeKey: 'FulfillmentProcessPhase'
@ObjectModel.usageType.dataClass: #META 
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Fullfillment Process Phase'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@Search.searchable: true
@Consumption.ranked: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISOFLFLMTPROCPH'

define view I_FulfillmentProcessPhase
as select from dd07l

association [0..*] to I_FulfillmentProcessPhaseText as _Text on $projection.FulfillmentProcessPhase = _Text.FulfillmentProcessPhase
{
    @ObjectModel.text.association: '_Text'
    key SUBSTRING(dd07l.domvalue_l, 1, 1) as FulfillmentProcessPhase,
    
    @Consumption.hidden: true
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8 
    @Search.ranking: #HIGH
    dd07l.domvalue_l as DomainValue, 
     
    //Associations

    _Text
}

where (dd07l.domname = 'SLS_ORD_FLFLLMNT_PROCESS_PHASE') and (dd07l.as4local = 'A');