ATOV_TEXT_ADAPTATION_TYPE
Adaptation type text
ATOV_TEXT_ADAPTATION_TYPE is a CDS View that provides data about "Adaptation type text" in SAP S/4HANA. It reads from 1 data source (ato_adapt_typest) and exposes 3 fields with key fields language, code. Part of development package S_ATO_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ato_adapt_typest | ato_adapt_typest | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_T_AT | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| EndUserText.label | Adaptation type text | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | language | ato_adapt_typest | language | |
| KEY | code | ato_adapt_typest | adaptation_type | |
| description | ato_adapt_typest | description |
@AbapCatalog.sqlViewName: 'ATO_V_T_AT'
@ClientHandling:{ type: #CLIENT_INDEPENDENT }
@EndUserText.label: 'Adaptation type text'
define view ATOV_TEXT_ADAPTATION_TYPE as
select from ato_adapt_typest
{
key ato_adapt_typest.language as language,
key ato_adapt_typest.adaptation_type as code,
ato_adapt_typest.description as description
}
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