I_MaintenanceWorkCenterOrgUnit
Work Center-to-Org Unit Assignment
I_MaintenanceWorkCenterOrgUnit is a Basic CDS View that provides data about "Work Center-to-Org Unit Assignment" in SAP S/4HANA. It reads from 1 data source (crhd) and exposes 8 fields with key fields WorkCenterInternalID, WorkCenterTypeCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crhd | crhd | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_OrgUnit | _OrganizationalUnit | $projection.OrganizationalUnit = _OrganizationalUnit.OrganizationalUnit |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMTWKCTRORG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Work Center-to-Org Unit Assignment | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
@AbapCatalog.sqlViewName: 'IMTWKCTRORG'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Work Center-to-Org Unit Assignment'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER}
define view I_MaintenanceWorkCenterOrgUnit
as select from crhd
association [0..1] to I_OrgUnit as _OrganizationalUnit on $projection.OrganizationalUnit = _OrganizationalUnit.OrganizationalUnit
{
key crhd.objid as WorkCenterInternalID,
key crhd.objty as WorkCenterTypeCode,
crhd.arbpl as WorkCenter,
crhd.werks as Plant,
crhd.hrtyp as OrganizationObjType,
crhd.hroid as OrganizationalUnit,
crhd.hrplvar as PlanVersion,
_OrganizationalUnit
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRHD"
],
"ASSOCIATED":
[
"I_ORGUNIT"
],
"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