Atov_Pk_Text_Package_Masterlan

DDL: ATOV_PK_TEXT_PACKAGE_MASTERLAN SQL: ATO_V_PK_T_P_ML Type: view Package: S_ATO_PK_CORE

Package Text in MasterLangauge

Atov_Pk_Text_Package_Masterlan is a CDS View that provides data about "Package Text in MasterLangauge" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevct) and exposes 4 fields with key field devclass. Part of development package S_ATO_PK_CORE.

Data Sources (2)

SourceAliasJoin Type
tadir tadir inner
tdevct tdevct from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_PK_T_P_ML view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Package Text in MasterLangauge view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY devclass tdevct devclass Package (Obsolete)
description tdevct ctext Text
language spras Off. Language
masterlang tadir masterlang Single-Character Flag

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_Masterlan.
-- 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_ML

CREATE VIEW Atov_Pk_Text_Package_Masterlan AS
SELECT
  tdevct.devclass AS devclass,
  tdevct.ctext AS description,
  spras AS language,
  tadir.masterlang AS masterlang
FROM tdevct
INNER JOIN tadir ON /* join condition not captured in parsed metadata */
;