P_CreditMemoReqProcFlow21

DDL: P_CREDITMEMOREQPROCFLOW21 SQL: PCMRPROCF21 Type: view CONSUMPTION

P_CreditMemoReqProcFlow21 is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_AccountingDocument) and exposes 10 fields with key fields Level1Document, AccountingDocument, CreditMemoRequest.

Data Sources (1)

SourceAliasJoin Type
I_AccountingDocument AccountingDocument 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 PCMRPROCF21 view
AbapCatalog.preserveKey true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Level1Document Level1Document
KEY AccountingDocument I_AccountingDocument AccountingDocument Journal Entry
KEY CreditMemoRequest CreditMemoRequest
CreditMemoRequestType CreditMemoRequestType
CompanyCode I_AccountingDocument CompanyCode Receiver Company Code
FiscalYear I_AccountingDocument FiscalYear G/L Fiscal Year
Level1DocumentCategory Level1DocumentCategory
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_CreditMemoReqProcFlow21.
-- 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: PCMRPROCF21

CREATE VIEW P_CreditMemoReqProcFlow21 AS
SELECT
  Level1Document,
  AccountingDocument.AccountingDocument AS AccountingDocument,
  CreditMemoRequest,
  CreditMemoRequestType,
  AccountingDocument.CompanyCode AS CompanyCode,
  AccountingDocument.FiscalYear AS FiscalYear,
  Level1DocumentCategory,
  SalesOrganization,
  DistributionChannel,
  OrganizationDivision
INNER JOIN I_AccountingDocument AS AccountingDocument ON /* join condition not captured in parsed metadata */
;