P_SalesContractFulfillment

DDL: P_SALESCONTRACTFULFILLMENT SQL: PSLSCONFULFLMT Type: view CONSUMPTION

Sales Contract Fulfillment

P_SalesContractFulfillment is a Consumption CDS View that provides data about "Sales Contract Fulfillment" in SAP S/4HANA. It reads from 1 data source (I_SalesContract) and exposes 12 fields with key field SalesContract.

Data Sources (1)

SourceAliasJoin Type
I_SalesContract I_SalesContract from

Parameters (1)

NameTypeDefault
P_DisplayCurrency vdm_v_display_currency

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSLSCONFULFLMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sales Contract Fulfillment view
Metadata.ignorePropagatedAnnotations true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SalesContract SalesContract Sales Document
SalesContractValidityEndDate SalesContractValidityEndDate
TransactionCurrency TransactionCurrency Transaction Currency
TotalNetAmount TotalNetAmount Total Net Amount
SalesContractType SalesContractType
SoldToParty SoldToParty Sold-to Party
SalesOffice SalesOffice Sales Office
SalesGroup SalesGroup Sales Group
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
OrganizationDivision OrganizationDivision Org. Division
OverallSDProcessStatus OverallSDProcessStatus

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_SalesContractFulfillment.
-- 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: PSLSCONFULFLMT
-- Parameters: P_DisplayCurrency : vdm_v_display_currency

CREATE VIEW P_SalesContractFulfillment AS
SELECT
  SalesContract,
  SalesContractValidityEndDate,
  TransactionCurrency,
  TotalNetAmount,
  SalesContractType,
  SoldToParty,
  SalesOffice,
  SalesGroup,
  SalesOrganization,
  DistributionChannel,
  OrganizationDivision,
  OverallSDProcessStatus
FROM I_SalesContract
;