ARS_V_CRP_API_CHK_RELEV_STATUS

DDL: ARS_V_CRP_API_CHK_RELEV_STATUS SQL: ARS_V_CRP_API_S Type: view

API Release: Check relevant APIs

ARS_V_CRP_API_CHK_RELEV_STATUS is a CDS View that provides data about "API Release: Check relevant APIs" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields api_context, object_type, object_name.

Data Sources (1)

SourceAliasJoin Type
dd07t text left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ARS_V_CRP_API_S view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label API Release: Check relevant APIs view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY api_context api api_context
KEY object_type api object_type Type
KEY object_name api object_name Technical Name

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 ARS_V_CRP_API_CHK_RELEV_STATUS.
-- 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: ARS_V_CRP_API_S

CREATE VIEW ARS_V_CRP_API_CHK_RELEV_STATUS AS
SELECT
  api.api_context AS api_context,
  api.object_type AS object_type,
  api.object_name AS object_name
LEFT OUTER JOIN dd07t AS text ON /* join condition not captured in parsed metadata */
;