I_ProdnPlngProcedureText
Production Planning Procedure text view
I_ProdnPlngProcedureText is a Basic CDS View that provides data about "Production Planning Procedure text view" in SAP S/4HANA. It reads from 1 data source (/sapapo/rrptypet) and exposes 3 fields with key fields ProdnPlanningProcedure, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /sapapo/rrptypet | /sapapo/rrptypet | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODPLNGPROCTXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ProdnPlanningProcedure | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Production Planning Procedure text view | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdnPlanningProcedure | rrp_type | ||
| KEY | Language | langu | ||
| ProdnPlngProcedureDesc | text |
@AbapCatalog.sqlViewName: 'IPRODPLNGPROCTXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ProdnPlanningProcedure'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Production Planning Procedure text view'
@Search.searchable: true
define view I_ProdnPlngProcedureText
as select from /sapapo/rrptypet
{
key rrp_type as ProdnPlanningProcedure,
@Semantics.language
key langu as Language,
@Semantics.text
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@EndUserText: { label: 'PP Planning Procedure Description', quickInfo: 'PP Planning Procedure Description' }
text as ProdnPlngProcedureDesc
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SAPAPO/RRPTYPET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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