I_CommitmentItemStdVH

DDL: I_COMMITMENTITEMSTDVH SQL: ICI__VH2 Type: view COMPOSITE

Commitment Item

I_CommitmentItemStdVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_CommitmentItemStdVH is a Composite CDS View that provides data about "Commitment Item" in SAP S/4HANA. It reads from 1 data source (I_CommitmentItem) and exposes 12 fields with key fields FinancialManagementArea, FinMgmtAreaFiscalYear, CommitmentItem.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-MD
CapabilitiesAnalytical Dimension, Data Provider for Value Help
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CommitmentItem I_CommitmentItem from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICI__VH2 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CommitmentItem view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Commitment Item view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea FinancialManagementArea Financial Management Area
KEY FinMgmtAreaFiscalYear FinMgmtAreaFiscalYear Fiscal Year for Financial Management Area
KEY CommitmentItem CommitmentItem Commitment item
CmtmtItemFinMgmtAreaForAuthzn CmtmtItemFinMgmtAreaForAuthzn FM Area for Auth Grp for Commitment Item
CommitmentItemAuthznGrp CommitmentItemAuthznGrp Authorization Group for Commitment Item
CommitmentItemName Commitment Item Name
CommitmentItemDescription Commitment Item Description
ValidityEndDate ValidityEndDate Commitment Item Validity End Date
ValidityStartDate ValidityStartDate Commitment Item Validity Start Date
_FinMgmtArea _FinMgmtArea
_FiscalYearForFinMgmtArea _FiscalYearForFinMgmtArea
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CommitmentItemStdVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICI__VH2

CREATE VIEW I_CommitmentItemStdVH AS
SELECT
  FinancialManagementArea,
  FinMgmtAreaFiscalYear,
  CommitmentItem,
  CmtmtItemFinMgmtAreaForAuthzn,
  CommitmentItemAuthznGrp,
  _Text[1:Language = $session.system_language].CommitmentItemName AS CommitmentItemName,
  _Text[1:Language = $session.system_language].CommitmentItemDescription AS CommitmentItemDescription,
  ValidityEndDate,
  ValidityStartDate
FROM I_CommitmentItem
;