I_CommitmentItemShortID
Commitment Item Short ID
I_CommitmentItemShortID is a Basic CDS View that provides data about "Commitment Item Short ID" in SAP S/4HANA. It reads from 1 data source (fmfxpo) and exposes 3 fields with key field CommitmentItemShortID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fmfxpo | fmfxpo | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CommitmentItem | _CommitmentItem | $projection.CommitmentItemShortID = _CommitmentItem.CommitmentItemShortID |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Commitment Item Short ID | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | CommitmentItemShortID | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | ICOMMITEMSID | view | |
| AbapCatalog.preserveKey | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CommitmentItemShortID | |||
| CommitmentItem | fipex | |||
| _CommitmentItem | _CommitmentItem |
@EndUserText.label: 'Commitment Item Short ID'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: {
usageType: {
sizeCategory: #M,
serviceQuality: #A,
dataClass: #MASTER
},
representativeKey: 'CommitmentItemShortID',
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE ],
modelingPattern: #NONE
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'ICOMMITEMSID'
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations:true
define view I_CommitmentItemShortID
as select from fmfxpo
association [0..*] to I_CommitmentItem as _CommitmentItem on $projection.CommitmentItemShortID = _CommitmentItem.CommitmentItemShortID
{
key cast( fipos as fmis_ci_internalname preserving type ) as CommitmentItemShortID,
fipex as CommitmentItem,
_CommitmentItem
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FMFXPO"
],
"ASSOCIATED":
[
"I_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