ANA_AQD_ENDUSERLABEL

DDL: ANA_AQD_ENDUSERLABEL SQL: ANA_AQD_LABEL Type: view

List of cds views with end user label

ANA_AQD_ENDUSERLABEL is a CDS View that provides data about "List of cds views with end user label" in SAP S/4HANA. It reads from 1 data source (ddheadanno).

Data Sources (1)

SourceAliasJoin Type
ddheadanno b_ddheadanno left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ANA_AQD_LABEL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label List of cds views with end user label view
// *******************

// This CDS view returns the cds views which have the header annotation "ENDUSERTEXT.LABEL".

//  Returns name and description.

//

// Annotation :

//     "ENDUSERTEXT.LABEL:'description example'"

//

// *******************

@AbapCatalog.sqlViewName: 'ANA_AQD_LABEL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'List of cds views with end user label'
define view ANA_AQD_ENDUSERLABEL
  as select distinct a_ddheadanno.strucobjn as name,
                     b_ddheadanno.value     as description
from              ddheadanno as a_ddheadanno
  left outer join ddheadanno as b_ddheadanno on  a_ddheadanno.strucobjn = b_ddheadanno.strucobjn
                                             and b_ddheadanno.name      = 'ENDUSERTEXT.LABEL'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDHEADANNO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/