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
KEY object_name tadir obj_name
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'XCO Appl. component: Repository object'
define view entity SXCO_AC_REPOSITORY_OBJECT
  as select from tadir
    inner join   tdevc on tadir.devclass = tdevc.devclass
    inner join   df14l on tdevc.component = df14l.fctr_id
{
  key tadir.object   as object_type,

  key tadir.obj_name as object_name,

      df14l.ps_posid as application_component
}
where
      tadir.pgmid   = 'R3TR'
  and tadir.delflag = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DF14L",
"TADIR",
"TDEVC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/