P_ACMContrReltdTrdTypeStsTxt

DDL: P_ACMCONTRRELTDTRDTYPESTSTXT SQL: PACMRLTRDTYSTTXT Type: view BASIC

ACM Contract Related Trade Type Text

P_ACMContrReltdTrdTypeStsTxt is a Basic CDS View that provides data about "ACM Contract Related Trade Type Text" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields ACMRelTradeStatusValue, Language.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t dd07t inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PACMRLTRDTYSTTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED 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
EndUserText.label ACM Contract Related Trade Type Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ACMRelTradeStatusValue
KEY Language
ACMTrdgContrSgntrStsText 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_ACMContrReltdTrdTypeStsTxt.
-- 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: PACMRLTRDTYSTTXT

CREATE VIEW P_ACMContrReltdTrdTypeStsTxt AS
SELECT
  cast( dd07l.domvalue_l as /accgo/e_reltd_stat ) AS ACMRelTradeStatusValue,
  cast( dd07t.ddlanguage as spras ) AS Language,
  dd07t.ddtext AS ACMTrdgContrSgntrStsText
FROM dd07l
INNER JOIN dd07t ON /* join condition not captured in parsed metadata */
;