I_ATPBasicMethodText
ATP Basic Method Text
I_ATPBasicMethodText is a Basic CDS View that provides data about "ATP Basic Method Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ATPBasicMethod, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ATPBasicMethod | _BasicMethod | $projection.ATPBasicMethod = _BasicMethod.ATPBasicMethod |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IATPBASICMETHODT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ATPBasicMethod | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| EndUserText.label | ATP Basic Method Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ATPBasicMethod | |||
| KEY | Language | |||
| ATPBasicMethodName | ||||
| _BasicMethod | _BasicMethod | |||
| _Language | _Language |
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IATPBASICMETHODT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
representativeKey: 'ATPBasicMethod',
dataCategory: #TEXT,
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #META
}
}
@EndUserText.label: 'ATP Basic Method Text'
define view I_ATPBasicMethodText
as select from dd07t
association [1..1] to I_ATPBasicMethod as _BasicMethod on $projection.ATPBasicMethod = _BasicMethod.ATPBasicMethod
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_BasicMethod'
key cast(domvalue_l as atp_basic_method) as ATPBasicMethod,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras preserving type) as Language,
@Semantics.text: true
cast(ddtext as atp_basic_method_name preserving type) as ATPBasicMethodName,
_BasicMethod,
_Language
}
where
domname = 'ATP_BASIC_METHOD'
and as4local = 'A'
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