P_PriceTypeVH
P_PriceTypeVH is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_CmmdtyDrvtvGenericDomainVH) and exposes 2 fields with key field TargetPriceType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CmmdtyDrvtvGenericDomainVH | I_CmmdtyDrvtvGenericDomainVH | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PTRGTPRCTYP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TargetPriceType | DomainValue | ||
| TargetPriceDesc | DomainText |
@AbapCatalog.sqlViewName: 'PTRGTPRCTYP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
//@EndUserText.label: 'Value Help for FBO Target Price Type'
define view P_PriceTypeVH
as select from I_CmmdtyDrvtvGenericDomainVH
{
@ObjectModel.text.element: ['TargetPriceDesc']
key DomainValue as TargetPriceType,
@Semantics.text: true
DomainText as TargetPriceDesc
}
where
SAPDataDictionaryDomain = '/ACCGO/D_TGT_PRICE_TYPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CMMDTYDRVTVGENERICDOMAINVH"
],
"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