C_ABI_Analytical_Query
Analytical Query List
C_ABI_Analytical_Query is a Consumption CDS View that provides data about "Analytical Query List" in SAP S/4HANA. It reads from 4 data sources (ARS_APIS_RELEASED_C1_OR_GROUPS, dd02bnd, ddddlsrc, ddddlsrct) and exposes 2 fields with key field DDLSourceName. Part of development package RS_ANA_ABI_MAIN.
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| ARS_APIS_RELEASED_C1_OR_GROUPS | ReleasedViews | left_outer |
| dd02bnd | StructuredNodes | inner |
| ddddlsrc | Views | from |
| ddddlsrct | ViewText | left_outer |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Analytical Query List | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #CONSUMPTION | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Analytical Query List'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #CONSUMPTION
define view entity C_ABI_Analytical_Query
as select from ddddlsrc as Views
inner join dd02bnd as StructuredNodes on StructuredNodes.strucobjn = Views.ddlname
and StructuredNodes.provider_contract = 'AQ'
left outer join ARS_APIS_RELEASED_C1_OR_GROUPS as ReleasedViews on Views.ddlname = ReleasedViews.tadir_obj_name
and ReleasedViews.tadir_object = 'DDLS'
left outer to one join ddheadanno as anno on Views.ddlname = anno.strucobjn
and anno.name = 'ANALYTICS.TECHNICALNAME'
and anno.value not like ''''
and (
anno.value is not null
or anno.value <> ''
)
left outer join ddddlsrct as ViewText on Views.ddlname = ViewText.ddlname and ViewText.ddlanguage = $session.system_language
{
key Views.ddlname as DDLSourceName,
ViewText.ddtext as CDSDescription
}
where
Views.as4local = 'A'
and Views.source_type = 'P'
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