ACMTEST_PFCG_API_V2

DDL: ACMTEST_PFCG_API_V2 SQL: ACMTEST_PAPI_TV2 Type: view

Entity 1 for API tests

ACMTEST_PFCG_API_V2 is a CDS View that provides data about "Entity 1 for API tests" in SAP S/4HANA. It reads from 1 data source (snwd_ad) and exposes 4 fields with key field node_key.

Data Sources (1)

SourceAliasJoin Type
snwd_ad snwd_ad from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ACMTEST_PAPI_TV2 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Entity 1 for API tests view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY node_key node_key Tree Model: Node Key
building building Building code
city city Location
country country Venue: Ctry/Reg

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 ACMTEST_PFCG_API_V2.
-- 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: ACMTEST_PAPI_TV2

CREATE VIEW ACMTEST_PFCG_API_V2 AS
SELECT
  node_key,
  building,
  city,
  country
FROM snwd_ad
;