I_LiquidityTransferStatus
Status of Liquidity Item Transfer
I_LiquidityTransferStatus is a Basic CDS View that provides data about "Status of Liquidity Item Transfer" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields LiquidityItemTransferStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ILQTRSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | LiquidityItemTransferStatus | view | |
| EndUserText.label | Status of Liquidity Item Transfer | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LiquidityItemTransferStatus | |||
| KEY | Language | ddlanguage | Liquidity Transfer Status Language | |
| LiquidityTransferStatusName | ||||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILQTRSTATUS'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
//@Analytics: { dataExtraction.enabled: true }
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'LiquidityItemTransferStatus'
@EndUserText.label: 'Status of Liquidity Item Transfer'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_LiquidityTransferStatus as select from dd07t
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language {
@ObjectModel.text.element: ['LiquidityTransferStatusName']
key cast ( left(domvalue_l,1) as fclm_lqtr_status preserving type ) as LiquidityItemTransferStatus,
@Semantics.language: true
@EndUserText.label: 'Liquidity Transfer Status Language'
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text: true
cast ( ddtext as val_text preserving type ) as LiquidityTransferStatusName,
@UI.hidden: true
case domvalue_l
when 'C' then 3 -- 'created' | 3: green colour
when 'I' then 1 -- 'invalidated' | 1: red colour
else 0 -- 'nothing' | 0: unknown
end as LqdyItmTransfStsCritlty,
_Language
}where
domname = 'FCLM_LQTR_STATUS' and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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