I_PPM_ObjectLinkType

DDL: I_PPM_OBJECTLINKTYPE SQL: IPPMOBJLKTYP Type: view BASIC

Object Link Type

I_PPM_ObjectLinkType is a Basic CDS View that provides data about "Object Link Type" in SAP S/4HANA. It reads from 1 data source (dpr_obl_obtyp) and exposes 4 fields with key field ObjectLinkType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dpr_obl_obtyp ObjectLinkType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PPM_ObjectLinkTypeText _ObjectLinkTypeText _ObjectLinkTypeText.ObjectLinkType = $projection.ObjectLinkType

Annotations (13)

NameValueLevelField
EndUserText.label Object Link Type view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPPMOBJLKTYP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey ObjectLinkType view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ObjectLinkType dpr_obl_obtyp object_type
ObjectLinkTypeCategory dpr_obl_obtyp category
ObjectLinkTypeGrouping dpr_obl_obtyp grouping
_ObjectLinkTypeText _ObjectLinkTypeText
@EndUserText.label: 'Object Link Type'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPPMOBJLKTYP'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory:  #S
@ObjectModel.usageType.dataClass:  #CUSTOMIZING

@ClientHandling.algorithm: #SESSION_VARIABLE

@AccessControl: {
    authorizationCheck:     #NOT_ALLOWED
}

@AbapCatalog.compiler.compareFilter: true

@ObjectModel.representativeKey: 'ObjectLinkType'
@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API

define view I_PPM_ObjectLinkType as select from dpr_obl_obtyp as ObjectLinkType
    association [0..*] to I_PPM_ObjectLinkTypeText as _ObjectLinkTypeText
        on _ObjectLinkTypeText.ObjectLinkType = $projection.ObjectLinkType
{
  @ObjectModel.text.association: '_ObjectLinkTypeText'
  key ObjectLinkType.object_type as ObjectLinkType,
  // ObjectLinkType.open_appl as HasOpenApplicationLink, not used

  ObjectLinkType.category as ObjectLinkTypeCategory, 
  ObjectLinkType.grouping as ObjectLinkTypeGrouping,
  _ObjectLinkTypeText       
}          
  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DPR_OBL_OBTYP"
],
"ASSOCIATED":
[
"I_PPM_OBJECTLINKTYPETEXT"
],
"BASE":
[],
"VERSION":0
}
}*/