SXCO_AC_REPOSITORY_OBJECT
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.
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | XCO Appl. component: Repository object | view |
@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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA