I_DocInfoRecordDescriptionTP
CDS TP View for Doc Info Record Desc
I_DocInfoRecordDescriptionTP is a Transactional CDS View that provides data about "CDS TP View for Doc Info Record Desc" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordDesc) and exposes 10 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DocumentInfoRecordDesc | I_DocumentInfoRecordDesc | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDIRDESCWODRTP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | CDS TP View for Doc Info Record Desc | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.preserveKey | true | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentInfoRecordDocType | DocumentInfoRecordDocType | ||
| KEY | DocumentInfoRecordDocNumber | DocumentInfoRecordDocNumber | ||
| KEY | DocumentInfoRecordDocVersion | DocumentInfoRecordDocVersion | ||
| KEY | DocumentInfoRecordDocPart | DocumentInfoRecordDocPart | ||
| KEY | Language | Language | ||
| DocumentDescription | DocumentDescription | |||
| LongTextExists | LongTextExists | |||
| DocInfoRecdShortText | DocInfoRecdShortText | |||
| ChangedDateTime | _DocInfoRecord | ChangedDateTime | ||
| _DocInfoRecord | _DocInfoRecord |
@AbapCatalog.sqlViewName: 'IDIRDESCWODRTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations:true
//@ObjectModel.createEnabled:true
//@ObjectModel.updateEnabled:true
//@ObjectModel.deleteEnabled:true
//@ObjectModel.entityChangeStateId: 'ChangedDateTime'
//@ObjectModel.writeActiveImplementedBy: 'ABAP:CL_PLM_RAP_PROVIDER_DMS'
//@ObjectModel.transactionalProcessingEnabled: true
@EndUserText.label: 'CDS TP View for Doc Info Record Desc'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.preserveKey: true
define view I_DocInfoRecordDescriptionTP
as select from I_DocumentInfoRecordDesc
association to parent I_DocInfoRecordTP as _DocInfoRecord on $projection.DocumentInfoRecordDocType = _DocInfoRecord.DocumentInfoRecordDocType
and $projection.DocumentInfoRecordDocNumber = _DocInfoRecord.DocumentInfoRecordDocNumber
and $projection.DocumentInfoRecordDocPart = _DocInfoRecord.DocumentInfoRecordDocPart
and $projection.DocumentInfoRecordDocVersion = _DocInfoRecord.DocumentInfoRecordDocVersion
{
key DocumentInfoRecordDocType, // as DocumentInfoRecordDocType,
key DocumentInfoRecordDocNumber, // as DocumentInfoRecordDocNumber,
key DocumentInfoRecordDocVersion,// as DocumentInfoRecordDocVersion,
key DocumentInfoRecordDocPart, // as DocumentInfoRecordDocPart,
key Language as Language,
DocumentDescription as DocumentDescription,
LongTextExists as LongTextExists,
DocInfoRecdShortText as DocInfoRecdShortText,
// @ObjectModel.readOnly: true
_DocInfoRecord.ChangedDateTime as ChangedDateTime,
_DocInfoRecord
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOCINFORECORDTP",
"I_DOCUMENTINFORECORDDESC"
],
"ASSOCIATED":
[
"I_DOCINFORECORDTP"
],
"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