I_ReleaseStrategyDesc
ReleaseStrategy Description
I_ReleaseStrategyDesc is a Basic CDS View that provides data about "ReleaseStrategy Description" in SAP S/4HANA. It reads from 1 data source (t16ft) and exposes 4 fields with key fields ReleaseGroup, PurchasingReleaseStrategy, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t16ft | t16ft | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURRSDESC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ReleaseStrategy Description | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReleaseGroup | frggr | ||
| KEY | PurchasingReleaseStrategy | frgsx | ||
| KEY | Language | spras | ||
| PurchasingReleaseStrategyDesc | frgxt |
@AbapCatalog.sqlViewName: 'IPURRSDESC'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ReleaseStrategy Description'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey:[ 'ReleaseGroup' , 'PurchasingReleaseStrategy' ]
//@ObjectModel.semanticKey:[ 'PurchasingReleaseStrategy' ]
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_ReleaseStrategyDesc
as select from t16ft
{
//@ObjectModel.foreignKey.association
key frggr as ReleaseGroup,
key frgsx as PurchasingReleaseStrategy,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
frgxt as PurchasingReleaseStrategyDesc
}
where
spras = $session.system_language and frgsx <> 'SH'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T16FT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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