P_ACMSideText

DDL: P_ACMSIDETEXT SQL: PACMSIDETXT Type: view BASIC

Domain Value Text for Side

P_ACMSideText is a Basic CDS View that provides data about "Domain Value Text for Side" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields ACMDocumentSide, Language.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t dd07t inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PACMSIDETXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Domain Value Text for Side view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ACMDocumentSide
KEY Language
DocumentSide dd07t ddtext Short text

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_ACMSideText.
-- 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: PACMSIDETXT

CREATE VIEW P_ACMSideText AS
SELECT
  cast( dd07l.domvalue_l as wlf_pr_side ) AS ACMDocumentSide,
  cast( dd07t.ddlanguage as spras ) AS Language,
  dd07t.ddtext AS DocumentSide
FROM dd07l
INNER JOIN dd07t ON /* join condition not captured in parsed metadata */
;