Api_Ddls_Assoc_Target_Names
Raw names of target entities for assocs
Api_Ddls_Assoc_Target_Names is a CDS View that provides data about "Raw names of target entities for assocs" in SAP S/4HANA. It reads from 1 data source (dd02b) and exposes 2 fields with key field name.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd02b | dd02b | inner |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| p_for_entity | ddstrucobjname |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APIDDLSASSOCNAMS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Raw names of target entities for assocs | view |
@AbapCatalog.sqlViewName: 'APIDDLSASSOCNAMS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Raw names of target entities for assocs'
define view Api_Ddls_Assoc_Target_Names
with parameters
p_for_entity : ddstrucobjname
as select distinct from dd08b
inner join dd02b on dd08b.strucobjn_t = dd02b.strucobjn
{
key dd08b.strucobjn_t as name,
dd02b.strucobjn_raw as name_raw
}
where
dd08b.strucobjn = $parameters.p_for_entity;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD02B",
"DD08B"
],
"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