I_SFIProductionStatus

DDL: I_SFIPRODUCTIONSTATUS SQL: IMPESFIPRDSTATUS Type: view BASIC

SFI Production Status

I_SFIProductionStatus is a Basic CDS View that provides data about "SFI Production Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ShopFloorItemProductionStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SFIProductionStatusText _Text $projection.ShopFloorItemProductionStatus = _Text.ShopFloorItemProductionStatus

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMPESFIPRDSTATUS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ShopFloorItemProductionStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label SFI Production Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ShopFloorItemProductionStatus
_Text _Text
@AbapCatalog.sqlViewName: 'IMPESFIPRDSTATUS'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
    representativeKey: 'ShopFloorItemProductionStatus',
    resultSet.sizeCategory: #XS
}
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'SFI Production Status'

define view I_SFIProductionStatus
  as select from dd07l as typ
  association [0..*] to I_SFIProductionStatusText as _Text on $projection.ShopFloorItemProductionStatus = _Text.ShopFloorItemProductionStatus
{
      @ObjectModel.text.association: '_Text'
      // cast to data element

  key cast( cast(substring(typ.domvalue_l, 1, 1) as abap.numc(1) ) as mpe_sfi_production_status) as ShopFloorItemProductionStatus,

      // Associations

      _Text
}
where
      typ.domname  = 'MPE_SFI_PRODUCTION_STATUS'
  and typ.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_SFIPRODUCTIONSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/