ACM_CLAS_IMPL_INTF

DDL: ACM_CLASSES_IMPLEMENTING_INTF SQL: ACM_CL_IMPL_IF Type: view

ACM_CLAS_IMPL_INTF is a CDS View in SAP S/4HANA. It reads from 2 data sources (seoclasstx, vseoimplem) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
seoclasstx seoclasstx inner
vseoimplem vseoimplem from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName ACM_CL_IMPL_IF view
AccessControl.authorizationCheck #NOT_ALLOWED view

Fields (3)

KeyFieldSource TableSource FieldDescription
clsname vseoimplem clsname Type Name
langu seoclasstx langu Primary lang.
descript seoclasstx descript Title

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 ACM_CLAS_IMPL_INTF.
-- 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: ACM_CL_IMPL_IF

CREATE VIEW ACM_CLAS_IMPL_INTF AS
SELECT
  vseoimplem.clsname AS clsname,
  seoclasstx.langu AS langu,
  seoclasstx.descript AS descript
FROM vseoimplem
INNER JOIN seoclasstx ON /* join condition not captured in parsed metadata */
;