P_APLineItem_5

DDL: P_APLINEITEM_5 SQL: PAPLINEITEM5 Type: view BASIC Package: FINS_FIS_APAR_APPS

Created from DDL source P_APLineItem_5

P_APLineItem_5 is a Basic CDS View that provides data about "Created from DDL source P_APLineItem_5" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 2 fields with key field Debtor. Part of development package FINS_FIS_APAR_APPS.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PAPLINEITEM5 view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Debtor Customer Sold-to Party
Supplier

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_APLineItem_5.
-- 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: PAPLINEITEM5

CREATE VIEW P_APLineItem_5 AS
SELECT
  Customer AS Debtor,
  min(Supplier) AS Supplier
FROM I_Supplier
;