I_EHSCmplncAnlysFltrTaskC
Compliance Analysis FIlter Cube
I_EHSCmplncAnlysFltrTaskC is a Composite CDS View (Cube) that provides data about "Compliance Analysis FIlter Cube" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 5 fields with key fields EHSTaskDueDate, Country. It has 2 associations to related views. Part of development package EHENV_CNS_EMISSION_INVENTORY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_EHSCountriesExclGroups | _Country | $projection.Country = _Country.Country |
| [0..*] | I_EHSCountriesTextExclGroups | _CountryName | $projection.Country = _CountryName.Country |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEHSCAFLTRTC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Compliance Analysis FIlter Cube | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #CUBE | view | |
| Analytics.internalName | #LOCAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Metadata.allowExtensions | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSTaskDueDate | |||
| KEY | Country | _Country | Country | |
| EHSTaskStatusValueForSorting | ||||
| CmplRqType | ||||
| _CountryName | _CountryName |
@AbapCatalog.sqlViewName: 'IEHSCAFLTRTC'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Compliance Analysis FIlter Cube'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics: { dataCategory:#CUBE, internalName:#LOCAL }
@VDM.viewType: #COMPOSITE
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED,
// blocking of personal data not required (user data can not be blocked and no BP info from user exposed)
personalData.blocking: #NOT_REQUIRED
}
@ObjectModel.usageType:{ serviceQuality: #D,
sizeCategory: #XL,
dataClass: #MIXED }
@Metadata.allowExtensions:true
define view I_EHSCmplncAnlysFltrTaskC
as select from I_SAPClient
association [1..1] to I_EHSCountriesExclGroups as _Country on $projection.Country = _Country.Country
association [0..*] to I_EHSCountriesTextExclGroups as _CountryName on $projection.Country = _CountryName.Country
{
key cast ( '00000000' as ehfnd_task_plan_due_date ) as EHSTaskDueDate,
@ObjectModel.text.association: '_CountryName'
key _Country.Country as Country,
cast ( '01' as ehfnd_task_calendar_status ) as EHSTaskStatusValueForSorting,
cast( '00' as ehfnd_req_type_nce ) as CmplRqType,
_CountryName
}
where
sapclient = $session.client
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