DEVCLASS_F4_Select
Source data for search help DEVCLASS
DEVCLASS_F4_Select is a CDS View that provides data about "Source data for search help DEVCLASS" in SAP S/4HANA. It reads from 2 data sources (tdevc, tdevct) and exposes 4 fields with key field devclass.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Source data for search help DEVCLASS | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Source data for search help DEVCLASS'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #META
}
define view entity DEVCLASS_F4_Select
as select from tdevc as main
left outer join tdevct as text on main.devclass = text.devclass
and text.spras = $session.system_language
{
key main.devclass,
cast( main.pdevclass as devlayer preserving type ) as pdevclass,
main.consys,
coalesce( text.ctext, main.ctext ) as ctext
}
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