I_EHSLocAllClassifiersText
All classifiers concatenated
I_EHSLocAllClassifiersText is a Composite CDS View that provides data about "All classifiers concatenated" in SAP S/4HANA. It reads from 1 data source (P_EHSLOCCLASSIFIERS) and exposes 3 fields with key field EHSLocationUUID. Part of development package EHFND_BO_LOC_IMPL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_EHSLOCCLASSIFIERS | P_EHSLOCCLASSIFIERS | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | All classifiers concatenated | view | |
| AbapCatalog.sqlViewName | ILOCALLCLASSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSLocationUUID | |||
| EHSLocClassifiersText | Classifiers | |||
| EHSClassifiersLongText |
@EndUserText.label: 'All classifiers concatenated'
@AbapCatalog:
{
sqlViewName: 'ILOCALLCLASSTXT',
compiler.compareFilter: true
}
// no authorization check required because view only reads customizing for which a check is not needed
@AccessControl.authorizationCheck: #NOT_REQUIRED
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel:
{
usageType:
{
dataClass: #MIXED,
sizeCategory: #S,
serviceQuality: #C
}
}
define view I_EHSLocAllClassifiersText
as select from P_EHSLOCCLASSIFIERS(P_Langu: $session.system_language)
{
key cast( EHSLocationUUID as ehfnd_location_uuid_ref preserving type ) as EHSLocationUUID,
Classifiers as EHSLocClassifiersText,
cast( ClassifiersLong as ehfnd_loc_classifiers_all preserving type ) as EHSClassifiersLongText
}
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