I_SiteMasterCustomizing
Site Master Customizing
I_SiteMasterCustomizing is a Basic CDS View that provides data about "Site Master Customizing" in SAP S/4HANA. It reads from 1 data source (rfm_site_c_wrf1) and exposes 6 fields with key field Site.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| rfm_site_c_wrf1 | rfm_site_c_wrf1 | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISMC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Site Master Customizing | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Site | werks | ||
| SiteProfile | betrp | |||
| PointOfSaleInboundProfile | inpro | |||
| PointOfSaleOutboundProfile | kopro | |||
| PointOfSaleCurrency | posws | |||
| OrderConversionIsAutomatic | autob |
@AbapCatalog.sqlViewName: 'ISMC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Site Master Customizing'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #D,
sizeCategory: #S
}
}
define view I_SiteMasterCustomizing
as select from rfm_site_c_wrf1
{
key werks as Site,
betrp as SiteProfile,
// vkorg as SalesOrganization,
// vtweg as DistributionChannel,
inpro as PointOfSaleInboundProfile,
kopro as PointOfSaleOutboundProfile,
posws as PointOfSaleCurrency,
autob as OrderConversionIsAutomatic
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"RFM_SITE_C_WRF1"
],
"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