ATOV_SOFTWARE_COMP_OF_OBJECT
Get Software Comp of DEV Object in Dev System
ATOV_SOFTWARE_COMP_OF_OBJECT is a CDS View that provides data about "Get Software Comp of DEV Object in Dev System" in SAP S/4HANA. It reads from 3 data sources (ARS_SOFTWARE_COMPONENTS_SCP, tadir, tdevc) and exposes 4 fields.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| ARS_SOFTWARE_COMPONENTS_SCP | abap_config | left_outer |
| tadir | tadir | from |
| tdevc | tdevc | inner |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_SWCOMP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Get Software Comp of DEV Object in Dev System | view |
@AbapCatalog.sqlViewName: 'ATO_V_SWCOMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Get Software Comp of DEV Object in Dev System'
define view ATOV_SOFTWARE_COMP_OF_OBJECT
as select from tadir as tadir
inner join tdevc as tdevc on tdevc.devclass = tadir.devclass
left outer join ARS_SOFTWARE_COMPONENTS_SCP as abap_config on abap_config.software_component = tdevc.dlvunit
{
tadir.pgmid as program_id,
tadir.object as object_type,
tadir.obj_name as object_name,
tadir.devclass as development_package,
tadir.genflag as is_generated,
tadir.srcsystem as source_system,
coalesce(abap_config.software_component, '') as custom_dev_software_component,
coalesce(abap_config.is_installed_component, '') as installed_component,
coalesce(abap_config.is_local_software_component, '') as local_software_component
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARS_SOFTWARE_COMPONENTS_SCP",
"TADIR",
"TDEVC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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