I_LCMLinkedObjectType

DDL: I_LCMLINKEDOBJECTTYPE SQL: ILCMLINKOBJTYPE Type: view BASIC Package: VDM_LCM_COMMON

Basic View for LCM Linked Object Type

I_LCMLinkedObjectType is a Basic CDS View that provides data about "Basic View for LCM Linked Object Type" in SAP S/4HANA. It reads from 1 data source (lcm_clobtype) and exposes 8 fields with key field LglCntntMLinkdObjType. It has 2 associations to related views. Part of development package VDM_LCM_COMMON.

Data Sources (1)

SourceAliasJoin Type
lcm_clobtype lcm_clobtype from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_LCMLinkedObjectTypeText _Text $projection.LglCntntMLinkdObjType = _Text.LglCntntMLinkdObjType
[0..1] I_LglCntntMLinkedObjTechType _LglCntntMLinkedObjTechType $projection.LglCntntMLinkdObjTechType = _LglCntntMLinkedObjTechType.LglCntntMLinkdObjTechType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMLINKOBJTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic View for LCM Linked Object Type view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
ObjectModel.representativeKey LglCntntMLinkdObjType view
Search.searchable true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY LglCntntMLinkdObjType lglcntntmlinkdobjtype
LglCntntMLinkdObjTechType lglcntntmlinkdobjtechtype
LglCntntMLinkdObjTechCat _LglCntntMLinkedObjTechType LglCntntMLinkdObjTechCat
LglCntntMSemanticObject _LglCntntMLinkedObjTechType LglCntntMSemanticObject
LglCntntMSemanticObjectAttrib _LglCntntMLinkedObjTechType LglCntntMSemanticObjectAttrib
LglCntntMIntentAction _LglCntntMLinkedObjTechType LglCntntMIntentAction
LglCntntMIntegrationLink lglcntntmintegrationlink
_Text _Text
@AbapCatalog.sqlViewName: 'ILCMLINKOBJTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Basic View for LCM Linked Object Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'LglCntntMLinkdObjType'
@Search.searchable: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API


define view I_LCMLinkedObjectType
  as select from lcm_clobtype
  association [0..*] to I_LCMLinkedObjectTypeText    as _Text                       on $projection.LglCntntMLinkdObjType = _Text.LglCntntMLinkdObjType
  association [0..1] to I_LglCntntMLinkedObjTechType as _LglCntntMLinkedObjTechType on $projection.LglCntntMLinkdObjTechType = _LglCntntMLinkedObjTechType.LglCntntMLinkdObjTechType

{
      //      @ObjectModel.text.association: '_Text'

      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key lglcntntmlinkdobjtype                                     as LglCntntMLinkdObjType,

      @UI.hidden: true
      @ObjectModel.readOnly : true
      lglcntntmlinkdobjtechtype                                 as LglCntntMLinkdObjTechType,

      @UI.hidden: true
      @ObjectModel.readOnly : true
      _LglCntntMLinkedObjTechType.LglCntntMLinkdObjTechCat      as LglCntntMLinkdObjTechCat,

      @ObjectModel.readOnly : true
      _LglCntntMLinkedObjTechType.LglCntntMSemanticObject       as LglCntntMSemanticObject,
      @ObjectModel.readOnly : true
      _LglCntntMLinkedObjTechType.LglCntntMSemanticObjectAttrib as LglCntntMSemanticObjectAttrib,
      @ObjectModel.readOnly : true
      _LglCntntMLinkedObjTechType.LglCntntMIntentAction         as LglCntntMIntentAction,

      lglcntntmintegrationlink                                  as LglCntntMIntegrationLink,

      _Text

}