I_ProdSpecComponentDescription
Description of a Product Spec Component
I_ProdSpecComponentDescription is a Composite CDS View that provides data about "Description of a Product Spec Component" in SAP S/4HANA. It reads from 1 data source (I_SpecDefIdfrForSpecCat) and exposes 4 fields with key fields ProdSpecComponentInternalID, Language. It has 1 association to related views. Part of development package VDM_PLMB_SPC_COMP_CUST_OP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SpecDefIdfrForSpecCat | I_SpecDefIdfrForSpecCat | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ProdSpecComponent | _ProdSpecComponent | $projection.ProdSpecComponentInternalID = _ProdSpecComponent.ProdSpecComponentInternalID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODSPECOMPDESC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| EndUserText.label | Description of a Product Spec Component | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdSpecComponentInternalID | SpecificationInternalID | ||
| KEY | Language | SpecIdfgDescLanguage | ||
| ProdSpecComponentDescription | ||||
| _ProdSpecComponent | _ProdSpecComponent |
@AbapCatalog.sqlViewName: 'IPRODSPECOMPDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Description of a Product Spec Component'
define view I_ProdSpecComponentDescription
with parameters
@Semantics.businessDate.at: true
@Consumption.hidden: true
P_KeyDate : sydate
as select from I_SpecDefIdfrForSpecCat( P_KeyDate: $parameters.P_KeyDate, P_SpecificationCategory : 'SUBSTANCE' )
association [1..1] to I_ProdSpecComponent as _ProdSpecComponent on $projection.ProdSpecComponentInternalID = _ProdSpecComponent.ProdSpecComponentInternalID
{
key SpecificationInternalID as ProdSpecComponentInternalID,
key SpecIdfgDescLanguage as Language,
cast(SpecIdfgDescText as /plmb/spc_component_desc preserving type ) as ProdSpecComponentDescription,
_ProdSpecComponent
}
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