I_EntProjectObjectLinkType
Object Link Type for Enterprise Projects
I_EntProjectObjectLinkType is a Basic CDS View that provides data about "Object Link Type for Enterprise Projects" 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_EntProjectObjectLinkTypeText | _ObjectLinkTypeText | _ObjectLinkTypeText.ObjectLinkType = $projection.ObjectLinkType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Object Link Type for Enterprise Projects | view | |
| ObjectModel.representativeKey | ObjectLinkType | view | |
| Analytics.technicalName | IEPRJMOBJLKTYP | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| Metadata.ignorePropagatedAnnotations | true | 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 for Enterprise Projects'
@ObjectModel.representativeKey: 'ObjectLinkType'
@Analytics.technicalName: 'IEPRJMOBJLKTYP'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@ObjectModel.modelingPattern: #NONE
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@Metadata.ignorePropagatedAnnotations:true
define view entity I_EntProjectObjectLinkType as select from dpr_obl_obtyp as ObjectLinkType
association [0..*] to I_EntProjectObjectLinkTypeText 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_ENTPROJECTOBJECTLINKTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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