I_SafetyStockMethod
Safety Stock Method
I_SafetyStockMethod is a Basic CDS View that provides data about "Safety Stock Method" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, DomainValue. Part of development package ODATA_SAFETY_STK_PP_MRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Safety Stock Method | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DomainValue | view | |
| Analytics.technicalName | ISAFETYSTOCKM | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | DomainValue | domvalue_l | ||
| DomainText | ddtext |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Safety Stock Method'
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: { dataClass: #MIXED, serviceQuality: #C, sizeCategory: #S },
dataCategory: #TEXT,
representativeKey: 'DomainValue'
}
@Analytics.technicalName: 'ISAFETYSTOCKM'
define view entity I_SafetyStockMethod
as select from dd07t
{
@Semantics.language: true
key ddlanguage as Language,
key domvalue_l as DomainValue,
@Semantics.text: true
ddtext as DomainText
}
where
domname = 'MRP_SSTOCK_METHOD'
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