I_ProductPriceDetnCtrlTxt
Desc for Price Detn Cntrl
I_ProductPriceDetnCtrlTxt is a Basic CDS View that provides data about "Desc for Price Detn Cntrl" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields PriceDeterminationControl, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRDPRCDETNCTRLT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Desc for Price Detn Cntrl | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PriceDeterminationControl | |||
| KEY | Language | |||
| PriceDeterminationControlName |
@AbapCatalog.sqlViewName: 'IPRDPRCDETNCTRLT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Desc for Price Detn Cntrl'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
usageType: {
dataClass: #MIXED,
serviceQuality: #D,
sizeCategory: #S
}
}
@ObjectModel.resultSet.sizeCategory: #XS
define view I_ProductPriceDetnCtrlTxt as select from dd07t
{
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@ObjectModel.text.element: [ 'PriceDeterminationControlName' ]
key cast ( domvalue_l as kkowk ) as PriceDeterminationControl,
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@UI.selectionField.exclude: true
@ObjectModel.filter.enabled: false
@UI.hidden: true
cast ( ddtext as val_text ) as PriceDeterminationControlName
}
where
domname = 'CK_ML_ABST'
and ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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