P_DOCINFORECDOBJECTLINK
Object Links For Document Info Records
P_DOCINFORECDOBJECTLINK is a CDS View in S/4HANA. Object Links For Document Info Records. It contains 17 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_DocInfoRecdObjectLink | view | from | BASIC | Document Info Record Object Link Details |
Fields (17)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | DocumentInfoRecord | DocumentInfoRecord | 1 |
| KEY | DocumentPart | DocumentPart | 1 |
| KEY | DocumentType | DocumentType | 1 |
| KEY | DocumentVersion | DocumentVersion | 1 |
| KEY | LinkedSAPObject | LinkedSAPObject | 1 |
| KEY | LinkedSAPObjectKey | LinkedSAPObjectKey | 1 |
| DocInfoRecdAdditionalObjectKey | DocInfoRecdAdditionalObjectKey | 1 | |
| DocInfoRecdConfignMgmtFixed | DocInfoRecdConfignMgmtFixed | 1 | |
| DocInfoRecdIsDeleted | DocInfoRecdIsMarkedForDeletion | 1 | |
| DocInfoRecdLinkStatus | DocInfoRecdLinkStatus | 1 | |
| DocInfoRecdLongTextUUID | DocInfoRecdLongTextUUID | 1 | |
| DocInfoRecdObjectLinkStatus | DocInfoRecdObjectLinkStatus | 1 | |
| DocLinkDirectionIsActive | DocLinkDirectionIsActive | 1 | |
| DocObjectLinkCounter | DocObjectLinkCounter | 1 | |
| DocumentIsCreatedByCAD | DocumentIsCreatedByCAD | 1 | |
| IsDefaultDocument | IsDefaultDocument | 1 | |
| ObjectTypeDatabaseTable | ObjectTypeDatabaseTable | 1 |
@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
}