P_SubstBsdCmpstnReleasedComp
Substances of Released Material or substance Composition
P_SubstBsdCmpstnReleasedComp is a Consumption CDS View that provides data about "Substances of Released Material or substance Composition" in SAP S/4HANA. It reads from 1 data source (I_SubstBsdCmpstnComponent) and exposes 17 fields with key field ChmlCompUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SubstBsdCmpstnComponent | I_SubstBsdCmpstnComponent | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Substances of Released Material or substance Composition | view | |
| AbapCatalog.sqlViewName | PSRELCOMPONENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCompUUID | ChmlCompUUID | ||
| ChmlCmplncInfoUUID | ChmlCmplncInfoUUID | |||
| ChmlCompositionUUID | ChmlCompositionUUID | |||
| SubstanceUUID | SubstanceUUID | |||
| ChmlCompReldType | ChmlCompType | |||
| ChmlCompReldQty | ChmlCompQty | |||
| ChmlCompReldQtyAsText | ChmlCompQtyAsText | |||
| ChmlCompReldQtyUnit | ChmlCompQtyUnit | |||
| ChmlCompReldLowrLimitQtyOptr | ChmlCompOperatorLowerLimit | |||
| ChmlCompReldLowerLimitQty | ChmlCompQtyLowerLimit | |||
| ChmlCompReldLowrLimitQtyAsText | ChmlCompQtyLowerLimitAsText | |||
| ChmlCompReldUprLimitQtyOptr | ChmlCompOperatorUpperLimit | |||
| ChmlCompReldUpperLimitQty | ChmlCompQtyUpperLimit | |||
| ChmlCompReldUprLimitQtyAsText | ChmlCompQtyUpperLimitAsText | |||
| ChmlCompositionStatus | _Composition | ChmlCompositionStatus | ||
| ChmlCompositionType | _Composition | ChmlCompositionType | ||
| _ChmlCmplncInfo | _ChmlCmplncInfo |
@EndUserText.label: 'Substances of Released Material or substance Composition'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'PSRELCOMPONENT',
--If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
compiler.compareFilter: true,
preserveKey: true
}
--Access Control: Authorizations Checks
@AccessControl:
{
authorizationCheck: #CHECK
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
--VDM view type
@VDM.viewType: #CONSUMPTION
@VDM.private: true
define view P_SubstBsdCmpstnReleasedComp
as select from I_SubstBsdCmpstnComponent
{
key ChmlCompUUID,
ChmlCmplncInfoUUID,
ChmlCompositionUUID,
SubstanceUUID,
ChmlCompType as ChmlCompReldType,
ChmlCompQty as ChmlCompReldQty,
ChmlCompQtyAsText as ChmlCompReldQtyAsText,
ChmlCompQtyUnit as ChmlCompReldQtyUnit,
ChmlCompOperatorLowerLimit as ChmlCompReldLowrLimitQtyOptr,
ChmlCompQtyLowerLimit as ChmlCompReldLowerLimitQty,
ChmlCompQtyLowerLimitAsText as ChmlCompReldLowrLimitQtyAsText,
ChmlCompOperatorUpperLimit as ChmlCompReldUprLimitQtyOptr,
ChmlCompQtyUpperLimit as ChmlCompReldUpperLimitQty,
ChmlCompQtyUpperLimitAsText as ChmlCompReldUprLimitQtyAsText,
_Composition.ChmlCompositionStatus,
_Composition.ChmlCompositionType,
_ChmlCmplncInfo
}
where
_Composition.ChmlCompositionStatus = 'RE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHMLCOMPOSITION",
"I_SUBSTBSDCMPSTNCOMPONENT"
],
"ASSOCIATED":
[
"I_CHMLCMPLNCINFO"
],
"BASE":
[
"I_SUBSTBSDCMPSTNCOMPONENT"
],
"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