I_TechnicalObjectType
Techncial Object Type
I_TechnicalObjectType is a Basic CDS View (Dimension) that provides data about "Techncial Object Type" in SAP S/4HANA. It reads from 1 data source (t370k) and exposes 2 fields with key field TechnicalObjectType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t370k | t370k | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TechnicalObjectTypeText | _Text | _Text.TechnicalObjectType = $projection.TechnicalObjectType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Techncial Object Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ITECHOBJTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | TechnicalObjectType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.sapObjectNodeType.name | EAMTechnicalObjectType | view | |
| ObjectModel.objectIdentifier.oidElement | EAMTechnicalObjectTypeOID | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TechnicalObjectType | t370k | eqart | |
| _Text | _Text |
@EndUserText.label: 'Techncial Object Type'
@Analytics: { dataCategory: #DIMENSION,
dataExtraction : { enabled: true ,
delta.changeDataCapture.automatic: true }
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ITECHOBJTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'TechnicalObjectType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions: true
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.alternativeKey:[{id:'OID',element:['EAMTechnicalObjectTypeOID']}]
@ObjectModel.sapObjectNodeType.name:'EAMTechnicalObjectType'
@ObjectModel.objectIdentifier.oidElement:'EAMTechnicalObjectTypeOID'
define view I_TechnicalObjectType
as select from t370k // T370K = Type of technical object
left outer to one join I_MdiOidConfiguration on I_MdiOidConfiguration.ObjectTypeCode = '5810'
association [0..*] to I_TechnicalObjectTypeText as _Text on _Text.TechnicalObjectType = $projection.TechnicalObjectType
{
@ObjectModel.text.association: '_Text'
key t370k.eqart as TechnicalObjectType,
//MDI/ODM
@ObjectModel.filter.enabled:false
@ObjectModel.sort.enabled:false
//Context ID is not specified
case when I_MdiOidConfiguration.Context is initial
//Composition is disabled
or I_MdiOidConfiguration.ComposeOid is initial then
cast( t370k.eqart as technicalobjecttype_oid ) //use your own data element
//Context ID is specified
when I_MdiOidConfiguration.Context is not initial
// and dd07l.domvalue_l is not initial
and I_MdiOidConfiguration.ComposeOid is not initial then
cast( concat( concat( I_MdiOidConfiguration.Context, ':' ), t370k.eqart ) as technicalobjecttype_oid ) //use your own data element
end as EAMTechnicalObjectTypeOID, //use your own OID field name
// Propagate association
_Text
}
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