I_BOMCompSts

DDL: I_BOMCOMPSTS SQL: IBOMCOMPSTS Type: view BASIC

Bill of Material Component Lead Time Status

I_BOMCompSts is a Basic CDS View (Dimension) that provides data about "Bill of Material Component Lead Time Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BOMComponentLeadTimeStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BOMCompStsText _BOMCompStsText $projection.BOMComponentLeadTimeStatus = _BOMCompStsText.BOMComponentLeadTimeStatus

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBOMCOMPSTS view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey BOMComponentLeadTimeStatus view
EndUserText.label Bill of Material Component Lead Time Status view
Metadata.allowExtensions true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BOMComponentLeadTimeStatus
_BOMCompStsText _BOMCompStsText
@AbapCatalog.sqlViewName: 'IBOMCOMPSTS'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataCategory:#DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
    dataClass: #META,
    sizeCategory: #S,
   serviceQuality: #A
}

@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'BOMComponentLeadTimeStatus'
@EndUserText.label: 'Bill of Material Component Lead Time Status'
@Metadata.allowExtensions:true

define view I_BOMCompSts
  as select from dd07l

  association [0..*] to I_BOMCompStsText as _BOMCompStsText on $projection.BOMComponentLeadTimeStatus = _BOMCompStsText.BOMComponentLeadTimeStatus

{
      //  @ObjectModel.text.association: '_BOMCompStsText'

  key cast ( substring(domvalue_l, 1, 1 ) as pph_componentleadtimestatustxt ) as BOMComponentLeadTimeStatus,
      /* Associations */
      _BOMCompStsText
}
where
      domname  = 'PPH_COMPONENTLEADTIMESTATUSTXT'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BOMCOMPSTSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/