I_CustomizingObjectTables
Tables related to Customizing Objects
I_CustomizingObjectTables is a CDS View that provides data about "Tables related to Customizing Objects" in SAP S/4HANA. It reads from 1 data source (objs) and exposes 3 fields with key fields ParentObjectName, ParentObjectType, tabnameendasTableName. Part of development package S_CUSTOMIZING_IMG_ACTIVITY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| objs | ChildObjectList | left_outer |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Tables related to Customizing Objects | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ParentObjectName | ParentObjectList | objectname | |
| KEY | ParentObjectType | ParentObjectList | objecttype | |
| KEY | tabnameendasTableName |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Tables related to Customizing Objects'
define view entity I_CustomizingObjectTables
as select distinct from
objs as ParentObjectList
left outer join objs as ChildObjectList
on ParentObjectList.tabname = ChildObjectList.objectname and
ParentObjectList.objecttype = 'C' and
( ChildObjectList.objecttype = 'S' or
ChildObjectList.objecttype = 'V' or
ChildObjectList.objecttype is initial )
{
key ParentObjectList.objectname as ParentObjectName,
key ParentObjectList.objecttype as ParentObjectType,
key case
when ParentObjectList.objecttype = 'C' then ChildObjectList.tabname
else ParentObjectList.tabname
end as TableName
}
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