I_PPM_ObjectLinkType
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)
| Source | Alias | Join Type |
|---|---|---|
| dpr_obl_obtyp | ObjectLinkType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PPM_ObjectLinkTypeText | _ObjectLinkTypeText | _ObjectLinkTypeText.ObjectLinkType = $projection.ObjectLinkType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
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