P_ARLineItem_6

DDL: P_ARLINEITEM_6 SQL: PARLINEITEM6 Type: view BASIC

P_ARLineItem_6 is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (kna1) and exposes 2 fields with key field Supplier.

Data Sources (1)

SourceAliasJoin Type
kna1 kna1 from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PARLINEITEM6 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 Supplier lifnr Vendor no.
Debtor

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_ARLineItem_6.
-- 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: PARLINEITEM6

CREATE VIEW P_ARLineItem_6 AS
SELECT
  lifnr AS Supplier,
  min(kunnr) AS Debtor
FROM kna1
;