Atov_Pk_Text_Package

DDL: ATOV_PK_TEXT_PACKAGE SQL: ATO_V_PK_T_P Type: view Package: S_ATO_PK_CORE

Description of Package

Atov_Pk_Text_Package is a CDS View that provides data about "Description of Package" in SAP S/4HANA. It reads from 3 data sources (Atov_Pk_Text_Package_Masterlan, Atov_Pk_Text_Package_Sylangu, tdevc) and exposes 1 field with key field devclass. Part of development package S_ATO_PK_CORE.

Data Sources (3)

SourceAliasJoin Type
Atov_Pk_Text_Package_Masterlan Atov_Pk_Text_Package_Masterlan left_outer
Atov_Pk_Text_Package_Sylangu Atov_Pk_Text_Package_Sylangu left_outer
tdevc tdevc from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_PK_T_P view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Description of Package view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY devclass tdevc devclass Package (Obsolete)

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_Text_Package.
-- 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_T_P

CREATE VIEW Atov_Pk_Text_Package AS
SELECT
  tdevc.devclass AS devclass
FROM tdevc
LEFT OUTER JOIN Atov_Pk_Text_Package_Sylangu ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Atov_Pk_Text_Package_Masterlan ON /* join condition not captured in parsed metadata */
;