A_BusinessAreaText
API Business Area Text
A_BusinessAreaText is a Basic CDS View that provides data about "API Business Area Text" in SAP S/4HANA. It reads from 1 data source (I_BusinessAreaText) and exposes 4 fields with key fields BusinessArea, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessAreaText | I_BusinessAreaText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_BusinessArea | _BusinessArea | $projection.BusinessArea = _BusinessArea.BusinessArea |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | API Business Area Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | AFIBUSAREAT | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessArea | BusinessArea | ||
| KEY | Language | Language | ||
| BusinessAreaName | BusinessAreaName | |||
| _BusinessArea | _BusinessArea |
@EndUserText.label: 'API Business Area Text'
//@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFIBUSAREAT'
//@ObjectModel.representativeKey: 'BusinessArea'
//@ObjectModel.dataCategory: #TEXT
//@AbapCatalog.buffering.status: #ACTIVE
//@AbapCatalog.buffering.type: #FULL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
//@AbapCatalog.buffering.numberOfKeyFields: 1
@AccessControl.authorizationCheck: #CHECK
// A-view annotations
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
define view A_BusinessAreaText
as select from I_BusinessAreaText
//association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to A_BusinessArea as _BusinessArea on $projection.BusinessArea = _BusinessArea.BusinessArea
{
//I_BusinessAreaText
key BusinessArea,
key Language,
BusinessAreaName,
/* Associations */
_BusinessArea
//I_BusinessAreaText
// _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSAREATEXT"
],
"ASSOCIATED":
[
"A_BUSINESSAREA"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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