ARSV_SWCMP_INSTALLED
Is Software Componsnts installed
ARSV_SWCMP_INSTALLED is a CDS View that provides data about "Is Software Componsnts installed" in SAP S/4HANA. It reads from 2 data sources (cvers, cvers_ext) and exposes 2 fields with key field component.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ARS_V_SCWMPI | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Is Software Componsnts installed | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | component | cvers | component | |
| componentwhenthenelseXendasis_intalled |
@AbapCatalog.sqlViewName: 'ARS_V_SCWMPI'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Is Software Componsnts installed'
define view ARSV_SWCMP_INSTALLED as select from cvers as cvers
// INSTALLED Software COmponents exist in CVERS_EXT
left outer join cvers_ext as cvers_ext on cvers.component = cvers_ext.component
{
key cvers.component as component,
case coalesce(cvers_ext.component, '') when '' then ' '
else 'X'
end as is_intalled
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CVERS",
"CVERS_EXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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