P_Prchinforecordslang_Fs

DDL: P_PRCHINFORECORDSLANG_FS SQL: PPIRLANGFS Type: view BASIC

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

Data Sources (1)

SourceAliasJoin Type
lfa1 lfa1 from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PPIRLANGFS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Supplier lifnr Vendor no.
Language spras Off. Language
SupplierName name1 PA text
AdditionalName name2 Name2/First nme

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_Prchinforecordslang_Fs.
-- 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: PPIRLANGFS

CREATE VIEW P_Prchinforecordslang_Fs AS
SELECT
  lifnr AS Supplier,
  spras AS Language,
  name1 AS SupplierName,
  name2 AS AdditionalName
FROM lfa1
;