I_SalesAreaDeterminationText
Desc Sales Area Determination
I_SalesAreaDeterminationText is a Basic CDS View that provides data about "Desc Sales Area Determination" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields SalesAreaDetermination, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISLSAREADETRT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Desc Sales Area Determination | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesAreaDetermination | |||
| KEY | Language | |||
| SalesAreaDeterminationName |
@AbapCatalog.sqlViewName: 'ISLSAREADETRT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Desc Sales Area Determination'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: {
dataClass: #MIXED,
serviceQuality: #D,
sizeCategory: #S
}
}
@ObjectModel.resultSet.sizeCategory: #XS
define view I_SalesAreaDeterminationText as select from dd07t
{
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@ObjectModel.text.element: [ 'SalesAreaDeterminationName' ]
key cast ( domvalue_l as vtbfi ) as SalesAreaDetermination,
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
cast ( ddtext as val_text ) as SalesAreaDeterminationName
}
where
domname = 'VTBFI'
and ddlanguage = $session.system_language
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