I_CertaintyLevelStdVH
Certainty Level for Cash Management
I_CertaintyLevelStdVH is a Basic CDS View that provides data about "Certainty Level for Cash Management" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field CertaintyLevel. Part of development package FQM_INBOUND.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| Consumption.ranked | true | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | CertaintyLevel | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Certainty Level for Cash Management | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CertaintyLevel | |||
| CertaintyLevelName |
@VDM.viewType: #BASIC
@Consumption.ranked: true
@Search.searchable: true
//@AbapCatalog.preserveKey: true
@ObjectModel.representativeKey: 'CertaintyLevel'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory:#XS
@ObjectModel.dataCategory: #VALUE_HELP
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Certainty Level for Cash Management'
define view entity I_CertaintyLevelStdVH
as select from dd07t
{
@UI.textArrangement: #TEXT_FIRST
@ObjectModel.text.element: ['CertaintyLevelName']
@Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH}
key cast( dd07t.domvalue_l as fqm_certainty_level ) as CertaintyLevel,
cast( dd07t.ddtext as val_text preserving type ) as CertaintyLevelName
}
where
dd07t.domname = 'FQM_CERTAINTY_LEVEL'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
and dd07t.ddlanguage = $session.system_language
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