ARS_SOFTWARE_COMPONENTS_SCP
Customer Software Components in SCP
ARS_SOFTWARE_COMPONENTS_SCP is a CDS View in S/4HANA. Customer Software Components in SCP. It contains 3 fields. 6 CDS views read from this table.
CDS Views using this table (6)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| ARS_OBJECTS_ALL_SW_COMP_SCP | view_entity | inner | SCP: Objects in all Cust. Software Comp. | |
| ARS_SH_SOFTWARE_COMPONENTS_SCP | view | from | Value Help Software Components SCP | |
| ARS_SOFTWARE_COMPONENTS_SCP_VH | view_entity | from | Value Help Software Components SCP | |
| ARS_V_CRP_API_CHK_RELEV_BASE | view | inner | API Release: Check relevant APIs | |
| arsv_xpra_legacy_comp_types | view_entity | inner | API Release: SW components with Legacy component types | |
| ATOV_SOFTWARE_COMP_OF_OBJECT | view | left_outer | Get Software Comp of DEV Object in Dev System |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | software_component | software_component | 2 |
| is_installed_component | is_installed_component | 2 | |
| is_local_software_component | is_local_software_component | 2 |
//*************************************************
// The view returns all software components for which ABAP language version "ABAP for Cloud Development" is mandatory.
// In SAP Cloud Platform ABAP environment and ONE S/4HANA Cloud,
// this applies to all the software components created by a customer.
//
// Element Definition:
// - SOFTWARE_COMPONENT: Software component name
// - IS_LOCAL_SOFTWARE_COMPONENT: Indicates whether the software component is configured as being a local software component
// - IS_INSTALLED_COMPONENT: Indicates whether the software component is installed in the system (e.g. Add-On)
//*************************************************
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Customer Software Components in SCP'
define view entity ARS_SOFTWARE_COMPONENTS_SCP
as select from abap_langu_swcmp
{
key dlvunit as software_component,
local_software_component as is_local_software_component,
is_installed as is_installed_component
}
where
allowed_abap_language_versions = '5'