I_ChmlCmplncSuplrMatlEnhanced
Chemical Compliance Supplier Material Assignment Enhanced
I_ChmlCmplncSuplrMatlEnhanced is a Composite CDS View that provides data about "Chemical Compliance Supplier Material Assignment Enhanced" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncSuplrMatlAssgmt) and exposes 6 fields. Part of development package EHFND_BO_CCI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ChmlCmplncSuplrMatlAssgmt | _SuplrMatlAssgmt | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Chemical Compliance Supplier Material Assignment Enhanced | view | |
| AbapCatalog.sqlViewName | ICCSMASSENHCD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| UUIDofSupplierMaterialChmlSuplrMatlUUID | ||||
| BusinessPartnerSupplier | ||||
| BusinessPartnerUUID | ||||
| _ChmlCmplncInfo | _ChmlCmplncInfo | |||
| _SupplierMaterial | _SupplierMaterial | |||
| _SupplierStatus | _SupplierStatus |
--Label of view
-- e.g. display as filter name in the consumption
@EndUserText.label: 'Chemical Compliance Supplier Material Assignment Enhanced'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'ICCSMASSENHCD',
--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: #CHECK,
// blocking of personal data required because of link to business partner / supplier
personalData.blocking: #REQUIRED
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
--VDM view type
@VDM.viewType: #COMPOSITE
@ObjectModel:
{
--Performance Annotations
usageType:
{
dataClass: #MASTER,
sizeCategory: #L,
serviceQuality: #B
}
}
define view I_ChmlCmplncSuplrMatlEnhanced
--Select data from Supplier Material Assignment
as select from I_ChmlCmplncSuplrMatlAssgmt as _SuplrMatlAssgmt
// --Select data from business partner
// join to I_ChmlSuplrMatl as ChemicalSupplierMaterial
// I_BusinessPartner as BusinessPartner
// --join data to supplier link
// inner join I_Supplier_to_BusinessPartner as SupplierLink on BusinessPartner.BusinessPartnerUUID = SupplierLink.BusinessPartnerUUID
{
--UUID of assignment
key ChmlCmplncSuplrMatlAssgmtUUID,
--UUID of chemical compliance info
ChmlCmplncInfoUUID,
--UUID of Supplier Material
ChmlSuplrMatlUUID,
--Supplier Status per chemical compliance information
ChmlSuplrMatlSuplrSts,
_SuplrMatlAssgmt._SupplierMaterial.BusinessPartnerSupplier as BusinessPartnerSupplier,
_SuplrMatlAssgmt._SupplierMaterial._BusinessPartner.BusinessPartnerUUID as BusinessPartnerUUID,
/* Associations */
_ChmlCmplncInfo,
_SupplierMaterial,
_SupplierStatus
}
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