I_ProductDistributionProfileT
Product Distribution Profile - Text
I_ProductDistributionProfileT is a Basic CDS View that provides data about "Product Distribution Profile - Text" in SAP S/4HANA. It reads from 1 data source (tmfpft) and exposes 5 fields with key fields Language, ProductDistributionProfile. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tmfpft | tmfpft | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODDISTRPROFT | view | |
| EndUserText.label | Product Distribution Profile - Text | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| ObjectModel.supportedCapabilities | #VALUE_HELP_PROVIDER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProductDistributionProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | ProductDistributionProfile | |||
| ProductDistributionProfileName | fprtx | |||
| _ProductDistributionProfile | _ProductDistributionProfile | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPRODDISTRPROFT'
@EndUserText.label: 'Product Distribution Profile - Text'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable: true
@ObjectModel: {
supportedCapabilities: #VALUE_HELP_PROVIDER,
dataCategory: #TEXT,
representativeKey: 'ProductDistributionProfile',
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING
}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view I_ProductDistributionProfileT
as select from tmfpft
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association to parent I_ProductDistributionProfile as _ProductDistributionProfile on $projection.ProductDistributionProfile = _ProductDistributionProfile.ProductDistributionProfile
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@ObjectModel.foreignKey.association: '_ProductDistributionProfile'
@ObjectModel.text.element: ['ProductDistributionProfileName']
key cast( fprfm as productdistributionprofile preserving type ) as ProductDistributionProfile,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
fprtx as ProductDistributionProfileName,
_ProductDistributionProfile,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TMFPFT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PRODUCTDISTRIBUTIONPROFILE"
],
"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