I_SpecInheritanceTemplateHdr
Specification Inheritance Template Header
I_SpecInheritanceTemplateHdr is a Basic CDS View that provides data about "Specification Inheritance Template Header" in SAP S/4HANA. It reads from 1 data source (tcgtplh) and exposes 3 fields with key field SpecInheritanceTemplate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcgtplh | tcgtplh | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_SpecInheritanceTemplateUsage | _TemplateUsage | $projection.SpecInheritanceTemplate = _TemplateUsage.SpecInheritanceTemplate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECINHHDR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | SpecInheritanceTemplate | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Inheritance Template Header | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecInheritanceTemplate | recn_grp | ||
| EachSpecUsageIsInherited | flg_all_usages | |||
| _TemplateUsage | _TemplateUsage |
@AbapCatalog.sqlViewName: 'ISPECINHHDR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SpecInheritanceTemplate'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Inheritance Template Header'
define view I_SpecInheritanceTemplateHdr
as select from tcgtplh
association [1..*] to I_SpecInheritanceTemplateUsage as _TemplateUsage on $projection.SpecInheritanceTemplate = _TemplateUsage.SpecInheritanceTemplate
{
key recn_grp as SpecInheritanceTemplate,
flg_all_usages as EachSpecUsageIsInherited,
_TemplateUsage
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCGTPLH"
],
"ASSOCIATED":
[
"I_SPECINHERITANCETEMPLATEUSAGE"
],
"BASE":
[],
"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