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.
Data Sources (2)
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEXPLOSNTYPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | 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 |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ExplosionType | t414 | dispo | Explosion Type |
| ExplosionTypeDescription | dsptx | Explosion Type Description |
@AbapCatalog.sqlViewName: 'IEXPLOSNTYPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType:#BASIC
@ObjectModel.usageType: {serviceQuality: #B ,sizeCategory: #XL , dataClass : #CUSTOMIZING}
@EndUserText.label: 'Explosion Type Value Help'
define view 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'
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