I_TechnicalObjectType

DDL: I_TECHNICALOBJECTTYPE SQL: ITECHOBJTYPE Type: view BASIC

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)

SourceAliasJoin Type
t370k t370k from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TechnicalObjectTypeText _Text _Text.TechnicalObjectType = $projection.TechnicalObjectType

Annotations (17)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}