I_OutputSenderOrgUnitTypeText
Organizational Unit Type - Text
I_OutputSenderOrgUnitTypeText is a Basic CDS View that provides data about "Organizational Unit Type - Text" in SAP S/4HANA. It reads from 1 data source (sform_s_orgutpt) and exposes 5 fields with key fields SenderOrganizationalUnitType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sform_s_orgutpt | sform_s_orgutpt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_OutputSenderOrgUnitType | _OrgUnitType | $projection.SenderOrganizationalUnitType = _OrgUnitType.SenderOrganizationalUnitType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOCSENDRORGUTYPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SenderOrganizationalUnitType | view | |
| EndUserText.label | Organizational Unit Type - Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SenderOrganizationalUnitType | org_unit_type | ||
| KEY | Language | langu | ||
| SenderOrglUnitTypeDesc | description | |||
| _OrgUnitType | _OrgUnitType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IOCSENDRORGUTYPT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #M,
usageType.dataClass: #META,
dataCategory: #TEXT,
representativeKey: 'SenderOrganizationalUnitType'
}
@EndUserText.label: 'Organizational Unit Type - Text'
define view I_OutputSenderOrgUnitTypeText
as select from sform_s_orgutpt
association [0..1] to I_OutputSenderOrgUnitType as _OrgUnitType on $projection.SenderOrganizationalUnitType = _OrgUnitType.SenderOrganizationalUnitType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_OrgUnitType'
key org_unit_type as SenderOrganizationalUnitType,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Semantics.text
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 1,
ranking: #LOW
}
description as SenderOrglUnitTypeDesc,
//Associations
_OrgUnitType,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SFORM_S_ORGUTPT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_OUTPUTSENDERORGUNITTYPE"
],
"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