I_TDAUnitUpgradeScope

DDL: I_TDAUNITUPGRADESCOPE Type: view_entity TRANSACTIONAL Package: FRM_S4C_DB

ABAP Unit Upgrade Scope

I_TDAUnitUpgradeScope is a Transactional CDS View that provides data about "ABAP Unit Upgrade Scope" in SAP S/4HANA. It reads from 1 data source (I_CustABAPObjDirectoryEntry) and exposes 11 fields with key fields TDAVariantType, TDAVariantLbl, TDAProcessName. Part of development package FRM_S4C_DB.

Data Sources (1)

SourceAliasJoin Type
I_CustABAPObjDirectoryEntry I_CustABAPObjDirectoryEntry from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABAP Unit Upgrade Scope view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY TDAVariantType
KEY TDAVariantLbl
KEY TDAProcessName I_CustABAPObjDirectoryEntry ABAPObject
TDACreatedByName I_CustABAPObjDirectoryEntry ABAPObjectResponsibleUser
TDAContainerFieldFlagValue I_CustABAPObjDirectoryEntry ABAPObjectIsDeleted
TDACreateDesc I_CustABAPObjDirectoryEntry ABAPPackage
_CustABAPPackage I_CustABAPObjDirectoryEntry _CustABAPPackage
TDACreateUUID upgscope TDACreateTagText
TDATechnicalText
TDATemplateNameText I_CustABAPObjDirectoryEntry ABAPSoftwareComponent
TDAScopeListText upgscope TDAScopeListText
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Unit Upgrade Scope'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #TRANSACTIONAL
define view entity I_TDAUnitUpgradeScope
  as select from           I_CustABAPObjDirectoryEntry
    left outer to one join I_TDAExecutionUpgradeScope as upgscope on  I_CustABAPObjDirectoryEntry.ABAPObjectCategory = upgscope.TDAVariantLbl
                                                                  and I_CustABAPObjDirectoryEntry.ABAPObjectType     = upgscope.TDAContainerVariantDescription
                                                                  and I_CustABAPObjDirectoryEntry.ABAPObject         = upgscope.TDAProcessName
{

  key cast ( I_CustABAPObjDirectoryEntry.ABAPObjectCategory as tdc_variant_type )  as TDAVariantType, // Object category

  key cast (I_CustABAPObjDirectoryEntry.ABAPObjectType as start_dte_variant_name ) as TDAVariantLbl, // Object typeC_TDAABAPUNITSCOPE

  key I_CustABAPObjDirectoryEntry.ABAPObject                                       as TDAProcessName, // Object name

      I_CustABAPObjDirectoryEntry.ABAPObjectResponsibleUser                        as TDACreatedByName,
      I_CustABAPObjDirectoryEntry.ABAPObjectIsDeleted                              as TDAContainerFieldFlagValue,
      @ObjectModel.foreignKey.association: '_CustABAPPackage'
      I_CustABAPObjDirectoryEntry.ABAPPackage                                      as TDACreateDesc,
      I_CustABAPObjDirectoryEntry._CustABAPPackage,
      @Semantics.uuid: true
      upgscope.TDACreateTagText                                                    as TDACreateUUID,
      case upgscope.TDAFieldLabelText
      when 'Added' then 'Added'
      else 'Not Added'
      end                                                                          as TDAFieldLabelText,
      case upgscope.TDAFieldLabelText
      when 'Added' then 3
      else 2 end                                                                   as TDAListValue,
      'Package'                                                                    as TDATechnicalText,
      I_CustABAPObjDirectoryEntry.ABAPSoftwareComponent                            as TDATemplateNameText,
      upgscope.TDAScopeListText                                                    as TDAScopeListText
}
where
  I_CustABAPObjDirectoryEntry.ABAPObjectType = 'DEVC'