ARS_OBJECTS_ALL_SW_COMP_SCP

DDL: ARS_OBJECTS_ALL_SW_COMP_SCP Type: view_entity Package: S_ARS_PUBLIC

SCP: Objects in all Cust. Software Comp.

ARS_OBJECTS_ALL_SW_COMP_SCP is a CDS View that provides data about "SCP: Objects in all Cust. Software Comp." in SAP S/4HANA. It reads from 3 data sources (ARS_SOFTWARE_COMPONENTS_SCP, tadir, tdevc) and exposes 4 fields with key fields program_id, object_type, object_name. Part of development package S_ARS_PUBLIC.

Data Sources (3)

SourceAliasJoin Type
ARS_SOFTWARE_COMPONENTS_SCP abap_config inner
tadir tadir from
tdevc tdevc inner

Annotations (3)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SCP: Objects in all Cust. Software Comp. view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY program_id tadir pgmid Program Name
KEY object_type tadir object TRFM Object
KEY object_name tadir obj_name Object Name
package_name tadir devclass Package (Obsolete)

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_OBJECTS_ALL_SW_COMP_SCP.
-- 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_OBJECTS_ALL_SW_COMP_SCP AS
SELECT
  tadir.pgmid AS program_id,
  tadir.object AS object_type,
  tadir.obj_name AS object_name,
  tadir.devclass AS package_name
FROM tadir
INNER JOIN tdevc ON /* join condition not captured in parsed metadata */
INNER JOIN ARS_SOFTWARE_COMPONENTS_SCP AS abap_config ON /* join condition not captured in parsed metadata */
;