I_CashPositionUpdateStatus
Cash position update status
I_CashPositionUpdateStatus is a Basic CDS View (Dimension) that provides data about "Cash position update status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field CashPositionUpdateStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CashPositionUpdateStatusText | _Text | $projection.CashPositionUpdateStatus = _Text.CashPositionUpdateStatus and _Text.Language = $session.system_language |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Cash position update status | view | |
| AbapCatalog.sqlViewName | ICASHPOSUPDST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.internalName | #LOCAL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | CashPositionUpdateStatus | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CashPositionUpdateStatus | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@EndUserText.label: 'Cash position update status'
@AbapCatalog: { sqlViewName: 'ICASHPOSUPDST',
compiler.compareFilter: true,
preserveKey: true,
buffering.status: #NOT_ALLOWED
}
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true,
internalName:#LOCAL}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: { representativeKey: 'CashPositionUpdateStatus',
usageType.dataClass: #MASTER,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
resultSet.sizeCategory: #XS,
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY],
modelingPattern: #ANALYTICAL_DIMENSION
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_CashPositionUpdateStatus
as select from dd07l
association [0..1] to I_CashPositionUpdateStatusText as _Text on $projection.CashPositionUpdateStatus = _Text.CashPositionUpdateStatus
and _Text.Language = $session.system_language
{
@ObjectModel.text.association: '_Text'
key cast( substring( domvalue_l, 1, 1) as far_cash_pos_update_status ) as CashPositionUpdateStatus,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07l.domvalue_l as DomainValue,
_Text
}
where dd07l.domname = 'FAR_CASH_POS_UPDATE_STATUS'
and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CASHPOSITIONUPDATESTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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