R_DocumentInfoRecordTP
Document Info Record
R_DocumentInfoRecordTP is a Transactional CDS View that provides data about "Document Info Record" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecord) and exposes 16 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DocumentInfoRecord | docInfoRecord | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Document Info Record | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.sapObjectNodeType.name | DocumentInfoRecord | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentInfoRecordDocType | DocumentInfoRecordDocType | ||
| KEY | DocumentInfoRecordDocVersion | DocumentInfoRecordDocVersion | ||
| KEY | DocumentInfoRecordDocNumber | DocumentInfoRecordDocNumber | ||
| KEY | DocumentInfoRecordDocPart | DocumentInfoRecordDocPart | ||
| DocumentInfoRecord | I_DocumentInfoRecord | DocumentInfoRecord | ||
| InternalDocumentStatus | InternalDocumentStatus | |||
| LaboratoryOrDesignOffice | LaboratoryOrDesignOffice | |||
| AuthorizationGroup | AuthorizationGroup | |||
| ChangeNumber | ChangeNumber | |||
| DocInfoRecdIsMarkedForDeletion | DocInfoRecdIsMarkedForDeletion | |||
| IsDocInfoRecdCreatedFromCAD | IsDocInfoRecdCreatedFromCAD | |||
| ResponsiblePersonName | ResponsiblePersonName | |||
| CreationDateTime | CreationDateTime | |||
| CreatedByUser | CreatedByUser | |||
| ChangedDateTime | ChangedDateTime | |||
| LastChangedByUser | LastChangedByUser |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Document Info Record'
@VDM.viewType : #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.sapObjectNodeType.name: 'DocumentInfoRecord'
define root view entity R_DocumentInfoRecordTP
as select from I_DocumentInfoRecord as docInfoRecord
{
key DocumentInfoRecordDocType as DocumentInfoRecordDocType,
key DocumentInfoRecordDocVersion as DocumentInfoRecordDocVersion,
key DocumentInfoRecordDocNumber as DocumentInfoRecordDocNumber,
key DocumentInfoRecordDocPart as DocumentInfoRecordDocPart,
docInfoRecord.DocumentInfoRecord as DocumentInfoRecord,
/* Document Info Record other Details */
InternalDocumentStatus as InternalDocumentStatus,
LaboratoryOrDesignOffice as LaboratoryOrDesignOffice,
AuthorizationGroup as AuthorizationGroup,
ChangeNumber as ChangeNumber,
/* Document Structure, CAD and Deletion Indicator */
DocInfoRecdIsMarkedForDeletion as DocInfoRecdIsMarkedForDeletion,
IsDocInfoRecdCreatedFromCAD as IsDocInfoRecdCreatedFromCAD,
/* IsDocInfoRecdStructure as IsDocInfoRecdStructure, */
ResponsiblePersonName as ResponsiblePersonName,
/* DIR Administrative Data */
CreationDateTime as CreationDateTime,
CreatedByUser as CreatedByUser,
// @ObjectModel.readOnly: true
ChangedDateTime as ChangedDateTime,
LastChangedByUser as LastChangedByUser
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOCUMENTINFORECORD"
],
"ASSOCIATED":
[],
"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