P_MatlBasedCmpstnReleasedComp
Material Components of Released Material Based composition
P_MatlBasedCmpstnReleasedComp is a Consumption CDS View that provides data about "Material Components of Released Material Based composition" in SAP S/4HANA. It reads from 1 data source (I_MatlBasedCmpstnComponent) and exposes 17 fields with key field MatlBsdCompUUID. Part of development package EHFND_BO_CMPS_MATLBASED.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MatlBasedCmpstnComponent | I_MatlBasedCmpstnComponent | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Material Components of Released Material Based composition | view | |
| AbapCatalog.sqlViewName | PMRELCOMPONENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MatlBsdCompUUID | MatlBsdCompUUID | ||
| ChmlCmplncInfoUUID | ChmlCmplncInfoUUID | |||
| ChmlCompositionUUID | ChmlCompositionUUID | |||
| CompChmlCmplncInfoUUID | CompChmlCmplncInfoUUID | |||
| ChmlCompReldQty | ChmlCompQty | |||
| ChmlCompReldQtyAsText | ChmlCompQtyAsText | |||
| ChmlCompReldQtyUnit | ChmlCompQtyUnit | |||
| ChmlCompReldLowrLimitQtyOptr | ChmlCompOperatorLowerLimit | |||
| ChmlCompReldLowerLimitQty | ChmlCompQtyLowerLimit | |||
| ChmlCompReldLowrLimitQtyAsText | ChmlCompQtyLowerLimitAsText | |||
| ChmlCompReldUprLimitQtyOptr | ChmlCompOperatorUpperLimit | |||
| ChmlCompReldUpperLimitQty | ChmlCompQtyUpperLimit | |||
| ChmlCompReldUprLimitQtyAsText | ChmlCompQtyUpperLimitAsText | |||
| ChmlCompIsRemoved | ChmlCompIsRemoved | |||
| MatlBsdCompProductionType | MatlBsdCompProductionType | |||
| ChmlCompositionStatus | _Composition | ChmlCompositionStatus | ||
| _ChmlCmplncInfo | _ChmlCmplncInfo |
// ----------------------------------------------------
// Material Based Compositon - Released components
// ----------------------------------------------------
@EndUserText.label: 'Material Components of Released Material Based composition'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'PMRELCOMPONENT',
--If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
compiler.compareFilter: true
}
--Access Control: Authorizations Checks
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
--VDM view type
@VDM.viewType: #CONSUMPTION
@VDM.private: true
define view P_MatlBasedCmpstnReleasedComp
as select from I_MatlBasedCmpstnComponent
{
key MatlBsdCompUUID,
ChmlCmplncInfoUUID,
ChmlCompositionUUID,
CompChmlCmplncInfoUUID,
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,
ChmlCompIsRemoved,
MatlBsdCompProductionType,
_Composition.ChmlCompositionStatus,
_ChmlCmplncInfo
}
where
_Composition.ChmlCompositionStatus = 'RE'
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