I_SpecType
Specification Type
I_SpecType is a Basic CDS View that provides data about "Specification Type" in SAP S/4HANA. It reads from 1 data source (tcg31) and exposes 4 fields with key field SpecificationType. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcg31 | tcg31 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SpecTypeText | _SpecificationTypeText | $projection.SpecificationType = _SpecificationTypeText.SpecificationType |
| [0..*] | I_Specification | _Specification | $projection.SpecificationType = _Specification.SpecificationType |
| [0..*] | I_SpecTypeAssignedCategory | _AssignedCategory | $projection.SpecificationType = _AssignedCategory.SpecificationType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | SpecificationType | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Type | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationType | |||
| _SpecificationTypeText | _SpecificationTypeText | |||
| _AssignedCategory | _AssignedCategory | |||
| _Specification | _Specification |
@AbapCatalog.sqlViewName: 'ISPECTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'SpecificationType'
@ObjectModel.semanticKey: [ 'SpecificationType' ]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Type'
define view I_SpecType
as select from tcg31
// Association definitions
association [0..*] to I_SpecTypeText as _SpecificationTypeText on $projection.SpecificationType = _SpecificationTypeText.SpecificationType
association [0..*] to I_Specification as _Specification on $projection.SpecificationType = _Specification.SpecificationType
association [0..*] to I_SpecTypeAssignedCategory as _AssignedCategory on $projection.SpecificationType = _AssignedCategory.SpecificationType
{
@ObjectModel.text.association: '_SpecificationTypeText'
key cast(subcat as /plmb/spc_type preserving type) as SpecificationType,
// Associations
_SpecificationTypeText,
_AssignedCategory,
_Specification
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCG31"
],
"ASSOCIATED":
[
"I_SPECIFICATION",
"I_SPECTYPEASSIGNEDCATEGORY",
"I_SPECTYPETEXT"
],
"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