CDR_I_TABLE_INFO
Table info view for TSD
CDR_I_TABLE_INFO is a CDS View that provides data about "Table info view for TSD" in SAP S/4HANA. It reads from 4 data sources (dd02l, df14l, tadir, tdevc) and exposes 10 fields with key field tabname.
Data Sources (4)
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Table info view for TSD | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Table info view for TSD'
@Metadata.ignorePropagatedAnnotations: true
@VDM.private: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #M,
dataClass: #MIXED
}
define view entity CDR_I_TABLE_INFO
as select from dd02l as dd02l
inner join tadir as tadir on dd02l.tabname = tadir.obj_name
inner join tdevc as tdevc on tadir.devclass = tdevc.devclass
inner join df14l as df14l on tdevc.component = df14l.fctr_id
{
key dd02l.tabname,
dd02l.tabclass,
dd02l.applclass,
dd02l.clidep,
dd02l.contflag,
tdevc.devclass,
tdevc.packtype,
tdevc.dlvunit,
tdevc.pdevclass,
df14l.ps_posid
}
where
tadir.pgmid = 'R3TR'
and tadir.object = 'TABL'
and dd02l.as4local = 'A'
and dd02l.tabclass = 'TRANSP'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD02L",
"DF14L",
"TADIR",
"TDEVC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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