I_ACMApplQtyType

DDL: I_ACMAPPLQTYTYPE Type: view_entity BASIC

ACM Quantity types domain values

I_ACMApplQtyType is a Basic CDS View that provides data about "ACM Quantity types domain values" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields SAPDataDictionaryDomain, DomainValue.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t dd07t inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ACM Quantity types domain values view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SAPDataDictionaryDomain dd07l domname Domain
KEY DomainValue dd07l domvalue_l Lower Value
DomainText 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 I_ACMApplQtyType.
-- 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.

CREATE VIEW I_ACMApplQtyType AS
SELECT
  dd07l.domname AS SAPDataDictionaryDomain,
  dd07l.domvalue_l AS DomainValue,
  dd07t.ddtext AS DomainText
FROM dd07l
INNER JOIN dd07t ON /* join condition not captured in parsed metadata */
;