I_AR_OfficialDocumentTypeText
Official Doc Type Text
I_AR_OfficialDocumentTypeText is a Basic CDS View that provides data about "Official Doc Type Text" in SAP S/4HANA. It reads from 1 data source (j_1aoftpt) and exposes 5 fields with key fields Language, AR_OfficialDocumentType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| j_1aoftpt | j_1aoftpt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IAROFFDOCTYPTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | AR_OfficialDocumentType | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Official Doc Type Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | AR_OfficialDocumentType | j_1aoftp | ||
| AR_OfficialDocTypeShortDesc | ||||
| AR_OfficialDocTypeLongDesc | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IAROFFDOCTYPTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AR_OfficialDocumentType'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Official Doc Type Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_AR_OfficialDocumentTypeText as select from j_1aoftpt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
key j_1aoftp as AR_OfficialDocumentType,
@Semantics.text:true
cast( text5 as logar_officialdoctypeshortdesc preserving type ) as AR_OfficialDocTypeShortDesc,
@Semantics.text:true
cast( text30 as logar_officialdoctypelongdesc preserving type ) as AR_OfficialDocTypeLongDesc,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"J_1AOFTPT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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