SXCO_AC_REPOSITORY_OBJECT

DDL: SXCO_AC_REPOSITORY_OBJECT Type: view_entity

XCO Appl. component: Repository object

SXCO_AC_REPOSITORY_OBJECT is a CDS View that provides data about "XCO Appl. component: Repository object" in SAP S/4HANA. It reads from 3 data sources (df14l, tadir, tdevc) and exposes 2 fields with key fields object_type, object_name.

Data Sources (3)

SourceAliasJoin Type
df14l df14l inner
tadir tadir from
tdevc tdevc inner

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label XCO Appl. component: Repository object view

Fields (2)

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