Atov_Pk_Package_With_Local

DDL: ATOV_PK_PACKAGE_WITH_LOCAL SQL: ATO_V_PK_PACK_WL Type: view

Registered packages with local packages

Atov_Pk_Package_With_Local is a CDS View that provides data about "Registered packages with local packages" in SAP S/4HANA. It reads from 2 data sources (ato_pk_package, ato_setup) and exposes 1 field with key field package_name.

Data Sources (2)

SourceAliasJoin Type
ato_pk_package Package from
ato_setup Setup union

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_PK_PACK_WL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Registered packages with local packages view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY package_name ato_pk_package package_name Package 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 Atov_Pk_Package_With_Local.
-- 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: ATO_V_PK_PACK_WL

CREATE VIEW Atov_Pk_Package_With_Local AS
SELECT
  Package.package_name AS package_name
FROM ato_pk_package AS Package
-- UNION with additional select branch(es): ato_setup
;