ACM_DT_DEPENDENCIES
ACM: Designtime-Dependencies of DCL-Objects
ACM_DT_DEPENDENCIES is a CDS View that provides data about "ACM: Designtime-Dependencies of DCL-Objects" in SAP S/4HANA. It reads from 52 data sources and exposes 26 fields. Part of development package SACMTOOLS.
Data Sources (52)
| Source | Alias | Join Type |
|---|---|---|
| acmacauthview | acmacauthview | inner |
| acmacauthview | acmacauthview | inner |
| acmacauthview | acmacauthview | inner |
| acmacauthview | acmacauthview | inner |
| acmacauthview | acmacauthview | inner |
| acmacaviewdetail | acmacaviewdetail | inner |
| acmacaviewdetail | acmacaviewdetail | inner |
| acmaccondition | acmaccondition | inner |
| acmaccondition | acmaccondition | inner |
| acmaccondition | acmaccondition | inner |
| acmaccondition | acmaccondition | inner |
| acmacfield | acmacfield | inner |
| acmacfield | acmacfield | inner |
| acmaspect | acmaspect | left_outer |
| acmaspect | acmaspect | inner |
| acmaspect | acmaspect | left_outer |
| acmaspect | acmaspect | inner |
| acmaspect | acmaspect | left_outer |
| acmaspectpfcg | acmaspectpfcg | left_outer |
| acmaspectpfcg | acmaspectpfcg | inner |
| acmaspectpfcg | acmaspectpfcg | left_outer |
| acmaspectpfcg | acmaspectpfcg | inner |
| acmaspectpfcg | acmaspectpfcg | left_outer |
| acmasppfcgdetail | acmasppfcgdetail | left_outer |
| acmasppfcgdetail | acmasppfcgdetail | inner |
| acmasppfcgdetail | acmasppfcgdetail | left_outer |
| acmasppfcgdetail | acmasppfcgdetail | inner |
| acmasppfcgdetail | acmasppfcgdetail | left_outer |
| acmdclsrc | acmdclsrc | inner |
| acmdclsrc | acmdclsrc | inner |
| acmdclsrc | acmdclsrc | inner |
| acmdclsrc | acmdclsrc | inner |
| acmdclsrc | acmdclsrc | inner |
| acmdtcondition | acmdtcondition | inner |
| acmdtcondition | acmdtcondition | inner |
| acmdtcondition | acmdtcondition | inner |
| acmdtcondition | acmdtcondition | inner |
| acmrole | acmrole | from |
| acmrole | acmrole | union |
| acmrole | acmrole | union |
| acmrole | acmrole | union |
| acmrole | acmrole | union |
| acmrule | acmrule | inner |
| acmrule | acmrule | inner |
| acmrule | acmrule | inner |
| acmrule | acmrule | inner |
| acmrule | acmrule | inner |
| acmversion | version | left_outer |
| acmversion | version | left_outer |
| acmversion | version | left_outer |
| acmversion | version | left_outer |
| acmversion | version | left_outer |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACM_DT_DEPEND | view | |
| ClientDependent | false | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | ACM: Designtime-Dependencies of DCL-Objects | view |
Fields (26)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| dclsrc_name | acmdclsrc | dclname | Acc. Ctrl. Name | |
| role_name | acmrole | name | Zone name | |
| operation | acmrule | acm_operation | Operation | |
| aspect_name | acmaspect | name | Zone name | |
| aspect_type | acmaspect | aspect_type | AspectType | |
| pfcg_authobj | acmaspectpfcg | auth_object | Object | |
| role_name | acmrole | name | Zone name | |
| operation | acmrule | acm_operation | Operation | |
| aspect_name | acmaspect | name | Zone name | |
| aspect_type | acmaspect | aspect_type | AspectType | |
| pfcg_authobj | acmaspectpfcg | auth_object | Object | |
| role_name | acmrole | name | Zone name | |
| operation | acmrule | acm_operation | Operation | |
| aspect_name | acmaspect | name | Zone name | |
| aspect_type | acmaspect | aspect_type | AspectType | |
| pfcg_authobj | acmaspectpfcg | auth_object | Object | |
| role_name | acmrole | name | Zone name | |
| operation | acmrule | acm_operation | Operation | |
| aspect_name | acmaspect | name | Zone name | |
| aspect_type | acmaspect | aspect_type | AspectType | |
| pfcg_authobj | acmaspectpfcg | auth_object | Object | |
| role_name | acmrole | name | Zone name | |
| operation | acmrule | acm_operation | Operation | |
| aspect_name | acmaspect | name | Zone name | |
| aspect_type | acmaspect | aspect_type | AspectType | |
| pfcg_authobj | acmaspectpfcg | auth_object | Object |
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_DT_DEPENDENCIES.
-- 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_DT_DEPEND
CREATE VIEW ACM_DT_DEPENDENCIES AS
SELECT
acmdclsrc.dclname AS dclsrc_name,
acmrole.name AS role_name,
acmrule.acm_operation AS operation,
acmaspect.name AS aspect_name,
acmaspect.aspect_type AS aspect_type,
acmaspectpfcg.auth_object AS pfcg_authobj
FROM acmrole
INNER JOIN acmdclsrc ON /* join condition not captured in parsed metadata */
INNER JOIN acmrule ON /* join condition not captured in parsed metadata */
INNER JOIN acmdtcondition ON /* join condition not captured in parsed metadata */
INNER JOIN acmaccondition ON /* join condition not captured in parsed metadata */
INNER JOIN acmacauthview ON /* join condition not captured in parsed metadata */
INNER JOIN acmacfield ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN acmaspect ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN acmaspectpfcg ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN acmasppfcgdetail ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN acmversion AS version ON /* join condition not captured in parsed metadata */
INNER JOIN acmaspect ON /* join condition not captured in parsed metadata */
INNER JOIN acmaspectpfcg ON /* join condition not captured in parsed metadata */
INNER JOIN acmasppfcgdetail ON /* join condition not captured in parsed metadata */
INNER JOIN acmacaviewdetail ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): acmrole
;
Learn More
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA