I_EntProjFieldMapChgDoc

DDL: I_ENTPROJFIELDMAPCHGDOC SQL: ISEFIELDMAPPING Type: view BASIC

Field mapping for change document extractor

I_EntProjFieldMapChgDoc is a Basic CDS View that provides data about "Field mapping for change document extractor" in SAP S/4HANA. It reads from 2 data sources (dd03nd, dd27s) and exposes 4 fields with key fields EntProjChgDocViewFld, EntProjChgDocObj.

Data Sources (2)

SourceAliasJoin Type
dd03nd DD03ND inner
dd27s dd27s from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISEFIELDMAPPING view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Field mapping for change document extractor view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EntProjChgDocViewFld dd27s viewfield View field
KEY EntProjChgDocObj dd03nd strucobjn DD: Name of a structured object (e.g. entity, context)
EntProjChgDocFld dd27s fieldname UI Group FieldName
EntPrjChgDocFldDet dd03nd fieldname_raw Property Name

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_EntProjFieldMapChgDoc.
-- 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: ISEFIELDMAPPING

CREATE VIEW I_EntProjFieldMapChgDoc AS
SELECT
  dd27s.viewfield AS EntProjChgDocViewFld,
  DD03ND.strucobjn AS EntProjChgDocObj,
  dd27s.fieldname AS EntProjChgDocFld,
  DD03ND.fieldname_raw AS EntPrjChgDocFldDet
FROM dd27s
INNER JOIN dd03nd AS DD03ND ON /* join condition not captured in parsed metadata */
;