I_PMRPProcurementType
PMRP Procurement type
I_PMRPProcurementType is a Basic CDS View that provides data about "PMRP Procurement type" in SAP S/4HANA. It reads from 1 data source (marc) and exposes 4 fields with key fields Product, Plant. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| marc | marc | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PMRPProcedureText | _PMRPProcedureText | $projection.ProcurementType = _PMRPProcedureText.ProcurementType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPMRPPROCTYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | PMRP Procurement type | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | matnr | ||
| KEY | Plant | werks | ||
| ProcurementType | beskz | |||
| ProcurementTypeDescription | _PMRPProcedureText | ProcurementTypeDescription |
@AbapCatalog.sqlViewName: 'IPMRPPROCTYPE'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'PMRP Procurement type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #REQUIRED
define view I_PMRPProcurementType
as select from marc
association [1..1] to I_PMRPProcedureText as _PMRPProcedureText on $projection.ProcurementType = _PMRPProcedureText.ProcurementType
{
key matnr as Product,
key werks as Plant,
beskz as ProcurementType,
_PMRPProcedureText.ProcurementTypeDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PMRPPROCEDURETEXT",
"MARC"
],
"ASSOCIATED":
[
"I_PMRPPROCEDURETEXT"
],
"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