I_ACMSettlementDocContainer

DDL: I_ACMSETTLEMENTDOCCONTAINER SQL: IACMSTLDOCCONTN Type: view BASIC

ACM Settlement Document Container

I_ACMSettlementDocContainer is a Basic CDS View that provides data about "ACM Settlement Document Container" in SAP S/4HANA. It reads from 2 data sources (/accgo/t_stlctnr, /accgo/t_grp_hdr) and exposes 5 fields with key fields SettlementGroupId, SettlementGroupYear, SettlementDocHeaderUUID.

Data Sources (2)

SourceAliasJoin Type
/accgo/t_stlctnr ACMSettlementDocumentContainer inner
/accgo/t_grp_hdr ACMSettlementGroupHeader from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMSTLDOCCONTN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label ACM Settlement Document Container view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SettlementGroupId /accgo/t_grp_hdr group_id UUID
KEY SettlementGroupYear /accgo/t_grp_hdr group_yr Grp Yr
KEY SettlementDocHeaderUUID /accgo/t_stlctnr stl_header_guid STL Hdr GUID
SettlementDocGroupUUID /accgo/t_grp_hdr guid UUID 22 char.
SettlementCounterparty /accgo/t_grp_hdr counter_party Counterparty

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_ACMSettlementDocContainer.
-- 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: IACMSTLDOCCONTN

CREATE VIEW I_ACMSettlementDocContainer AS
SELECT
  ACMSettlementGroupHeader.group_id AS SettlementGroupId,
  ACMSettlementGroupHeader.group_yr AS SettlementGroupYear,
  ACMSettlementDocumentContainer.stl_header_guid AS SettlementDocHeaderUUID,
  ACMSettlementGroupHeader.guid AS SettlementDocGroupUUID,
  ACMSettlementGroupHeader.counter_party AS SettlementCounterparty
FROM /accgo/t_grp_hdr AS ACMSettlementGroupHeader
INNER JOIN /accgo/t_stlctnr AS ACMSettlementDocumentContainer ON /* join condition not captured in parsed metadata */
;