CDB_OBJECTS
Customer Data Browser Objects
CDB_OBJECTS is a CDS View that provides data about "Customer Data Browser Objects" in SAP S/4HANA. It reads from 2 data sources (cdb_objh, cdb_objt) and exposes 2 fields with key field CDBObjectName.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Customer Data Browser Objects | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Customer Data Browser Objects'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define root view entity CDB_OBJECTS
as select from cdb_objh
// inner join cdb_objt
left outer join cdb_objt
on cdb_objt.obj_name = cdb_objh.obj_name and
cdb_objt.spras = 'E' and
cdb_objh.status = 'A'
// composition [1..*] of CDB_OBJECT_fields as _ObjectFields
{
key cdb_objh.obj_name as CDBObjectName,
cdb_objt.text as CDBObjectText
//_ObjectFields
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CDB_OBJH",
"CDB_OBJT"
],
"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