I_SpecIdentifierUsage
Specification Identifier Usage
I_SpecIdentifierUsage is a Basic CDS View that provides data about "Specification Identifier Usage" in SAP S/4HANA. It reads from 1 data source (P_SpecUsage) and exposes 14 fields with key fields SpecIdfgUsageInternalID, SpecIdfgUsageChangeState. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_SpecUsage | P_SpecUsage | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SpecRating | _Rating | $projection.SpecificationRating = _Rating.SpecificationRating |
| [0..1] | I_SpecValidityArea | _ValidityArea | $projection.SpecificationValidityArea = _ValidityArea.SpecificationValidityArea |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECIDFGUSAGE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #L | 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 Identifier Usage | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecIdfgUsageInternalID | SpecificationUsageInternalID | ||
| KEY | SpecIdfgUsageChangeState | SpecificationUsageChangeState | ||
| SpecificationInternalID | SpecificationInternalID | |||
| SpecIdfgUsgeValdtyStrtDte | SpecificationUsgeValdtyStrtDte | |||
| SpecIdfgUsgeValdtyEndDte | SpecificationUsgeValdtyEndDte | |||
| MasterTableElementInternalID | MasterTableElementInternalID | |||
| SpecificationRating | SpecificationRating | |||
| SpecificationValidityArea | SpecificationValidityArea | |||
| SpecIdfgUsageIsExcluded | SpecificationUsageIsExcluded | |||
| SpecIdfgUsageIsActive | SpecificationUsageIsActive | |||
| SpecIdfgUsageIsRelevant | SpecificationUsageIsRelevant | |||
| SpecIdfgUsageIsDeleted | SpecificationUsageIsDeleted | |||
| _Rating | _Rating | |||
| _ValidityArea | _ValidityArea |
@AbapCatalog.sqlViewName: 'ISPECIDFGUSAGE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
// Access control authorization check not allowed, this view shall not be keydate dependent
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Identifier Usage'
define view I_SpecIdentifierUsage
as select from P_SpecUsage
association [0..1] to I_SpecRating as _Rating on $projection.SpecificationRating = _Rating.SpecificationRating
association [0..1] to I_SpecValidityArea as _ValidityArea on $projection.SpecificationValidityArea = _ValidityArea.SpecificationValidityArea
{
key SpecificationUsageInternalID as SpecIdfgUsageInternalID,
key SpecificationUsageChangeState as SpecIdfgUsageChangeState,
SpecificationInternalID,
SpecificationUsgeValdtyStrtDte as SpecIdfgUsgeValdtyStrtDte,
SpecificationUsgeValdtyEndDte as SpecIdfgUsgeValdtyEndDte,
MasterTableElementInternalID,
SpecificationRating,
SpecificationValidityArea,
SpecificationUsageIsExcluded as SpecIdfgUsageIsExcluded,
SpecificationUsageIsActive as SpecIdfgUsageIsActive,
SpecificationUsageIsRelevant as SpecIdfgUsageIsRelevant,
SpecificationUsageIsDeleted as SpecIdfgUsageIsDeleted,
_Rating,
_ValidityArea
}
where
MasterTable = 'ESTRI'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_SPECUSAGE"
],
"ASSOCIATED":
[
"I_SPECRATING",
"I_SPECVALIDITYAREA"
],
"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