A_ProdSpecType
Product Specification Type
A_ProdSpecType is a Consumption CDS View that provides data about "Product Specification Type" in SAP S/4HANA. It reads from 1 data source (I_ProdSpecType) and exposes 3 fields with key field ProdSpecType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProdSpecType | I_ProdSpecType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_ProdSpecTypeText | _ProdSpecTypeText | $projection.ProdSpecType = _ProdSpecTypeText.ProdSpecType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APRODSPECTYP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ProdSpecType | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| OData.entityType.name | ProdSpecType_Type | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Product Specification Type | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdSpecType | |||
| ProdSpecTypeDescription | ||||
| _ProdSpecTypeText | _ProdSpecTypeText |
@AbapCatalog.sqlViewName: 'APRODSPECTYP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'ProdSpecType'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@OData.entityType.name: 'ProdSpecType_Type'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Product Specification Type'
define view A_ProdSpecType as select from I_ProdSpecType
association [0..*] to A_ProdSpecTypeText as _ProdSpecTypeText
on $projection.ProdSpecType = _ProdSpecTypeText.ProdSpecType
{
@ObjectModel.text.element: ['ProdSpecType']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key cast( SpecificationType as /plmb/spc_prod_spec_type preserving type ) as ProdSpecType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
_ProdSpecTypeText[1:Language=$session.system_language].ProdSpecTypeDescription,
/* Associations */
_ProdSpecTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_PRODSPECTYPETEXT",
"I_PRODSPECTYPE"
],
"ASSOCIATED":
[
"A_PRODSPECTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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