I_BOMCompSts
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BOMCompStsText | _BOMCompStsText | $projection.BOMComponentLeadTimeStatus = _BOMCompStsText.BOMComponentLeadTimeStatus |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA