I_DocInfoRecdNumber

DDL: I_DOCINFORECDNUMBER SQL: ICVDOCINFRECDNUM Type: view BASIC Package: CV_VDM

Document Info Record Value Help

I_DocInfoRecdNumber is a Basic CDS View (Dimension) that provides data about "Document Info Record Value Help" in SAP S/4HANA. It has 1 association to related views. Part of development package CV_VDM.

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_DocInfoRecdDocumentType _DocumentType $projection.DocumentType = _DocumentType.DocumentType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCINFRECDNUM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DocumentInfoRecord view
Metadata.allowExtensions true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Document Info Record Value Help view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_DocumentInfoRecordDocNumber view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DocumentType document dokar
KEY DocumentInfoRecord document doknr
_DocumentType _DocumentType
@AbapCatalog.sqlViewName: 'ICVDOCINFRECDNUM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey:'DocumentInfoRecord'
@Metadata.allowExtensions: true
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.usageType: { serviceQuality: #D, sizeCategory: #L, dataClass: #TRANSACTIONAL }
@EndUserText.label: 'Document Info Record Value Help'
@VDM.lifecycle: {
  contract: {
    type: #PUBLIC_LOCAL_API
  },
  status: #DEPRECATED,
  successor: 'I_DocumentInfoRecordDocNumber'
}
@Metadata.ignorePropagatedAnnotations:true

define view I_DocInfoRecdNumber
  as select distinct from draw as document

  --Get Document Type Association
  association [1..1] to I_DocInfoRecdDocumentType as _DocumentType on $projection.DocumentType = _DocumentType.DocumentType

{
      @ObjectModel.foreignKey.association: '_DocumentType'
  key document.dokar as DocumentType,

  key document.doknr as DocumentInfoRecord,

      // Associations

      _DocumentType
}