I_DocumentInfoRecordDocNumber

DDL: I_DOCUMENTINFORECORDDOCNUMBER SQL: ICVDOCNUMBER Type: view BASIC

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)

CardinalityTargetAliasCondition
[0..*] I_DocumentInfoRecordDocTypeT _Text $projection.DocumentInfoRecordDocType = _Text.DocumentInfoRecordDocType
[1..1] I_DocumentInfoRecordDocType _DocType $projection.DocumentInfoRecordDocType = _DocType.DocumentInfoRecordDocType

Annotations (16)

NameValueLevelField
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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType document dokar
KEY DocumentInfoRecordDocNumber document doknr
_DocType _DocType
_Text _Text
@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


}