rsodp_abap_cds_vte2stob
ABAP CDS: SQL View + Struct Object including ana.techname
rsodp_abap_cds_vte2stob is a CDS View that provides data about "ABAP CDS: SQL View + Struct Object including ana.techname" in SAP S/4HANA. It reads from 2 data sources (RSODP_ABAP_CDS_VIEWE2STOB, ddheadanno) and exposes 4 fields with key field StructObjName. Part of development package RSODP_ABAP_CDS.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| RSODP_ABAP_CDS_VIEWE2STOB | a | from |
| ddheadanno | b | left_outer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RSODPABAPCDSVTE | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | ABAP CDS: SQL View + Struct Object including ana.techname | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StructObjName | RSODP_ABAP_CDS_VIEWE2STOB | StructObjName | |
| ddlname | RSODP_ABAP_CDS_VIEWE2STOB | DDLName | ||
| SQLViewName | RSODP_ABAP_CDS_VIEWE2STOB | SQLViewName | ||
| valueendasrodps_odpnameasEntityTechname |
@AbapCatalog.sqlViewName: 'RSODPABAPCDSVTE'
@ClientHandling.type: #CLIENT_INDEPENDENT
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'ABAP CDS: SQL View + Struct Object including ana.techname'
define view rsodp_abap_cds_vte2stob as select from RSODP_ABAP_CDS_VIEWE2STOB as a
left outer join ddheadanno as b
on a.StructObjName = b.strucobjn and b.name = 'ANALYTICS.TECHNICALNAME'
{ key a.StructObjName as StructObjName,
a.DDLName as ddlname,
a.SQLViewName as SQLViewName,
cast( case when b.value is null then a.SQLViewName
when b.value = '' then a.SQLViewName
else replace( upper( b.value ), '''', '')
end as rodps_odpname ) as EntityTechname }
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