P_CreditMemoReqProcFlowM1

DDL: P_CREDITMEMOREQPROCFLOWM1 SQL: PCMRPROCFM1 Type: view CONSUMPTION

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

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 PCMRPROCFM1 view
AbapCatalog.preserveKey true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY LevelM1Document PrecedingDocument SD Document
KEY LevelM1DocumentItem PrecedingDocumentItem Item
KEY CreditMemoRequest CreditMemoRequest
CreditMemoRequestType CreditMemoRequestType
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_CreditMemoReqProcFlowM1.
-- 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: PCMRPROCFM1

CREATE VIEW P_CreditMemoReqProcFlowM1 AS
SELECT
  PrecedingDocument AS LevelM1Document,
  PrecedingDocumentItem AS LevelM1DocumentItem,
  CreditMemoRequest,
  CreditMemoRequestType,
  SalesOrderCategory,
  SalesOrganization,
  DistributionChannel,
  OrganizationDivision
INNER JOIN I_SDDocumentProcessFlow AS LevelM1 ON /* join condition not captured in parsed metadata */
;