I_IL_DepositStatusText
IL Deposit Status - Text
I_IL_DepositStatusText is a Basic CDS View that provides data about "IL Deposit Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field Language. Part of development package RAP_GLO_FIN_CASH_IL_DEPOSIT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | IL Deposit Status - Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| IL_DepositStatusText | ddtext |
@EndUserText.label: 'IL Deposit Status - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM: { viewType: #BASIC }
@ObjectModel: { dataCategory: #TEXT,
usageType: { dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S }}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_IL_DepositStatusText
as
select from dd07t
{
@Semantics.language: true
key ddlanguage as Language,
key cast(
substring( domvalue_l, 1, 2 )
as gsfincsil_deposit_status ) as IL_DepositStatus,
@Semantics.text: true
ddtext as IL_DepositStatusText
}
where
domname = 'GSFINCSIL_DEPOSIT_STATUS'
and as4local = 'A'
and(
ddlanguage = 'E'
or 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