A_CommitmentItemText
Commitment Item Text
A_CommitmentItemText is a Consumption CDS View that provides data about "Commitment Item Text" in SAP S/4HANA. It reads from 1 data source (I_CommitmentItemText) and exposes 9 fields with key fields Language, FinancialManagementArea, FinMgmtAreaFiscalYear, CommitmentItem. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CommitmentItemText | I_CommitmentItemText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_CommitmentItem | _CommitmentItem | $projection.FinancialManagementArea = _CommitmentItem.FinancialManagementArea and $projection.FinMgmtAreaFiscalYear = _CommitmentItem.FinMgmtAreaFiscalYear and $projection.CommitmentItem = _CommitmentItem.CommitmentItem |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Commitment Item Text | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| OData.entityType.name | CommitmentItemText_Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | FinancialManagementArea | FinancialManagementArea | ||
| KEY | FinMgmtAreaFiscalYear | FinMgmtAreaFiscalYear | ||
| KEY | CommitmentItem | CommitmentItem | ||
| CommitmentItemName | CommitmentItemName | |||
| CommitmentItemDescription | CommitmentItemDescription | |||
| CommitmentItemDescription2 | CommitmentItemDescription2 | |||
| CommitmentItemDescription3 | CommitmentItemDescription3 | |||
| _CommitmentItem | _CommitmentItem |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Commitment Item Text'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L
}
@ObjectModel.dataCategory:#TEXT
@OData.entityType.name: 'CommitmentItemText_Type'
// A-view annotations
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view entity A_CommitmentItemText
as select from I_CommitmentItemText
association [0..*] to A_CommitmentItem as _CommitmentItem on $projection.FinancialManagementArea = _CommitmentItem.FinancialManagementArea
and $projection.FinMgmtAreaFiscalYear = _CommitmentItem.FinMgmtAreaFiscalYear
and $projection.CommitmentItem = _CommitmentItem.CommitmentItem
{
@Semantics.language:true
key Language,
key FinancialManagementArea,
key FinMgmtAreaFiscalYear,
key CommitmentItem,
@Semantics.text:true
CommitmentItemName,
@Semantics.text:true
CommitmentItemDescription,
@Semantics.text:true
CommitmentItemDescription2,
@Semantics.text:true
CommitmentItemDescription3,
_CommitmentItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COMMITMENTITEMTEXT"
],
"ASSOCIATED":
[
"A_COMMITMENTITEM"
],
"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