ATOV_ADAPTATION_TYPE

DDL: ATOV_ADAPTATION_TYPE SQL: ATO_V_AT Type: view

Adaptation type Icon

ATOV_ADAPTATION_TYPE is a CDS View that provides data about "Adaptation type Icon" in SAP S/4HANA. It reads from 1 data source (ato_adapt_types) and exposes 1 field with key field code.

Data Sources (1)

SourceAliasJoin Type
ato_adapt_types ato_adapt_types from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_AT view
ClientDependent false view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Adaptation type Icon view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY code ato_adapt_types adaptation_type
@AbapCatalog.sqlViewName: 'ATO_V_AT'
@ClientDependent: false
//@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Adaptation type Icon'
define view ATOV_ADAPTATION_TYPE as select from ato_adapt_types {

    key ato_adapt_types.adaptation_type as code,
      case COALESCE( ato_adapt_types.sap_icon, '' ) 
        when '' then 'sap-icon://key-user-settings' //

        else concat('sap-icon://',ato_adapt_types.sap_icon) 

      end             as sap_icon,
    
    
    
    ato_adapt_types.semantic_object as semantic_object,
    ato_adapt_types.semantic_action as semantic_action
  }