A_ProdSpecComponentDescription
Description of a Product Spec Component
A_ProdSpecComponentDescription is a Consumption CDS View that provides data about "Description of a Product Spec Component" in SAP S/4HANA. It reads from 1 data source (I_ProdSpecComponentDescription) and exposes 4 fields with key fields ProdSpecComponentInternalID, Language. It has 1 association to related views. It is exposed through 1 OData service (API_PRODSPECCMPSTNCONFIGN). Part of development package VDM_PLMB_SPC_API_OP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProdSpecComponentDescription | I_ProdSpecComponentDescription | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_ProdSpecComponent | _ProdSpecComponent | _ProdSpecComponent.ProdSpecComponentInternalID = $projection.ProdSpecComponentInternalID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APRODSPECOMPDESC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Description of a Product Spec Component | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_PRODSPECCMPSTNCONFIGN | API_PRODSPECCMPSTNCONFIGN | V2 | C2 | C1 |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdSpecComponentInternalID | ProdSpecComponentInternalID | ||
| KEY | Language | Language | ||
| ProdSpecComponentDescription | ProdSpecComponentDescription | |||
| _ProdSpecComponent | _ProdSpecComponent |
@AbapCatalog.sqlViewName: 'APRODSPECOMPDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@EndUserText.label: 'Description of a Product Spec Component'
define view A_ProdSpecComponentDescription
with parameters
@Semantics.businessDate.at: true
@Consumption.hidden: true
P_KeyDate : sydate
as select from I_ProdSpecComponentDescription( P_KeyDate: $parameters.P_KeyDate )
association [1..1] to A_ProdSpecComponent as _ProdSpecComponent on _ProdSpecComponent.ProdSpecComponentInternalID = $projection.ProdSpecComponentInternalID
{
key ProdSpecComponentInternalID,
key Language,
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