I_TDAUnitUpgradeScope
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CustABAPObjDirectoryEntry | I_CustABAPObjDirectoryEntry | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
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