I_CashReleaseStatusText
Cash Release Status Text
I_CashReleaseStatusText is a Basic CDS View that provides data about "Cash Release Status Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CashReleaseStatus. Part of development package FCLM_RCF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | _Text | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Cash Release Status Text | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CashReleaseStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CashReleaseStatus | |||
| CashReleaseStatusText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Release Status Text'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashReleaseStatus'
define view entity I_CashReleaseStatusText
as select from I_DomainFixedValueText as _Text
{
@ObjectModel.text.element: [ 'CashReleaseStatusText' ]
key cast(DomainValue as fqm_release_status) as CashReleaseStatus,
@Semantics.text
cast( DomainText as fclm_relsta_name preserving type ) as CashReleaseStatusText
}
where
SAPDataDictionaryDomain = 'FQM_RELEASE_STATUS'
and _Text.Language = $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