I_SpecHeaderStatusText
Specification Header Status Text
I_SpecHeaderStatusText is a Basic CDS View that provides data about "Specification Header Status Text" in SAP S/4HANA. It reads from 1 data source (/plmb/sam_node_t) and exposes 5 fields with key fields SpecificationHeaderStatus, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /plmb/sam_node_t | /plmb/sam_node_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_SpecHeaderStatus | _SpecificationHeaderStatus | $projection.SpecificationHeaderStatus = _SpecificationHeaderStatus.SpecificationHeaderStatus |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECHEADERSTATT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SpecificationHeaderStatus | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Header Status Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationHeaderStatus | /plmb/sam_node_t | status_id | |
| KEY | Language | /plmb/sam_node_t | language | |
| SpecificationHeaderStatusDesc | /plmb/sam_node_t | descr | ||
| _SpecificationHeaderStatus | _SpecificationHeaderStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ISPECHEADERSTATT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SpecificationHeaderStatus'
@ObjectModel.semanticKey: [ 'SpecificationHeaderStatus' ]
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Search.searchable: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Header Status Text'
define view I_SpecHeaderStatusText
as select from /plmb/sam_node_t
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_SpecHeaderStatus as _SpecificationHeaderStatus on $projection.SpecificationHeaderStatus = _SpecificationHeaderStatus.SpecificationHeaderStatus
{
@ObjectModel.foreignKey.association: '_SpecificationHeaderStatus'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
key /plmb/sam_node_t.status_id as SpecificationHeaderStatus,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key /plmb/sam_node_t.language as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
/plmb/sam_node_t.descr as SpecificationHeaderStatusDesc,
/* Associations */
_SpecificationHeaderStatus,
_Language
}
where
/plmb/sam_node_t.otype_name = 'PLM_RSPSUB';
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