I_TMOrganizationalUnitFunction
Organizational Unit Function
I_TMOrganizationalUnitFunction is a Basic CDS View (Dimension) that provides data about "Organizational Unit Function" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field OrganizationalUnitFunction. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TMOrganizationalUnitFuncText | _Text | $projection.OrganizationalUnitFunction = _Text.OrganizationalUnitFunction |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Organizational Unit Function | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.representativeKey | OrganizationalUnitFunction | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | ITMORGUNITFUNC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrganizationalUnitFunction | |||
| _Text | _Text |
@EndUserText: {label: 'Organizational Unit Function'}
@Analytics: {dataCategory: #DIMENSION,
internalName: #LOCAL}
@ObjectModel: {representativeKey: 'OrganizationalUnitFunction',
usageType: {serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING}}
@VDM: {viewType: #BASIC}
@AbapCatalog: {compiler: {compareFilter: true},
sqlViewName: 'ITMORGUNITFUNC'}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm: #SESSION_VARIABLE
// ***********************************************************
// view is obsolete
// ***********************************************************
define view I_TMOrganizationalUnitFunction
as select from dd07l
association [0..*] to I_TMOrganizationalUnitFuncText as _Text on $projection.OrganizationalUnitFunction = _Text.OrganizationalUnitFunction
{
@ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 2) as /scmb/org_func_code preserving type) as OrganizationalUnitFunction,
/* Associations */
_Text
}
where
domname = '/SCMB/ORG_FUNC_CODE'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_TMORGANIZATIONALUNITFUNCTEXT"
],
"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