I_SpecComponentType
Specification Component Type
I_SpecComponentType is a Basic CDS View that provides data about "Specification Component Type" in SAP S/4HANA. It reads from 1 data source (tcg76) and exposes 3 fields with key field SpecificationComponentType. It has 1 association to related views. Part of development package VDM_PLMB_SPC_BAS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcg76 | tcg76 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SpecComponentTypeText | _SpecComponentTypeText | $projection.SpecificationComponentType = _SpecComponentTypeText.SpecificationComponentType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECCOMPTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | SpecificationComponentType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Component Type | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationComponentType | compcat | ||
| SpecComponentTypeAssgmtIsAllwd | csubflg | |||
| _SpecComponentTypeText | _SpecComponentTypeText |
@AbapCatalog.sqlViewName: 'ISPECCOMPTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SpecificationComponentType'
@ObjectModel.semanticKey: [ 'SpecificationComponentType' ]
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Component Type'
define view I_SpecComponentType
as select from tcg76
association [0..*] to I_SpecComponentTypeText as _SpecComponentTypeText on $projection.SpecificationComponentType = _SpecComponentTypeText.SpecificationComponentType
{
@ObjectModel.text.association: '_SpecComponentTypeText'
key compcat as SpecificationComponentType,
csubflg as SpecComponentTypeAssgmtIsAllwd,
_SpecComponentTypeText
}
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