P_DocInfoRecdObjectLink
P_DocInfoRecdObjectLink is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (drad) and exposes 17 fields with key fields DocumentType, DocumentInfoRecord, DocumentVersion, DocumentPart, LinkedSAPObject.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| drad | obj_links | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCVDIROBJLINK | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | P_DocumentInfoRecordObjectLink | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentType | drad | dokar | |
| KEY | DocumentInfoRecord | drad | doknr | |
| KEY | DocumentVersion | drad | dokvr | |
| KEY | DocumentPart | drad | doktl | |
| KEY | LinkedSAPObject | drad | dokob | |
| KEY | DocObjectLinkCounter | drad | obzae | |
| KEY | LinkedSAPObjectKey | drad | objky | |
| DocInfoRecdLinkStatus | drad | vrkstat | ||
| DocInfoRecdObjectLinkStatus | drad | vrkstat1 | ||
| ObjectTypeDatabaseTable | drad | vobj | ||
| DocInfoRecdAdditionalObjectKey | drad | vkey | ||
| DocLinkDirectionIsActive | drad | vdir | ||
| IsDefaultDocument | drad | viewflag | ||
| DocInfoRecdIsDeleted | drad | delflag | ||
| DocInfoRecdLongTextUUID | drad | longtext_id | ||
| DocumentIsCreatedByCAD | drad | cad_pos | ||
| DocInfoRecdConfignMgmtFixed | drad | cm_fixed |
@AbapCatalog.sqlViewName: 'PCVDIROBJLINK'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle: {
contract: {
type: #NONE
},
status: #DEPRECATED,
successor: 'P_DocumentInfoRecordObjectLink'
}
define view P_DocInfoRecdObjectLink
as select from drad as obj_links
{
key obj_links.dokar as DocumentType,
key obj_links.doknr as DocumentInfoRecord,
key obj_links.dokvr as DocumentVersion,
key obj_links.doktl as DocumentPart,
key obj_links.dokob as LinkedSAPObject,
key obj_links.obzae as DocObjectLinkCounter,
key obj_links.objky as LinkedSAPObjectKey,
obj_links.vrkstat as DocInfoRecdLinkStatus,
obj_links.vrkstat1 as DocInfoRecdObjectLinkStatus,
obj_links.vobj as ObjectTypeDatabaseTable,
obj_links.vkey as DocInfoRecdAdditionalObjectKey,
obj_links.vdir as DocLinkDirectionIsActive,
obj_links.viewflag as IsDefaultDocument,
obj_links.delflag as DocInfoRecdIsDeleted,
obj_links.longtext_id as DocInfoRecdLongTextUUID,
obj_links.cad_pos as DocumentIsCreatedByCAD,
obj_links.cm_fixed as DocInfoRecdConfignMgmtFixed
}
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