I_DocumentInfoRecordDocNumber
Document Info Record Document Number
I_DocumentInfoRecordDocNumber is a Basic CDS View (Dimension) that provides data about "Document Info Record Document Number" in SAP S/4HANA. It has 2 associations to related views.
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_DocumentInfoRecordDocTypeT | _Text | $projection.DocumentInfoRecordDocType = _Text.DocumentInfoRecordDocType |
| [1..1] | I_DocumentInfoRecordDocType | _DocType | $projection.DocumentInfoRecordDocType = _DocType.DocumentInfoRecordDocType |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICVDOCNUMBER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.compositionRoot | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | DocumentInfoRecordDocNumber | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Document Info Record Document Number | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view |
@AbapCatalog.sqlViewName: 'ICVDOCNUMBER'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel.compositionRoot:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey:'DocumentInfoRecordDocNumber'
@Analytics: { dataCategory: #DIMENSION }
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #L, dataClass: #TRANSACTIONAL }
@EndUserText.label: 'Document Info Record Document Number'
//--[ GENERATED:012:29JlHNUf7kY4h9rlEfNBsm
@AccessControl.privilegedAssociations: ['_Text']
// ]--GENERATED
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions: true
@VDM.lifecycle.contract.type:#PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION , #CDS_MODELING_ASSOCIATION_TARGET , #SQL_DATA_SOURCE , #CDS_MODELING_DATA_SOURCE ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
define view I_DocumentInfoRecordDocNumber
as select distinct from draw as document
--Get Document Type Association
//--[ GENERATED:012:29JlHNUf7kY4h9rlEfNBsm
association [0..*] to I_DocumentInfoRecordDocTypeT as _Text on $projection.DocumentInfoRecordDocType = _Text.DocumentInfoRecordDocType
// ]--GENERATED
association [1..1] to I_DocumentInfoRecordDocType as _DocType on $projection.DocumentInfoRecordDocType = _DocType.DocumentInfoRecordDocType
{
//--[ GENERATED:012:29JlHNUf7kY4h9rlEfNBsm
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_DocInfoRecdDocTypeStdVH',
element: 'DocumentInfoRecordDocType' }
}]
@ObjectModel.text.association: '_Text'
// ]--GENERATED
@ObjectModel.foreignKey.association: '_DocType'
key document.dokar as DocumentInfoRecordDocType,
key document.doknr as DocumentInfoRecordDocNumber,
// key document.dokvr as DocumentInfoRecordDocVersion,
// key document.doktl as DocumentInfoRecordDocPart,
// Associations
_DocType,
//--[ GENERATED:012:29JlHNUf7kY4h9rlEfNBsm
@Consumption.hidden: true
_Text
// ]--GENERATED
}
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