I_ExplosionTypeVH
Explosion Type Value Help
I_ExplosionTypeVH is a Basic CDS View that provides data about "Explosion Type Value Help" in SAP S/4HANA. It reads from 2 data sources (t414t, t414) and exposes 2 fields with key field ExplosionType. Part of development package CS_MODEL.
Data Sources (2)
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Explosion Type Value Help | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@VDM.viewType:#BASIC
@ObjectModel.usageType: {serviceQuality: #B ,sizeCategory: #XL , dataClass : #CUSTOMIZING}
@EndUserText.label: 'Explosion Type Value Help'
define view entity I_ExplosionTypeVH
as select from t414 as ExplosionTypes
left outer join t414t as ExplosionTypDescription
on ExplosionTypes.dispo = ExplosionTypDescription.dispo and ExplosionTypDescription.spras = $session.system_language
{
@Search.defaultSearchElement: true
@EndUserText.label: 'Explosion Type'
@EndUserText.quickInfo: 'Explosion Type'
key ExplosionTypes.dispo as ExplosionType,
@Semantics.text: true
@EndUserText.label: 'Explosion Type Description'
@EndUserText.quickInfo: 'Explosion Type Description'
ExplosionTypDescription.dsptx as ExplosionTypeDescription
}
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