ARS_OBJECT_SOFTWARE_COMPONENT

DDL: ARS_OBJECT_SOFTWARE_COMPONENT Type: view_entity

Software Component of Objects

ARS_OBJECT_SOFTWARE_COMPONENT is a CDS View that provides data about "Software Component of Objects" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevc) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
tadir tadir from
tdevc tdevc inner

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Software Component of Objects view

Fields (3)

KeyFieldSource TableSource FieldDescription
program_id tadir pgmid Program Name
object_type tadir object TRFM Object
object_name tadir obj_name Object 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_OBJECT_SOFTWARE_COMPONENT.
-- 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 ARS_OBJECT_SOFTWARE_COMPONENT AS
SELECT
  tadir.pgmid AS program_id,
  tadir.object AS object_type,
  tadir.obj_name AS object_name
FROM tadir
INNER JOIN tdevc ON /* join condition not captured in parsed metadata */
;