I_ManufacturingLaborStatus

DDL: I_MANUFACTURINGLABORSTATUS SQL: IMFGLABORSTS Type: view BASIC

Labor Status Domain Value

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MfgLaborStatusText _Text $projection.ManufacturingLaborStatus = _Text.ManufacturingLaborStatus

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMFGLABORSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Labor Status Domain Value view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingLaborStatus
_Text _Text
@AbapCatalog.sqlViewName: 'IMFGLABORSTS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory:#S
@ObjectModel.usageType.dataClass:
 #CUSTOMIZING
@EndUserText.label: 'Labor Status Domain Value'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ManufacturingLaborStatus
  as select from dd07l
  association [0..*] to I_MfgLaborStatusText as _Text on $projection.ManufacturingLaborStatus = _Text.ManufacturingLaborStatus
{
      @ObjectModel.text.association: '_Text'
  key cast ( cast ( substring( dd07l.domvalue_l,1,1 ) as abap.char( 1 ) ) as mpe_labor_status) as ManufacturingLaborStatus,
      _Text
}
where
      domname  = 'MPE_LABOR_STATUS'
  and as4local = 'A';