ARS_OBJECT_SOFTWARE_COMPONENT
Software Component of Objects
ARS_OBJECT_SOFTWARE_COMPONENT is a CDS View that provides data about "Software Component of Objects" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevc) and exposes 3 fields.
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Software Component of Objects | view |
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Software Component of Objects'
define view entity ARS_OBJECT_SOFTWARE_COMPONENT
as select from tadir
inner join tdevc on tdevc.devclass = tadir.devclass
{
tadir.pgmid as program_id,
tadir.object as object_type,
tadir.obj_name as object_name,
tdevc.dlvunit as software_component
}
where
tadir.delflag = ' '
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"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