RSODP_ABAP_CDS_ODPNAME_ANNO
Derive ODP Name
RSODP_ABAP_CDS_ODPNAME_ANNO is a CDS View that provides data about "Derive ODP Name" in SAP S/4HANA. It reads from 3 data sources (ddheadanno, ddddlsrc, tadir) and exposes 8 fields with key field cdsViewName.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| ddheadanno | h | inner |
| ddddlsrc | s | from |
| tadir | t | inner |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Derive ODP Name | view |
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Derive ODP Name'
define view entity RSODP_ABAP_CDS_ODPNAME_ANNO as
select from ddddlsrc as s
inner join tadir as t on t.obj_name = s.ddlname
inner join ddheadanno as h on s.ddlname = h.strucobjn
{
key cast( s.ddlname as ddstrucobjname ) as cdsViewName,
s.ddlname as ddlName,
s.source_type as sourceType,
cast( replace( upper( h.value ), '''', '') as rodps_odpname ) as odpName,
length( h.value ) - 2 as length,
@Semantics.systemDate.createdAt: true
t.created_on as createdOnDate,
@Semantics.systemDate.lastChangedAt: true
s.as4date as changedAtDate,
@Semantics.systemTime.lastChangedAt: true
s.as4time as changedAtTime
} where t.pgmid = 'R3TR' and t.object = 'DDLS' and s.as4local = 'A' and s.source_type = 'W' and h.name = 'ANALYTICS.TECHNICALNAME'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDDDLSRC",
"DDHEADANNO",
"TADIR"
],
"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