dbc2abap_procs_all

DDL: DBC2ABAP_PROCS_ALL Type: view_entity Package: SABP_DBC2ABAP_RUNTIME

Procedures for SQL service

dbc2abap_procs_all is a CDS View that provides data about "Procedures for SQL service" in SAP S/4HANA. It reads from 3 data sources (dbc2abap_vseomethod, E_SRVD_RT_METHODS, sql1_head) and exposes 3 fields. Part of development package SABP_DBC2ABAP_RUNTIME.

Data Sources (3)

SourceAliasJoin Type
dbc2abap_vseomethod mtdf inner
E_SRVD_RT_METHODS mthd inner
sql1_head sql1 from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Procedures for SQL service view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
method_name E_SRVD_RT_METHODS ExposedMethod
read_only
description

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 dbc2abap_procs_all.
-- 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 dbc2abap_procs_all AS
SELECT
  mthd.ExposedMethod AS method_name,
  case when mtdf.mtdamdprdonly = 'X' then 'TRUE' else 'FALSE' end AS read_only,
  coalesce( coalesce( mtdf._descr_curr.descript, mtdf._descr_engl.descript ), mtdf._descr_orig.descript ) AS description
FROM sql1_head AS sql1
INNER JOIN E_SRVD_RT_METHODS AS mthd ON /* join condition not captured in parsed metadata */
INNER JOIN dbc2abap_vseomethod AS mtdf ON /* join condition not captured in parsed metadata */
;