I_SCMBusinessSystemGroup
Business system group and corresponding logical system
I_SCMBusinessSystemGroup is a Basic CDS View that provides data about "Business system group and corresponding logical system" in SAP S/4HANA. It reads from 1 data source (t000) and exposes 2 fields with key fields BusinessSystemGroup, LogicalSystem. Part of development package MG-SCM-COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t000 | t000 | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISCMBUSSYSGRP | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Business system group and corresponding logical system | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessSystemGroup | |||
| KEY | LogicalSystem | t000 | logsys |
@AbapCatalog.sqlViewName: 'ISCMBUSSYSGRP'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory : #M,
usageType.dataClass: #MASTER
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Business system group and corresponding logical system'
define view I_SCMBusinessSystemGroup
as select from t000
{
key cast( 'S4_BG1' as /sapapo/logqs ) as BusinessSystemGroup,
key t000.logsys as LogicalSystem
}
where
t000.mandt = $session.client
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