ATOV_ADAPTATION_TYPE
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)
| Source | Alias | Join Type |
|---|---|---|
| ato_adapt_types | ato_adapt_types | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_AT | view | |
| ClientDependent | false | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Adaptation type Icon | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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