I_ProductProcmtProfileText
Product Procurement Profile - Text
I_ProductProcmtProfileText is a Basic CDS View that provides data about "Product Procurement Profile - Text" in SAP S/4HANA. It reads from 1 data source (I_MatlProcurementProfileText) and exposes 6 fields with key fields ProcurementSubType, Plant, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MatlProcurementProfileText | I_MatlProcurementProfileText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRDPRCMTPROFTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | ProcurementSubType | view | |
| EndUserText.label | Product Procurement Profile - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProcurementSubType | Special Procurement Type | ||
| KEY | Plant | Plant | ||
| KEY | Language | Language | ||
| ProcurementSubTypeText | MaterialProcurementProfileName | Special Procurement Type Name | ||
| _Plant | _Plant | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPRDPRCMTPROFTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.representativeKey:'ProcurementSubType'
@EndUserText.label: 'Product Procurement Profile - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#LANGUAGE_DEPENDENT_TEXT
]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
define view I_ProductProcmtProfileText
as select from I_MatlProcurementProfileText
association [0..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@EndUserText.label: 'Special Procurement Type'
key cast ( MaterialProcurementProfile as sobsl preserving type ) as ProcurementSubType,
@ObjectModel.foreignKey.association: '_Plant'
key Plant as Plant,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Language as Language,
@Semantics.text: true
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #LOW
}
@EndUserText.label: 'Special Procurement Type Name'
MaterialProcurementProfileName as ProcurementSubTypeText,
// Associations
_Plant,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATLPROCUREMENTPROFILETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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