P_Curtptext

DDL: P_CURTPTEXT SQL: PFICURTPTEXT Type: view BASIC

P_Curtptext is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (finsc_curtype, finsc_curtypet) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
finsc_curtype finsc_curtype from
finsc_curtypet finsc_curtypet inner

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PFICURTPTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
CURTP finsc_curtype curtype Currency Type
SPRAS finsc_curtypet langu Primary lang.
TEXT finsc_curtypet name Zone name

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_Curtptext.
-- 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: PFICURTPTEXT

CREATE VIEW P_Curtptext AS
SELECT
  finsc_curtype.curtype AS CURTP,
  finsc_curtypet.langu AS SPRAS,
  finsc_curtypet.name AS TEXT
FROM finsc_curtype
INNER JOIN finsc_curtypet ON /* join condition not captured in parsed metadata */
;