ANA_AQD_LOOKUP_ENTITIES
CDS view to get list of look up entities
ANA_AQD_LOOKUP_ENTITIES is a CDS View that provides data about "CDS view to get list of look up entities" in SAP S/4HANA. It reads from 1 data source (ARS_APIS_RELEASED_FOR_C1).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ARS_APIS_RELEASED_FOR_C1 | api | left_outer |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ANA_AQD_LKE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | CDS view to get list of look up entities | view |
@AbapCatalog.sqlViewName: 'ANA_AQD_LKE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@EndUserText.label: 'CDS view to get list of look up entities'
define view ANA_AQD_LOOKUP_ENTITIES
as select
strucobjn as entity_name
from ddheadanno as a_ddheadanno
left outer join ARS_APIS_RELEASED_FOR_C1 as api on api.tadir_obj_name = a_ddheadanno.strucobjn
where
a_ddheadanno.name = 'OBJECTMODEL.DATACATEGORY'
and a_ddheadanno.value = '#FUNCTION'
and api.state = 'RELEASED';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARS_APIS_RELEASED_FOR_C1",
"DDHEADANNO"
],
"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