P_DebitMemoReqProcFlowM1

DDL: P_DEBITMEMOREQPROCFLOWM1 SQL: PDMRPROCFM1 Type: view CONSUMPTION

P_DebitMemoReqProcFlowM1 is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 7 fields with key fields LevelM1Document, DebitMemoRequest.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentProcessFlow LevelM1 inner

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PDMRPROCFM1 view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY LevelM1Document PrecedingDocument SD Document
KEY DebitMemoRequest DebitMemoRequest
DebitMemoRequestType DebitMemoRequestType
SalesOrderCategory SalesOrderCategory
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
OrganizationDivision OrganizationDivision Org. Division

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 P_DebitMemoReqProcFlowM1.
-- 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: PDMRPROCFM1

CREATE VIEW P_DebitMemoReqProcFlowM1 AS
SELECT
  PrecedingDocument AS LevelM1Document,
  DebitMemoRequest,
  DebitMemoRequestType,
  SalesOrderCategory,
  SalesOrganization,
  DistributionChannel,
  OrganizationDivision
INNER JOIN I_SDDocumentProcessFlow AS LevelM1 ON /* join condition not captured in parsed metadata */
;