I_ACMMapDocItemData

DDL: I_ACMMAPDOCITEMDATA SQL: IMAPGDOCDATA Type: view BASIC

CPE Caller Mapping KNUMV and Document Item to GUID

I_ACMMapDocItemData is a Basic CDS View that provides data about "CPE Caller Mapping KNUMV and Document Item to GUID" in SAP S/4HANA. It reads from 1 data source (cped_knumvtoguid) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
cped_knumvtoguid cped_knumvtoguid from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMAPGDOCDATA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CPE Caller Mapping KNUMV and Document Item to GUID view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (3)

KeyFieldSource TableSource FieldDescription
PricingDocument knumv Doc. Condition
ConditionItem kposn Number
ACMPricingDocItemUUID docitem_guid GUID

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_ACMMapDocItemData.
-- 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: IMAPGDOCDATA

CREATE VIEW I_ACMMapDocItemData AS
SELECT
  knumv AS PricingDocument,
  kposn AS ConditionItem,
  docitem_guid AS ACMPricingDocItemUUID
FROM cped_knumvtoguid
;