A_PureSubstanceDescription
Pure Substance Description
A_PureSubstanceDescription is a Consumption CDS View that provides data about "Pure Substance Description" in SAP S/4HANA. It reads from 1 data source (I_SpecDefIdfrForSpecCat) and exposes 6 fields with key fields PureSubstanceInternalID, PureSubstanceDescriptionLang. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SpecDefIdfrForSpecCat | I_SpecDefIdfrForSpecCat | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | sydate |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_PureSubstance | _PureSubstance | _PureSubstance.PureSubstanceInternalID = $projection.PureSubstanceInternalID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APURESUBDESC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Pure Substance Description | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PureSubstanceInternalID | SpecificationInternalID | ||
| KEY | PureSubstanceDescriptionLang | SpecIdfgDescLanguage | ||
| PureSubstanceDescription | SpecIdfgDescText | |||
| PureSubstanceAuthznGroup | ||||
| PureSubstanceType | ||||
| _PureSubstance | _PureSubstance |
@AbapCatalog.sqlViewName: 'APURESUBDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Pure Substance Description'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_PureSubstanceDescription
with parameters
@Semantics.businessDate.at: true
@Consumption.hidden: true
P_KeyDate : sydate
as select from I_SpecDefIdfrForSpecCat( P_KeyDate: $parameters.P_KeyDate,P_SpecificationCategory :'PURE' )
association [0..1] to A_PureSubstance as _PureSubstance on _PureSubstance.PureSubstanceInternalID = $projection.PureSubstanceInternalID
{
key SpecificationInternalID as PureSubstanceInternalID,
key SpecIdfgDescLanguage as PureSubstanceDescriptionLang,
SpecIdfgDescText as PureSubstanceDescription,
@Consumption.hidden: true
_PureSubstance (P_KeyDate: $parameters.P_KeyDate).PureSubstanceAuthznGroup,
@Consumption.hidden: true
_PureSubstance (P_KeyDate: $parameters.P_KeyDate).PureSubstanceType,
_PureSubstance
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_PURESUBSTANCE",
"I_SPECDEFIDFRFORSPECCAT"
],
"ASSOCIATED":
[
"A_PURESUBSTANCE"
],
"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