P_SalesSchedgAgrmtProcFlow31

DDL: P_SALESSCHEDGAGRMTPROCFLOW31 SQL: PSSAPROCFLOW31 Type: view CONSUMPTION

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

Data Sources (1)

SourceAliasJoin Type
I_AccountingDocument AccountingDocument inner

Annotations (8)

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
AbapCatalog.sqlViewName PSSAPROCFLOW31 view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Level2Document Level2Document
KEY AccountingDocument I_AccountingDocument AccountingDocument Journal Entry
KEY SalesSchedulingAgreement SalesSchedulingAgreement Sales Document
SalesSchedgAgrmtType SalesSchedgAgrmtType
CompanyCode I_AccountingDocument CompanyCode Receiver Company Code
FiscalYear I_AccountingDocument FiscalYear G/L Fiscal Year
Level2DocumentCategory Level2DocumentCategory
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_SalesSchedgAgrmtProcFlow31.
-- 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: PSSAPROCFLOW31

CREATE VIEW P_SalesSchedgAgrmtProcFlow31 AS
SELECT
  Level2Document,
  AccountingDocument.AccountingDocument AS AccountingDocument,
  SalesSchedulingAgreement,
  SalesSchedgAgrmtType,
  AccountingDocument.CompanyCode AS CompanyCode,
  AccountingDocument.FiscalYear AS FiscalYear,
  Level2DocumentCategory,
  SalesOrganization,
  DistributionChannel,
  OrganizationDivision
INNER JOIN I_AccountingDocument AS AccountingDocument ON /* join condition not captured in parsed metadata */
;