ARS_V_API_VERSION_HEADER
Software Component of Objects
ARS_V_API_VERSION_HEADER is a CDS View that provides data about "Software Component of Objects" in SAP S/4HANA. It reads from 3 data sources (cvers, tadir, tdevc) and exposes 4 fields.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ARS_V_API_V_H | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Software Component of Objects | view |
@AbapCatalog.sqlViewName: 'ARS_V_API_V_H'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Software Component of Objects'
define view ARS_V_API_VERSION_HEADER
as select from tadir
inner join tdevc on tdevc.devclass = tadir.devclass
left outer join cvers on cvers.component = tdevc.dlvunit
{
tadir.pgmid as program_id,
tadir.object as object_type,
tadir.obj_name as object_name,
tadir.devclass as package_name,
tdevc.dlvunit as software_component,
coalesce(cvers.release, '0000000000') as major_release,
cvers.extrelease as minor_release
}
where
tadir.delflag = #ABAP_BOOLEAN.' '
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CVERS",
"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