P_CnsldtnExtnVersAcctgInteg

DDL: P_CNSLDTNEXTNVERSACCTGINTEG SQL: PCSEXTVSTAI Type: view COMPOSITE Package: FIN_CS_MD_VERSION

Ext. versions based on ext. versions being run manually

P_CnsldtnExtnVersAcctgInteg is a Composite CDS View that provides data about "Ext. versions based on ext. versions being run manually" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnVersion) and exposes 1 field with key field ConsolidationVersion. It has 1 association to related views. Part of development package FIN_CS_MD_VERSION.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnVersion _CnsldtnVersion from

Associations (1)

CardinalityTargetAliasCondition
[0..1] P_CnsldtnExtnVersRestatement _CnsldtnExtnVersRestatement _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCSEXTVSTAI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationVersion I_CnsldtnVersion ConsolidationVersion
@AbapCatalog.sqlViewName: 'PCSEXTVSTAI'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #COMPOSITE
@VDM.private:true
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #S
}
@ClientHandling: {
  type:      #CLIENT_DEPENDENT,
  algorithm: #SESSION_VARIABLE
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

define view P_CnsldtnExtnVersAcctgInteg

  as select from I_CnsldtnVersion as _CnsldtnVersion
  association [0..1] to P_CnsldtnExtnVersRestatement as _CnsldtnExtnVersRestatement on _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion



{
  key   _CnsldtnVersion.ConsolidationVersion,

        case
          when _CnsldtnExtnVersRestatement.ConsolidationVersion is null
          then cast( ''  as flag preserving type )
          else cast( 'X' as flag preserving type )
         end as CnsldtnUnitAcctgIntegIsDsbld
}